ardy
Registered User.
- Local time
- Yesterday, 20:40
- Joined
- Sep 24, 2012
- Messages
- 98
Hello All.
I am using the same form (form_x) to add new assignments and new tests. The form (form-x) gets invoked with two buttons (New Assignment – New Exam). In the form (form-x) I have a combo box by which I identify if the record is type Exam or Assignment. I am using the following code to invoke the form.
Is there a way to make the form (form-x) once opens to have the default of either Exam or Assignment in The combo box.
Ardy
I am using the same form (form_x) to add new assignments and new tests. The form (form-x) gets invoked with two buttons (New Assignment – New Exam). In the form (form-x) I have a combo box by which I identify if the record is type Exam or Assignment. I am using the following code to invoke the form.
Code:
Private Sub btn_AddTest_Click()
' open Add test-Assignment Add form
DoCmd.OpenForm "frm_TA_Add_Global"
End Sub
Ardy