フォームに 8 つのコンボボックスがあり、すべて同じ値 (はいといいえ) を保持します。
compx1.items.add("Yes") などを実行するよりも簡単な方法はありますか?
私は次のものを持っていますが、アイテムを追加することと関係があるとは思えません。
Dim cmb As Control
For Each cmb In Panel1.Controls
If TypeOf cmb Is ComboBox Then
'cmb. isnt beinging anything up for adding items?
End If
Next
乾杯