A1METALHEAD
Programmer
is there anyway to add a new line and a tab in a lable like in c++?(i have already tryed this)
label1.text="1stLine \n 2ndLine \n \t 3rdLine
label1.text="1stLine \n 2ndLine \n \t 3rdLine
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
label1.text="1stLine" & vbcrlf & "2ndLine" & vbcrlf & vbtab & "3rdLine"
label1.text = string.format("1stLine{0}2ndLine{0}{1}3rdLine", vbcrlf, vbtab)
Dim i As Integer
Dim Ones, Tens, Hundreds As Integer
i = int.Parse(textbox1.text)
Ones = i mod 10
Tens = (i / 10) mod 10
Hundreds = (i / 100) mod 10