Op-up window to verify correct User Id

B

BG44

In an old Db3 application, the Client info was entered in one table. When we
opened the first form to begin data entry, upon entering the Client ID, a
message would pop up showing the name and address of the Client, with the
question, Is this the correct client? We checked yes and went on to enter
information in the form. This was just a safety measure to make sure we
didn't get client info mixed up.

Could someone give me an idea where to start this process in Access 2003?
Thanks.
 
K

Klatuu

You could use a message box:

If MsgBox "Is Client " & Me.txtClientName & " the correct Client",
vbQuestion + vbYesNo) = vbYes Then
'Go ahead and do it
Else
'Do something different
End If
 

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