Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TabOrder
#2
As far as I know, the TabOrder property is not related to rendering order. It determines where the cursor (focus) goes when the user presses the Tab key. It would determine navigation order for the fields in a form.

You are getting those results because you are programmatically inserting controls onto the form at runtime. Whenever you do that to a region with existing controls the new controls appear first. I don't know if that's browser related or IW behavior, but it has always worked that way.


You should be aware that playing with the parent property like that does not always work as expected. In works great for VCL applications, but the browser is entirely different animal. You may want to consider using frames instead of borrowing regions from other forms. You'll get more consistent results. Many developers on this forum rely upon dynamically created frames in their applications.
Reply


Messages In This Thread
TabOrder - by cyracks - 06-14-2018, 11:19 AM
RE: TabOrder - by DanielFields - 06-14-2018, 10:10 PM
RE: TabOrder - by Alexandre Machado - 06-14-2018, 10:32 PM
RE: TabOrder - by cyracks - 06-14-2018, 11:14 PM
RE: TabOrder - by Alexandre Machado - 06-15-2018, 08:12 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)