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..
Printable View
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..
I presume you are aware of the built in ones:
Other than that you'll have to make your own msgboxCode:Private Sub Command1_Click()
MsgBox "vbCritical", vbCritical
MsgBox "vbExclamation", vbExclamation
MsgBox "vbQuestion", vbQuestion
MsgBox "vbInformation", vbInformation
End Sub
well.. i am aware of those..
my question was how do i use my own..
you said something about building my own message box?
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.