I need to load 32 comboboxes each with 256 values.

So I though:
Code:
    For intN = 0 To 31
        For intM = 1 To 256
            cboParameter(intN).AddItem (intM)
        Next
    Next
Problem is that it takes about 4 seconds.

So I added 1 to 256 in each list of the combobox proberties, but somehow 1 to 9 are not displayed.

Who can help me?

Kiter