** END HEADER -- do not remove this line // // Generated on 2020-07-27 // parameter bModal local f f = new test_closeForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class test_closeForm of FORM with (this) height = 16.0 left = 42.8571 top = 0.3636 width = 40.0 text = "" endwith this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onClick = class::PUSHBUTTON1_ONCLICK height = 1.0909 left = 9.2857 top = 5.3636 width = 15.2857 text = "Pushbutton1" endwith function PUSHBUTTON1_onClick() ?'1' form.close() ?'2' return endclass