Thread: UserForm
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Justin Philips Justin Philips is offline
external usenet poster
 
Posts: 32
Default UserForm

there should be a option called Tab Index in the properties window.
Select the textbox you want as your password and set the TabIndex to 0.
You can go through the rest of your items and index them in order.
When someone hits tab it will go from 0--1--2 etc. When you add a
new item you will have to index it correctly.

Let me know if this helps.

-Justin