Re: LISTBOX : how to insert VBTab or Blank spaces ?

Tech-Archive recommends: Fix windows errors by optimizing your registry



Try:

 

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


teo wrote:
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"

.