LISTBOX : how to insert VBTab or Blank spaces ?

  • Thread starter Thread starter teo
  • Start date Start date
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"
 
Try:

 

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