hiding field on subform

  • Thread starter Thread starter W
  • Start date Start date
W

W

Hi,

I have a field on a subform that I want to make invisible.
Although I set the invisible property, and although in the On_Load event I
set this control with its label to invisible, it continues to be shown.
Moreover I set the visble property to false in teh main form.

How can I make it invisible ?

Thank you
 
Open the subform itself - not through the main form. Set the control's
Visible property to False, and save the subform. If the control still shows
up when you open the main form, then something else is explicitly making it
visible; you'll have to track it down and remove it.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
Excuse me for replying so late; I just came back from holiday. I did all
what you suggested, even set the visible property to false on the main form,
but it simply does not work.

W
 
Something is explicitly making it visible. Search for code that sets the
control's Visible property, and eliminate it.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
Back
Top