i have a related question maybe someone could help out on...this is my first time working with subforms...i have one main form containing two subforms on it....
the main form is called: frmmainfrm
one subform is called: frmreleasesubform
I am using Access '97 and do not know the syntax to refer to objects both from the subform to the main form as well as vice versa....i used coding from the access help files and am not sure if I am doing it right....any help would be great....
an example of something i am trying to do is check for null values when using the "Add Record" button contained on the subform....
If IsNull(Forms!frmreleasesubform.[txtbuilddate].Value) Then
MsgBox "Please Enter Build Date!", vbOKOnly, "No Build Date"
Exit Sub
End If