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.
M Marshall Barton Feb 20, 2009 #2 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 #3 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
A Akilah Feb 20, 2009 #4 Thanks, this works well. Damon Heron said: However, on a datasheet, you can hide the control column by: Me!YourSubFormName.Form!YourControlName.columnhidden = -1 then unhide by -- columnhidden = 0 Damon Click to expand...
Thanks, this works well. Damon Heron said: However, on a datasheet, you can hide the control column by: Me!YourSubFormName.Form!YourControlName.columnhidden = -1 then unhide by -- columnhidden = 0 Damon Click to expand...