how can i add my items from list to combo box ???

 Dim IntList As New List(Of Integer)

 Sub proc1()
        Dim iCount As Integer
        For iCount = 1 To 10
            IntList.Add(iCount)

        Next

 If Done = True Then
            cmb1.Items.AddRange(IntList.ToArray)

this is the msg error :

Error 1: Value of type '1-dimensional array of Integer' cannot be converted to '1-dimensional array of Object' because 'Integer' is not a reference type.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.