** END HEADER -- do not remove this line // // Generated on 2022-03-02 // parameter bModal local f f = new browserForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class browserForm of FORM with (this) onOpen = class::FORM_ONOPEN onClose = class::FORM_ONCLOSE height = 18.0455 left = 31.1429 top = 0.5909 width = 145.4286 text = "" view = ":DBASESAMPLES:fish.dbf" endwith this.BROWSE1 = new BROWSE(this) with (this.BROWSE1) onLeftMouseUp = class::BROWSE1_ONLEFTMOUSEUP height = 10.5909 left = 7.8571 top = 2.7727 width = 121.0 alias = "FISH" endwith this.ENTRYFIELD1 = new ENTRYFIELD(this) with (this.ENTRYFIELD1) height = 1.0 left = 27.7143 top = 15.0909 width = 41.1429 value = "Entryfield1" endwith this.ENTRYFIELD2 = new ENTRYFIELD(this) with (this.ENTRYFIELD2) height = 1.0 left = 71.1429 top = 15.0909 width = 52.8571 value = "Entryfield2" endwith this.ENTRYFIELD3 = new ENTRYFIELD(this) with (this.ENTRYFIELD3) height = 1.0 left = 13.0 top = 15.0909 width = 9.2857 value = "Entryfield3" endwith function BROWSE1_onLeftMouseUp(flags, col, row) form.entryfield1.value = name form.entryfield2.value = species form.entryfield3.value = id return function form_onClose() use return function form_onOpen() form.entryfield1.value = name form.entryfield2.value = species form.entryfield3.value = id return endclass