Required Data

C

Carlee

Hi there,

I have a master form with a sub form. I want to force the user to enter a
lab number first, before any other information on the subform (for new
submissions).

Any ideas?
 
A

Allan Murphy

Carlee

Set the subform visible property to NO

Then on the After Update event of the Lab Number field add the following
name of subform.visible=true
e.g sfrm_staff_list.Visible = True sfrm_staff_list is the name of
the subform.
 
Top