Is the a way from the main form to make a control on its subform invisible? Thanks in advance.
A Akilah Feb 20, 2009 #1 Is the a way from the main form to make a control on its subform invisible? Thanks in advance.
L Linq Adams via AccessMonster.com Feb 20, 2009 #2 The syntax would be Me!YourSubFormName.Form!YourControlName.Visible = False but this will only work if the subform is being displayed in Single View or Continuous View. If a control is included in a form being displayed in Datasheet View.its Visible Property cannot to be to No.
The syntax would be Me!YourSubFormName.Form!YourControlName.Visible = False but this will only work if the subform is being displayed in Single View or Continuous View. If a control is included in a form being displayed in Datasheet View.its Visible Property cannot to be to No.
M Marshall Barton Feb 20, 2009 #3 Akilah said: Is the a way from the main form to make a control on its subform invisible? Click to expand... Me.subformcontrol.Form.somecontrol.Visible = False
Akilah said: Is the a way from the main form to make a control on its subform invisible? Click to expand... Me.subformcontrol.Form.somecontrol.Visible = False
D Damon Heron Feb 20, 2009 #4 However, on a datasheet, you can hide the control column by: Me!YourSubFormName.Form!YourControlName.columnhidden = -1 then unhide by -- columnhidden = 0 Damon
However, on a datasheet, you can hide the control column by: Me!YourSubFormName.Form!YourControlName.columnhidden = -1 then unhide by -- columnhidden = 0 Damon