Button for Custom Help and Warnings

Bursal

Registered User.
Local time
Today, 15:53
Joined
Aug 26, 2012
Messages
25
I would like buttons on several forms that the user can click and get customised help relating to a field or data entry.

I would also like to have a customised warning message on an append query and a delete query so that when the user clicks the button that runs either query they have to click Yes or No to run or abort the action.

I am a VBA beginner so I need fairly full explanations and instructions.

Thank you for reading my post and I hope you can help me.
Di
 
Try;
Code:
If [URL="http://www.techonthenet.com/access/constants/msgbox_args.php"]MsgBox[/URL]("Do you wish to continue?", vbYesNo, "Continue") = vbNo Then
     Exit Sub
Else
     [COLOR="Green"]'Insert code to run query[/COLOR]
End If
 

Users who are viewing this thread

Back
Top Bottom