** END HEADER -- do not remove this line // // Generated on 2020-08-14 // parameter bModal local f f = new test_acceleratorForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class test_acceleratorForm of FORM with (this) height = 16.0 left = 51.0 top = 3.1364 width = 40.0 text = "" endwith this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onClick = class::PUSHBUTTON1_ONCLICK height = 1.0909 left = 13.5714 top = 5.1818 width = 15.2857 text = "Push&button1" endwith function PUSHBUTTON1_onClick() msgbox('Pushbutton clicked','',64) return endclass