Hi All,
Attempting to set the CloseButton property for a subform via a Module, the module is referred to via On Current:
Real confused as to why its not working.
Attempting to set the CloseButton property for a subform via a Module, the module is referred to via On Current:
And the Module (basForms) is:Private Sub Form_Current()
Call basForms.SubFormsSetup(Me)End Sub
But I just get a Run-Time error 2448, "You can't assign a value to this object".Sub SubFormsSetup(FormName)
FormName.CloseButton = FalseEnd Sub
Real confused as to why its not working.