Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I up the font size of Message Boxes?

Status
Not open for further replies.

dakota81

Technical User
May 15, 2001
1,691
US
The subject pretty much sums up my question. I'm running Access 97, and the message box is initiated from visual basic code.
 
I believe that the message boxes are part of the windows API & as such unchangeable, but it would be nice if this is not the case.... James Goodman
j.goodman00@btinternet.com
 
how about creating a blank form wityh a label box and an a ok button on it to close it then in your code

instead of msgbox "hello"

type something like

with frmmessage
.show
.lbl1.caption = "hello"
end with

then yuo can have what ever formats you want

Chance


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top