for j= 1 to 15
for i=1 to 2
   combobox.list(j,1)=i*j
next i
next j

解决方案 »

  1.   

    又写错了
    for  j=  1  to  15 
    for  i=1  to  2 
          combobox.list(j,i)=i*j 
    next  i 
    next  j 
      

  2.   

    如果绑定数据则直接设置
    BubdColumns的列数与ColumnCount一致
    并要一一设定每一列所绑定的字段!
      

  3.   

    Dim i As Single
       Dim MyArray(6, 3)
        ComboBox1.ColumnCount = 3      For i = 0 To 5
            MyArray(i, 0) = i
            MyArray(i, 1) = Rnd
            MyArray(i, 2) = Rnd
        Next i    ComboBox1.List() = MyArray
      

  4.   

    wjying(葡萄) 谢谢你,在加分之前我还想问,怎么取得其中的某一行某一列的值