|
-
Jun 15th, 2001, 04:57 AM
#1
Images on my MsgBox
Hi,
is there a way to put my own images on an msgbox message (like error, exclamation mark etc.)?
maybe i can use a resource file for that?
thanks..
-
Jun 15th, 2001, 05:30 AM
#2
Frenzied Member
I presume you are aware of the built in ones:
Code:
Private Sub Command1_Click()
MsgBox "vbCritical", vbCritical
MsgBox "vbExclamation", vbExclamation
MsgBox "vbQuestion", vbQuestion
MsgBox "vbInformation", vbInformation
End Sub
Other than that you'll have to make your own msgbox
-
Jun 15th, 2001, 05:47 AM
#3
ok..
well.. i am aware of those..
my question was how do i use my own..
you said something about building my own message box?
-
Jun 15th, 2001, 06:02 AM
#4
Frenzied Member
Well. just that really!
Add a form and put whatever buttons/caption/title/images you want on it.
You can make as simple or complicated as you want.
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
|