inserting sub_form without its linked field

  • Thread starter Thread starter rudwan
  • Start date Start date
R

rudwan

i have a form has many pages , i insert sub_form in one
page , as datasheet , i dont like the linked_field (
empid )to be visible in the sub_form ,
i made empid.visible=false but it still visible
i tried to remove this filed , but it send me message the
related field has removed
who i can manage that ?
 
Instead of removing the field from the recordsource, just delete the control
that's bound to the field.

Alternatively, you could hide the column
Me!ControlName.ColumnHidden = True
 
Back
Top