** END HEADER -- do not remove this line // // Generated on 2018-10-01 // parameter bModal local f f = new test_ef_pictureForm() if (bModal) f.mdi = false // ensure not MDI f.readModal() else f.open() endif class test_ef_pictureForm of FORM with (this) height = 16.0 left = 105.0 top = 0.0 width = 40.0 text = "" endwith this.ENTRYFIELD1 = new ENTRYFIELD(this) with (this.ENTRYFIELD1) onLostFocus = class::ENTRYFIELD1_ONLOSTFOCUS onKey = class::ENTRYFIELD1_ONKEY height = 1.3182 left = 12.0 top = 2.0 width = 11.0 picture = "999999" fontSize = 14.0 value = " " pageno = 0 endwith this.ENTRYFIELD2 = new ENTRYFIELD(this) with (this.ENTRYFIELD2) height = 1.0 left = 13.0 top = 8.5 width = 8.0 value = "Entryfield2" endwith function ENTRYFIELD1_onKey(nChar, nPosition,bShift,bControl) if len(ltrim(this.value)) == 6 this.keyboard("{tab}") endif return function ENTRYFIELD1_onLostFocus() return endclass