** END HEADER -- do not remove this line // // Generated on 2022-11-29 // parameter bModal local f f = new test_pb_clickForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class test_pb_clickForm of FORM with (this) onOpen = class::FORM_ONOPEN height = 16.0 left = 33.7143 top = 0.7727 width = 40.0 text = "" endwith this.ENTRYFIELD1 = new ENTRYFIELD(this) with (this.ENTRYFIELD1) height = 1.0 left = 8.2857 top = 2.4545 width = 8.0 value = "Entryfield1" endwith this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onClick = class::PUSHBUTTON1_ONCLICK height = 1.0909 left = 8.2857 top = 5.7273 width = 15.2857 text = "Pushbutton1" endwith this.PUSHBUTTON2 = new PUSHBUTTON(this) with (this.PUSHBUTTON2) onClick = class::PUSHBUTTON2_ONCLICK height = 1.0909 left = 8.2857 top = 8.5 width = 15.2857 text = "Pushbutton2" endwith this.PUSHBUTTON3 = new PUSHBUTTON(this) with (this.PUSHBUTTON3) onClick = class::PUSHBUTTON3_ONCLICK height = 1.0909 left = 8.2857 top = 11.3636 width = 15.2857 text = "Pushbutton3" endwith this.ENTRYFIELD2 = new ENTRYFIELD(this) with (this.ENTRYFIELD2) height = 1.0 left = 8.2857 top = 13.8636 width = 8.0 value = "Entryfield2" endwith function PUSHBUTTON1_onClick() ?'Pushbutton 1 clicked' return function PUSHBUTTON2_onClick() ?'Pushbutton 2 clicked' return function PUSHBUTTON3_onClick() ?'Pushbutton 3 clicked' return function form_onOpen() clear return endclass