How to use "UsrMsg"

S

Steve Schapel

Vepha,

First of all, you would need to copy/paste the code from Graham Seach's
article into a standard module in your application. Note that it
requires a Reference set to ADO.

Then, in the appropriate place in your application, you can write the
equivalent of this into a VBA event procedure:

Call UsrMsg("This is the text of the message you want to show to your
users.")
 
A

Ana

Something like?:

Dim UsrMsg As Module
Call UsrMsg("This is the text of the message you want to show to your
users.")

Ana
 
S

Steve Schapel

Ana,

No. "Dim UsrMsg As Module" doesn't mean anything or achieve anything.
Just drop that bit.

Perhaps you could explain what the problem is? Did you try what I
explained before? Didn't it work? What was wrong?
 
Top