大家好我试图将项目添加到组合框中包含的多个组合框中,也是两组组合框,所以我需要区分这两组。我想到了这个名字。
请参阅我的代码我在ctr.item.add上收到错误(项目不是控制成员)
For Each ctr As Control In grpProdDetail.Controls
If TypeOf ctr Is ComboBox Then
If ctr.Name Like "drpProdCode" Then
SQL.ExQuery("Select EmpNo from dbo.EmpDetail")
If SQL.RcCount > 0 Then
For Each r As DataRow In SQL.SQLDS.Tables(0).Rows
ctr.item.add(r("EmpNo"))
Next
End If
End If
End If
Next