ComboBox 策略发挥作用

ComboBox strategies to function

我有四个组合框,一切都做同样的如下:

Select Case combobox1.selectedItem
case 0 
str=str & "' AND"
case 1
str= str & "'"
end case

select case combobox2.selected item
 case 0 
str=str & "' AND"
case 1
str= str & "'"
end case

同样,其他两个组合框具有相同的主体

我想用方法调用替换此代码块,并在方法主体中实现 select 子句主体,并在需要时调用它。

请给我一个解决方案

创建一个方法,将输入作为组合框选择的索引,即整数 现在在方法中这样写:

method1(int x)
{
Select Case x 
case 0 
str=str & "' AND"
case 1
str= str & "'"
end case
}

在需要时调用 method1