G
Guest
Hello,
I have a form who's current event verifies what fields have information and
control the visibility of other fields based on the information.
the basic code is like
********
If faq_IsUserInGroup("Leads", CurrentUser()) = True Then
Me.Stress_Signature.Enabled = False
Me.Stress_Date.Enabled = False
Me.Weight_Signature.Enabled = False
Me.Weight_Date.Enabled = False
'Me.Check_Signature.Enabled = False
'Me.Check_Date.Enabled = False
*******
My problem is that the fields that once where on the main form are now part
of a continous subform and an extra Status (Approved, Rework) field was added
to the subform. I need to know how to detect if the subform has an entry
who's status is "Approved" if so then.... How can I loop through the entries
of the subform?!
Thanks,
Daniel
I have a form who's current event verifies what fields have information and
control the visibility of other fields based on the information.
the basic code is like
********
If faq_IsUserInGroup("Leads", CurrentUser()) = True Then
Me.Stress_Signature.Enabled = False
Me.Stress_Date.Enabled = False
Me.Weight_Signature.Enabled = False
Me.Weight_Date.Enabled = False
'Me.Check_Signature.Enabled = False
'Me.Check_Date.Enabled = False
*******
My problem is that the fields that once where on the main form are now part
of a continous subform and an extra Status (Approved, Rework) field was added
to the subform. I need to know how to detect if the subform has an entry
who's status is "Approved" if so then.... How can I loop through the entries
of the subform?!
Thanks,
Daniel