LISTBOX : how to insert VBTab or Blank spaces ?

T

teo

I have a LISTBOX
how to insert VBTab or Blank spaces ?

in Example

Listbox1.Items.Add ("Hallo" & vbTab & "GoodMorning")
or
Listbox1.Items.Add ("Hallo" & " " & "GoodMorning")

Unfortunately I get no separation beteween
I get only: "Hallo GoodMorning"
 
A

Altman

Try:

 

Listbox1.Items.Add ("Hallo" & "     " &
"GoodMorning")
 
T

teo

Doen't work:
tried ListBox1.Items.Add("Hallo" & Chr(9) & Chr(9) & Chr(9) &
"GoodMorning")
I get:
Hallo GoodMorning
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top