** END HEADER -- do not remove this line // // Generated on 11/29/2022 // parameter bModal local f f = new ghorForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class ghorForm of FORM with (this) onOpen = class::FORM_ONOPEN metric = 0 // Chars height = 8.5455 left = -0.4286 top = -0.5455 width = 122.2857 text = "" endwith this.CBCUSTOMER = new COMBOBOX(this) with (this.CBCUSTOMER) height = 1.5 left = 6.0 top = 3.5 width = 39.0 fontSize = 14.0 dataSource = 'array {"","MUSTANSIR","GHOR","DAR","TZ"}' style = 1 // DropDown endwith this.EAMOUNT = new ENTRYFIELD(this) with (this.EAMOUNT) height = 1.5 left = 51.0 top = 3.5 width = 18.0 fontSize = 14.0 value = "" validRequired = true endwith this.PBSAVE = new PUSHBUTTON(this) with (this.PBSAVE) onClick = class::PBSAVE_ONCLICK height = 1.5 left = 77.0 top = 3.5 width = 14.0 text = "Display It" endwith this.TEXT1 = new TEXT(this) with (this.TEXT1) height = 1.0 left = 7.0 top = 6.0 width = 54.0 text = "Text1" endwith function PBSAVE_onClick() form.text1.text="" form.text1.text=form.cbcustomer.value+" has following balance "+form.eamount.value return function form_onOpen() with(this) height = 8.5 left = 20.0 top = 3.0 width = 120.0 endwith return endclass