Zodiacal - More FORM HELP??

  • Thread starter Thread starter 007clint
  • Start date Start date
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???
 
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
 
Back
Top