Hi all,
I'm new with VBA so please excuse me...
I know if I wanted to declare a form's text box in VBA,
I should use...
Dim frm As Form
Dim textbox As Control <--
Set frm = Forms!frmNewEmployee
Set textbox = frm.txtExampleTextbox
But what if I wanted to declare a specific table field?
Specific as in, Where Employee ID = 1?
Thanks!
I'm new with VBA so please excuse me...
I know if I wanted to declare a form's text box in VBA,
I should use...
Dim frm As Form
Dim textbox As Control <--
Set frm = Forms!frmNewEmployee
Set textbox = frm.txtExampleTextbox
But what if I wanted to declare a specific table field?
Specific as in, Where Employee ID = 1?
Thanks!