Make sure to put a label saying what textbox1 is used for.. And give credits.
ok today IM going to make a short simple tut on good bye world also known as hello wrold I am not going to tell you how to get buttons or any toolbox item so figure that part on your own cuz its easy
get 1 button and a textbox
double click button 1 an type
msgbox "goodbye world + textbox1.text"
then your done
leonard
Make sure to put a label saying what textbox1 is used for.. And give credits.
tempta43 (04-04-2010)
So.. i doubt he figured out how to make a msgbox by himself =D.
Edit: He forgot the brackets for msgbox. Fail. and yes, pointless TUT.
Btw, you can't force NextGen to marry you. You'd have to force him to sign a divorce paper then marry you first.
forcing him to marry me does include forcing him to sign papers.
No but he's already married =D
you failed a little bit because i get when i click on button one
the message:
goodbye world + textbox1.text
Look:
![]()
![]()
![]()
92% of the regular players are getting raped by hackers. 8% ARE the hackers.
If you are one of the 8%, Put THIS into your siggy.
Msgbox("Good bye " & Textbox1.text)
bleh...
Last edited by Blubb1337; 04-03-2010 at 06:42 AM.
i think it is good now
i type lol message comes
Good Byelol
xD![]()
92% of the regular players are getting raped by hackers. 8% ARE the hackers.
If you are one of the 8%, Put THIS into your siggy.

382
HA HA , A Hello World Tut in the vb section...... wasted thread.
and it wasn't even done right..... OMG
my code works for me perfect

382
There is no way that code works for you, it is 100% impossible in the VB language for this
[php]
msgbox "goodbye world + textbox1.text"
[/php]
to function the way your tut says it would
it should be
[php]
msgbox "goodbye world" & " " & textbox1.text
[/php]
If it is just this
[php]
msgbox "goodbye world + textbox1.text"
[/php]
then the message box will read everything in quotes.
making it "GoodBye World + TextBox1.Text"
MJLover (04-03-2010)
Lmao pwnt.
Great job on the tutorial.
0/10
But what about the brackets?
It should be
[php]MsgBox("GoodBye World" & TextBox1.Text")[/php]
And NextGen, you don't have to put it like this:
[php]MsgBox("GoodBye World" & ""& TextBox1.Text)[/php]
you don't need the "", you can just put a space after world like so:
[php]MsgBox("GoodBye World " & TextBox1.Text)[/php]
Right?