** END HEADER -- do not remove this line // // Generated on 2021-01-23 // parameter bModal local f f = new no_sys_closeForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class no_sys_closeForm of FORM with (this) onOpen = class::FORM_ONOPEN height = 16.0 left = 32.0 top = 0.0455 width = 40.0 text = "" endwith this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onClick = class::PUSHBUTTON1_ONCLICK height = 1.0909 left = 13.2857 top = 4.4091 width = 15.2857 text = "Close form" endwith function PUSHBUTTON1_onClick() form.close() return function form_onOpen() set procedure to :duflp:miscapi.prg NoSysClose(form) return endclass