you cant change the font in a meesage box. Create a form with only a label and an OK button and call it in your program.
Code:
frmMessage.lblMessage.Caption = "This will show on the form"
frmMessage.Show vbModal
then in the click event of the OK button on the message form
Code:
Unload Me
Since you are showing the form modally execution will pause when the form is shown and will not continue until the user clicks the OK buton, unloading the form. You get the same behavior as an OK only message box with very little work. If you want Yes/No/Cancel type functionality you can do that too, with a little more work. Ruairi
Could your manufacturing facility benefit from real time process monitoring? Would you like your employees to be able to see up to the minute goal and actual production?
For innovative, low cost solutions check out my website.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.