Tab for formatting strings?

fpineda101

Well-known member
Joined
Nov 14, 2005
Messages
122
Location
Los Angeles, CA
Programming Experience
1-3
Is it possible to use a tab character like \t for formatting strings? I'm trying to align two columns of text on a label (using the same string). I know how to do the new line in .Net so I got that covered. Thanks for you help!

A sample of what I'm trying to do...

Public newLine = System.Environment.NewLine

Dim ScreenMenu As String = " 1. View Account Balance 2. Withdrawal " + newLine + newLine _
+ " 3. Transfer Funds 4. Deposit " + newLine + newLine _
+ " 5. Print Statement 6. Exit System"
 
Back
Top