Quote Originally Posted by Mahdi Jazini View Post
Difference between the classic Combobox with the Combobox designed by @Krool:

In Classic Combobox:

Code:
            Dim Tcombo As Integer
            For Tcombo = 1 To 10
                Combo1.AddItem (CStr(Tcombo))
            Next Tcombo

            Combo1.text={Recordset Data}
After that, All items of the classic combobox (added before) will be deleted

In the Combobox designed by @Krool

Code:
            Dim Tcombo As Integer
            For Tcombo = 1 To 10
                ComboBoxW1.AddItem (CStr(Tcombo))
            Next Tcombo

            ComboBoxW1.text={Recordset Data}
After that, the text value will be selected in the combox without removing the last data
For me on both cases will be nothing deleted..