latex88 Registered User. Local time Today, 15:09 Joined Jul 10, 2003 Messages 198 Jul 25, 2003 #1 I have a subform that is used in different forms. In that subform, there is a button called CmdFinish that I only want to be “visible” or “enable” in certain forms. Does anyone know how I can code this?
I have a subform that is used in different forms. In that subform, there is a button called CmdFinish that I only want to be “visible” or “enable” in certain forms. Does anyone know how I can code this?
M Mark Wild Registered User. Local time Today, 21:09 Joined Apr 9, 2003 Messages 126 Jul 25, 2003 #2 Use the on_open command of the main form to specify whether the button is visible or not. me.subformname!buttoname.visible=false
Use the on_open command of the main form to specify whether the button is visible or not. me.subformname!buttoname.visible=false
IMO Now Known as ___ Local time Today, 21:09 Joined Sep 11, 2002 Messages 723 Jul 25, 2003 #3 Or enabled... Code: Me.SubformName!CmdFinish.Enabled = False IMO
latex88 Registered User. Local time Today, 15:09 Joined Jul 10, 2003 Messages 198 Jul 25, 2003 #4 That was simple. Thanks ya'll.