Why is is whenever I try to enter a tab into a text/label using VBA
it always comes out wrong (i get the same with chr(13) by adding chr(10) to the end....
but if i try to create a label with tabs in it, it always screws up..
e.g.
lblLabel.caption = "Hello" & vbtab & "this is a tab"
should look like this
Hello this is a tab
but it ends up looking somthing like this.
Hello|This is a tab
it always comes out wrong (i get the same with chr(13) by adding chr(10) to the end....
but if i try to create a label with tabs in it, it always screws up..
e.g.
lblLabel.caption = "Hello" & vbtab & "this is a tab"
should look like this
Hello this is a tab
but it ends up looking somthing like this.
Hello|This is a tab