Tab Oreder

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I develope an application to run on Pocket PC. My app has a form containing TextBox,ListBox and Button controls
How to set Tab orders for those controls (as I didn't find TabIndex property)
Thanks
Jon
 
Controls in the CF have no tab order property. SP2 does allow tabbing, and
the order is based on the zorder, so you'll tab through either in the order
they are added to the Form, or the reverse (I can't recall which).

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


Jon said:
Hi,
I develope an application to run on Pocket PC. My app has a form
containing TextBox,ListBox and Button controls.
 
The .NET Compact Framework does not currently support the TabIndex property.
For more infomration about tab order, see the "Tab Order and Focus"
QuickStart in the Windows Forms section of the .NET Compact Framework
QuickStarts:

http://samples.gotdotnet.com/quickstart/CompactFramework/

Hope this helps.
- Bruce Hamilton
..NET Compact Framework User Education

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top