I would like to show/hide a group of controls and buttons in access 03. Is there anyway of doing this without writting code for each individual control and button name. I have 12 controls and 5 buttons I would like to place into 3 groups, these groups are to show and hide depending on the data entering stage.
Instead of;
Me.ProductID.Visible = True
Me.CmdEditProductDetails.Visible = True
Me.TxtDescription.Visible = True
Me.TxtRetail.Visible = True
I would like to;
Me.ProductGroup.Visible = True
Instead of;
Me.ProductID.Visible = True
Me.CmdEditProductDetails.Visible = True
Me.TxtDescription.Visible = True
Me.TxtRetail.Visible = True
I would like to;
Me.ProductGroup.Visible = True