|
-
Jun 22nd, 2004, 05:19 AM
#1
MessageBox! [Sandpaper]
Hi,
how can I show a messagebox in VB6?
Thanks,
The Frog
Last edited by mendhak; Aug 6th, 2004 at 01:43 AM.
-
Jul 10th, 2004, 12:28 PM
#2
Hyperactive Member
The easy way:
VB Code:
'© by Mike2
MsgBox "Hello Frog!"
The hard way:
VB Code:
'© by Mike2
Const MB_DEFBUTTON1 = &H0&
Const MB_DEFBUTTON2 = &H100&
Const MB_DEFBUTTON3 = &H200&
Const MB_ICONASTERISK = &H40&
Const MB_ICONEXCLAMATION = &H30&
Const MB_ICONHAND = &H10&
Const MB_ICONINFORMATION = MB_ICONASTERISK
Const MB_ICONQUESTION = &H20&
Const MB_ICONSTOP = MB_ICONHAND
Const MB_OK = &H0&
Const MB_OKCANCEL = &H1&
Const MB_YESNO = &H4&
Const MB_YESNOCANCEL = &H3&
Const MB_ABORTRETRYIGNORE = &H2&
Const MB_RETRYCANCEL = &H5&
Private Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (ByVal hwnd As Long, ByVal lpText As String, ByVal lpCaption As String, ByVal wType As Long) As Long
Private Sub Form_Load()
MessageBox Me.hwnd, "Hello Frog!", "Frogs", MB_OK
End
End Sub
Good luck!
-
Aug 5th, 2004, 12:33 PM
#3
Hyperactive Member
Please edit your first post and add "[Solved]" (without the quotes) to the title.
-
Aug 5th, 2004, 01:02 PM
#4
Frenzied Member
what do ya wanna show it? sandpaper? food? bodwad?
:::`DISCLAIMER`:::
Do NOT take anything i have posted to be truthful in any way, shape or form.
Thank You!
--------------------------------
"Never heard about "hiking" poles. I usualy just grab a stick from the nature, and use that as a pole." - NoteMe
"Finaly I can look as gay as I want..." - NoteMe
Languages: VB6, BASIC, Java, C#. C++
-
Aug 6th, 2004, 01:43 AM
#5
I am happy. I can show a messagebox. Now I will show it to all my cool friends and make them jealous of me.
-
Aug 6th, 2004, 03:35 AM
#6
-
Aug 6th, 2004, 04:30 AM
#7
Yes, you're right. I'm the Angel of Merciful Sandpaper. Hallelujah.
-
Aug 6th, 2004, 05:57 AM
#8
-
Aug 21st, 2004, 08:48 PM
#9
Originally posted by mike2
The easy way:
VB Code:
'© by Mike2
MsgBox "Hello Frog!"
Good luck!
Can I use your code in my project?Do i have to pay you or JupiterMedia or Who ?
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
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
|