Aug 4, 2003 #1 HNA Programmer Jan 13, 2003 87 KW Hi, Please I need help to know what is the equal Of EOF, For The ComboBox. I Meen, We Use EOF in recordset, what can we use for combobox instead of EOF? Thank You " Åä Çááå íÍÈ ÅÐÇ Úãá ÃÍÏßã ÚãáÇ Ãä íÊÞäå "
Hi, Please I need help to know what is the equal Of EOF, For The ComboBox. I Meen, We Use EOF in recordset, what can we use for combobox instead of EOF? Thank You " Åä Çááå íÍÈ ÅÐÇ Úãá ÃÍÏßã ÚãáÇ Ãä íÊÞäå "
Aug 4, 2003 #2 cmmrfrds Programmer Feb 13, 2000 4,690 US You can iterate through a combobox with a for loop. Lookup SelectedItem or ItemData. Most Access collections can use that model. dim myitem as variant For each myitem in mycombobox debug.print myitem.column(0) next Upvote 0 Downvote
You can iterate through a combobox with a for loop. Lookup SelectedItem or ItemData. Most Access collections can use that model. dim myitem as variant For each myitem in mycombobox debug.print myitem.column(0) next