Tab Order again

A

Al

Hi Folks,

I was wondering why if it is possible to set a textbox so that the user
does'nt tab to it?

Tab Order starts at 0 so setting the tab order to zero does not help :-(

If I delete the tab order it defaults back to zero :-(

Cheers

-Al
 
P

Peter Hewett

Hi Al

In the VBA IDE Select the TextBox and in the properties window change it's
"TabStop" value from True to False. You can do this just by double-clicking
on the value. Changing the TabIndex property just changes the order in which
you visit controls when you press the Tab key.

HTH + Cheers - Peter
 
A

Al

Thanks Peter - will try it.

-Al

Peter Hewett said:
Hi Al

In the VBA IDE Select the TextBox and in the properties window change it's
"TabStop" value from True to False. You can do this just by double-clicking
on the value. Changing the TabIndex property just changes the order in which
you visit controls when you press the Tab key.

HTH + Cheers - Peter
 

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

Top