I have a form which has an OnClose event handler connected...
Private Sub Report_Close()
DoCmd.OpenForm "MyFormName"
End Sub
What it does is simply to open the form called MyFormName but of course the first record will be displayed and that is not optimal.
I have an ID number which is the...
I have two issues and hopefully you can help me out here. Basically I have a form (called MyForm1) connected to a table with some hundred records....
In MyForm1 there is a button (CmdButton1) with an onclick event attached. When CmdButton1 is clicked a macro is run (stored in Access' own macro...
I have a form with a couple of text boxes and and some check boxes. The data that is entered in some of these textboxes should be validated with some preset rules and if the criteria are met other text boxes should be enabled. I was hoping that someone can help me in the right direction here...