Custom msgboxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

Can anyone tell me if it is possible to use user (me) specified images/icon in a msgbox. Instead of the usual information, exclamation .... I would like to use some custom made images.... Can this be done and if so how

Thanks

Danie
 
No. Create your own forms and open / use them as message boxes.

--

Ken Snell
<MS ACCESS MVP>

Daniel P said:
Hello,

Can anyone tell me if it is possible to use user (me) specified
images/icon in a msgbox. Instead of the usual information, exclamation ....
I would like to use some custom made images.... Can this be done and if so
how?
 
Not simple with the built-in MsgBox(), but easy to make your own.

Create a simple unbound form, with an Image control, display text box, and 3
command buttons.

Use OpenForm on your dialog in acDialog, and pass the values it needs in
OpenArgs. Set the Picture property of the Image control to the desired
graphic.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.
Daniel P said:
Hello,

Can anyone tell me if it is possible to use user (me) specified
images/icon in a msgbox. Instead of the usual information, exclamation ....
I would like to use some custom made images.... Can this be done and if so
how?
 
Daniel,

Sure you can do it, but like Allen said, it's not simple:
http://www.pacificdb.com.au/MVP/Code/XMsgBox.htm

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Microsoft Access 2003 VBA Programmer's Reference
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764559036.html


Daniel P said:
Hello,

Can anyone tell me if it is possible to use user (me) specified
images/icon in a msgbox. Instead of the usual information, exclamation ....
I would like to use some custom made images.... Can this be done and if so
how?
 
Here's a custom form and code already set up to just import and do custom
MsgBoxes with full functionality, including the ability to run functions.

http://www.datastrat.com/Download/MsgBox2K.zip
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access

Daniel P said:
Hello,

Can anyone tell me if it is possible to use user (me) specified
images/icon in a msgbox. Instead of the usual information, exclamation ....
I would like to use some custom made images.... Can this be done and if so
how?
 
Back
Top