message box

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

Guest

How (or can you) display a message box in Access without assigning the value
of the box to a variable. I am new to Access programming but in vb.net you
can simply call one to display information. You do not need to assign it's
value to something.
 
In VBA you have a MsgBox statement, and a MsgBox() function.

Use the MsgBox statement to display a message, e.g.:
MsgBox "No more!"
and the MsgBox() function to return a value, e.g.:
If MsgBox("Any more?", vbYesNo) = vbYes Then ...
 
Back
Top