|
-
Dec 25th, 2004, 11:44 AM
#1
Thread Starter
Banned
Simple messagebox problem
Hi,
Is it possible to display a messagebox with an icon, and with Yes/No buttons too?
Thanks
Last edited by DarkVB; Dec 25th, 2004 at 12:16 PM.
-
Dec 25th, 2004, 11:46 AM
#2
Re: Underground Visual Basic
Wait till Martin Liss sees this.
-
Dec 25th, 2004, 11:47 AM
#3
Banned
Re: Underground Visual Basic
This should be considered
ADVERTISING
im new and i dintread the rules yet but im gonna check out if this is ALLOWED
-
Dec 25th, 2004, 12:03 PM
#4
Re: Underground Visual Basic
To the moderators and administrators here in VBForums , "non-destructive virii" is still concidered malicious, even if it is only for educational purposes. My folder flooder I once talked about in one of these threads has been deleted by the administrator because of malicious reasons, even though folders do no damage. I was also warned and could be banned from here if I do it again.
Now there is a possibility that this thread could be moved by the moderators or administrator somewhere else in another section since this section is for when people have problems or questions on their VB code. There maybe a possible chance that it maybe deleted.
-
Dec 25th, 2004, 12:17 PM
#5
Thread Starter
Banned
Re: Simple messagebox problem
What are you on about?
I was just asking a simple question!
-
Dec 25th, 2004, 12:20 PM
#6
Re: Simple messagebox problem
You edited your first post and changed the title and the text. Don't play stupid around here.
-
Dec 25th, 2004, 12:36 PM
#7
Thread Starter
Banned
Re: Simple messagebox problem
I'm kidding, chill out man, you're far too uptight!
I've removed the advert and that's what matters, right?
Can we still be friends?
-
Dec 25th, 2004, 12:42 PM
#8
Re: Simple messagebox problem
 Originally Posted by DarkVB
Hi,
Is it possible to display a messagebox with an icon, and with Yes/No buttons too?
Thanks
VB Code:
Private Sub Command1_Click()
If MsgBox("Would you like to exit?", vbQuestion + vbYesNo, "Confirm Exit") = vbYes Then
Unload Me
End If
End Sub
-
Dec 25th, 2004, 02:45 PM
#9
Thread Starter
Banned
Re: Simple messagebox problem
That's just what I needed Rhinobull, thanks!
-
Dec 25th, 2004, 03:07 PM
#10
Re: Simple messagebox problem
No problem, any time.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|