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 box
VB Code:
  1. cmbNotes.AddItem txtTitle.text
and this code to save the combo box list to a file
VB Code:
  1. Open App.Path & "\MODATA\cmbNotesList.mo" For Output As #filenum
  2.     For ctr = 0 To cmbNotes.ListCount - 1
  3.             Write #filenum, cmbNotes.List(ctr)
  4.     Next ctr
  5. Close #filenum
Anybody got any idea why?
Thanks

aikidokid