| View previous topic :: View next topic |
| Author |
Message |
1337pwnage1337 Expert Cheater
Reputation: 0
Joined: 08 Oct 2008 Posts: 190 Location: last seen off the coast of hopes and dreams
|
Posted: Fri Jan 02, 2009 4:58 pm Post subject: [VB]Need Help With Message Boxes |
|
|
I Was Wondering, How Do I Get A Message Box To Pop-Up When I Use The .EXE, Any Help Would Be Appreciated!
_________________
|
|
| Back to top |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Fri Jan 02, 2009 5:05 pm Post subject: |
|
|
| Code: | | MessageBox "insert text here" |
I think this is how you do it, I forgot.
_________________
What dosen't kill you, usually does the second time. |
|
| Back to top |
|
 |
1337pwnage1337 Expert Cheater
Reputation: 0
Joined: 08 Oct 2008 Posts: 190 Location: last seen off the coast of hopes and dreams
|
Posted: Fri Jan 02, 2009 5:19 pm Post subject: |
|
|
| HornyAZNBoy wrote: | | Code: | | MessageBox "insert text here" |
I think this is how you do it, I forgot. |
....
i know how to make a message box i want to know how to get it to pop up when i use the application...
and the code for message box is: | Code: | | MessageBox.Show("Message", "Title", MessageBoxButtons.*the buttons you want (yes, no, cancel, Etc)*, MessageBoxIcon.*Icon* |
_________________
|
|
| Back to top |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Fri Jan 02, 2009 5:21 pm Post subject: |
|
|
If you are talking about making it popup when your application loads, put the message box in Form_Load().
_________________
What dosen't kill you, usually does the second time. |
|
| Back to top |
|
 |
1337pwnage1337 Expert Cheater
Reputation: 0
Joined: 08 Oct 2008 Posts: 190 Location: last seen off the coast of hopes and dreams
|
Posted: Fri Jan 02, 2009 5:30 pm Post subject: |
|
|
| HornyAZNBoy wrote: | | If you are talking about making it popup when your application loads, put the message box in Form_Load(). |
thanks =)
_________________
|
|
| Back to top |
|
 |
Tyggo Expert Cheater
Reputation: 0
Joined: 03 Jan 2008 Posts: 186
|
Posted: Sun Jan 04, 2009 7:06 pm Post subject: |
|
|
Double click on the form then use this code.
[C#] MessageBox.Show ("TEXT HERE");
[VB]MsgBox ("TEXT HERE")
OR
[VB]MessageBox ("TEXT HERE")
|
|
| Back to top |
|
 |
|