- Home
·
- Miscellaneous
·
- Some beginners ask them selfs how to make a second line in a TextBox.Here it is. ONLY ONE SINGLE LI
Some beginners ask them selfs how to make a second line in a TextBox.Here it is. ONLY ONE SINGLE LI
Some beginners ask them selfs how to make a second line in a TextBox.Here it is. ONLY ONE SINGLE LINE OF CODE. (That's normal) I did it here
Rate Some beginners ask them selfs how to make a second line in a TextBox.Here it is. ONLY ONE SINGLE LI
(1(1 Vote))
'& vbCrLf & is the code for new line
MsgBox "here is the normal first line." _
& vbcrlf & "here is the second line you wanted.",vbInformation ,"Second line test"
'Example nr. 2
'Or if you want,this is beter to remember
'& vbNewLine & is the code for new line
MsgBox "This is First line." & vbNewLine & "This is Second line",vbInformation ,"Test" 'Test is the title of the MsgBox
Some beginners ask them selfs how to make a second line in a TextBox.Here it is. ONLY ONE SINGLE LI Comments
No comments yet — be the first to post one!
Post a Comment