Tab between two strings?

Hi guys, is there a way to put tab separator into my string? For example “Name:\tJosip”. When i try to show this message in message box it also prints “\t” instead of putting space between these words.

Hello,

the Visual basic constant vbTab should do it

“string” & vbTab & “String”

Cheers

2 Likes

@Florent_Salendres thanks a lot, it worked perfect. If you could also tell me how to make part of text bold.