** END HEADER -- do not remove this line // // Generated on 2018/02/18 // parameter bModal local f f = new test_msgboxForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class test_msgboxForm of FORM with (this) height = 16.0 left = 106.5714 top = 8.5909 width = 40.0 text = "" endwith this.PUSHBUTTON1 = new PUSHBUTTON(this) with (this.PUSHBUTTON1) onClick = class::PUSHBUTTON1_ONCLICK height = 1.0909 left = 9.0 top = 7.0 width = 15.2857 text = "Show msgbox" endwith function PUSHBUTTON1_onClick() msgbox('How slow was that?','test msgbox',0) return endclass