Home > Enterprise >  How to set Form1.ControlBox=TRUE from Form2
How to set Form1.ControlBox=TRUE from Form2

Time:09-16

I receive 424 run-time error: "Object required".

Form1.ControlBox1 = True

sub Form1_Load() is "Public".

Thanks a lot

CodePudding user response:

You need to do the following:

Forms!Form1.Form.ControlBox = True
  • Related