jasonbanh (10-26-2010),Withoutwings (02-04-2011)
Okay so this time guys, this is written completely by me!
So actually the _ code in VB is very simple and useful. You use it when a particular line of code gets very long! I used this in TopBlast's Hack Injector when i was helping him with it!
Okay so say we had a very long string of code like this:
[php]MsgBox("If your mom had a life then we could all live safely but"[/php]
See the above↑? That might not get that long in VB but say it did. To see your code easier and not be confused with the lines all over the place, you use _.
So again, the above example.
[php]MsgBox("If your mom had a life then we could all live safely" _
& " but unfortunately she doesn't.")[/php]
That code allows us to start a new line without getting all sorts of errors.
Thanks for reading! and press the Thanks button![]()
jasonbanh (10-26-2010),Withoutwings (02-04-2011)
Nice for anyone who doesn't know that. :P
You can also do the reverse:
Code someone posted on a tutorial:
You can just as easily erase the underscores and put it all on the same line.Code:Private Blah, blah blah, _ blah blah, _ blah blah, _ blah
Code:Private Blah, blah blah, blah blah, blah blah, blah
Simple.
Thanks for sharing.
-Rest in peace leechers-
Your PM box is 100% full.

382
Thanks for sharing.
Great Beginning Tutorial,
Thanks water, Nice tutorial, Detailed and has Code tags
Lol Yesh =D. But 1 thing.. its PHP tags![]()
NextGen1 (04-02-2010)