Re: Enhanced IDE control ordering
- Posted by Judith Evans <camping at cc?wb.ne?> Jan 26, 2008
- 612 views
> Mike777 wrote: > > I have a set of two controls, a label and a checkbox. > However, the IDE builds the exw file with the myLabel code before the > myCheckbox > code and then complains that myCheckbox_onClick has not been declared. > So I went into Generate Tools|Change control order for program and moved > myLabel > well below myCheckbox. The exw file is built in the same order, as if my > manual > re-ordering has no effect. > Ah, I may have overlooked something in my answer. When you reorder the controls only the createEx statements are reordered. The event coding does not change order. You can use an invokeHandler statement in your LText_onClick routine in order to trigger the CheckBox_onClick. > Mike judith