WinForms, how to override/avoide the tab order for a bunch of buttons/textboxes?

  • Thread starter Thread starter Serdge Kooleman
  • Start date Start date
S

Serdge Kooleman

WinForms, how to override/avoide the tab order for a bunch of
buttons/textboxes?

i have a panel with 4 textboxes (or buttons) in 2 comlumns (so 2 and 2)

i would like to scroll in the first column when i'm pressing arrow button
"down"
and go to the right column, the same row when i'm pressing button "right" or
"tab".
if i press "tab" second time selection should go left, to the same row (now
it is going one row below :-( )

so, i need a navigation similar to a datagrid with two columns. but without
going down when i press "tab" or "right"

thank you
serge
 
You can set TabStop to false to avoid stopping and use the TabIndex property
to specify which control is next.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top