vbTab is treated like a string. It's value is simply the tab character (typically ascii value of 9). You can use it just like any other string variable.
Chat with our AI personalities
In visual Basic, the tab character has several representations:ChrW(9)vbTabControlChars.TabConvert.ToChar(Keys.Tab)Of these, the last is supported by all .NET languages (including C# where '\t' can also be used).To insert a tab into a Visual Basic string:Dim text As String = "abc"text.Insert (1, vbTab)To insert an ampersand, use the character literal '&':text.Insert (2, '&');
Visual Basic Controls work on Visual Studio for Visual Basic and Applications that made by Visual Basic.
13
You said Visual Studio 2010 but does it have the BASIC language.
Visual Basic was started in 1991.