Zodiacal - More FORM HELP??

0

007clint

In order to Have a "MsgBox" that doesn't stop a MACRO, I am
trying to build a FORM that displays a short message from a
numbered message TABLE. The FORM is set to "Pop UP" but
not MODAL so it doesn't wait for an operator "OK" like MsgBox.

HOW DO I SET THE MESSAGE I WANT FROM THE MACRO???
 
A

Arvin Meyer

007clint said:
In order to Have a "MsgBox" that doesn't stop a MACRO, I am
trying to build a FORM that displays a short message from a
numbered message TABLE. The FORM is set to "Pop UP" but
not MODAL so it doesn't wait for an operator "OK" like MsgBox.

HOW DO I SET THE MESSAGE I WANT FROM THE MACRO???

I'm not sure how you'd do it from a Macro, but from VBA code you'd do
something like:
Put a text box on your popup form, let's call it txtMsg

DoCmd.OpenForm "YourPopupForm"
Forms![YourPopupForm]!txtMsg = "Whatever you put here"
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top