Hi,
To add a Tabstop into a String, i use use this:
Dim s As String = "Blabla" + &u0009 + "more blabla"
Is there a more comfortable way to add multiple Tabstops to the String 1…*? It’s not so cool repeat it like this:
Dim s As String = "Blabla" + &u0009 + &u0009 + &u0009 + &u0009 +"more blabla"
Maybe like 4* + &u0009, which not works?
Greetings