Listbox (1 Viewer)

accessman2

Registered User.
Local time
Today, 11:30
Joined
Sep 15, 2005
Messages
335
Forms - Additem of the List Box

--------------------------------------------------------------------------------

Hi,

When I add new item of the listbox with the following

listbox0.additem "a,b,c"

it will list 3 rows
a
b
c

How can I put it in the same row with a,b,c (with comma)?

Thanks.
 

Jimma

New member
Local time
Today, 19:30
Joined
Oct 10, 2007
Messages
3
Enlcose the data in quotes as well -

e.g.

listbox0.additem chr(34) & "a,b,c" & chr(34)

or

listbox0.additem """" & "a,b,c" & """"
 

Users who are viewing this thread

Top Bottom