I can't seem to work out why I always have an empty first item in my combo box.
I use this code to add to the new (empty) combo boxand this code to save the combo box list to a fileVB Code:
cmbNotes.AddItem txtTitle.textAnybody got any idea why?VB Code:
Open App.Path & "\MODATA\cmbNotesList.mo" For Output As #filenum For ctr = 0 To cmbNotes.ListCount - 1 Write #filenum, cmbNotes.List(ctr) Next ctr Close #filenum
Thanks
aikidokid


Reply With Quote
