Aug 18, 2003 #1 kameta IS-IT--Management Jan 17, 2001 16 KE Is it possible to add items from an array to a list box control. In VB We use addtolist which seems to be not in Access. What is up with Bill gates?
Is it possible to add items from an array to a list box control. In VB We use addtolist which seems to be not in Access. What is up with Bill gates?
Aug 18, 2003 #2 Rolliee Programmer Jun 23, 2002 1,551 US Yes you can. The data source for a 'values' list box is a string with ";" semicolons between. You could do a Dim str1 as string str1 = me.list0.recordsource str1 = str1 & ";" & ar(1) then me.list0.recordsource = str1 me.list0.requery Rollie E Upvote 0 Downvote
Yes you can. The data source for a 'values' list box is a string with ";" semicolons between. You could do a Dim str1 as string str1 = me.list0.recordsource str1 = str1 & ";" & ar(1) then me.list0.recordsource = str1 me.list0.requery Rollie E