Robert Apostolico
Guest
|
I've got a normal Windows Form, border style set to "FixedToolWindow". Trying to use TAB key to move between the email address and password fields (aka login fields) , but when you press TAB, the cursor does not move and the computer just "dings" at you.
The form is shown when a user clicks the "Command Button".
The form is NOT being shown modally; I'm hoping to use the deactivate/lost focus event to close the form automatically if the user click elsewhere, rather than forcing them to click a close button.
The fields in question are set to "TabStop=True"; TabIndex=1 and 3 respectfully.
What am I missing?
Thank you! |
|
Andrei Smolin
Add-in Express team
Posts: 18652
Joined: 2006-05-11
|
Hello Robert,
I'm afraid you have to show that form modally as non-modals interfere with the windowing of IE (the same applies to showing a non-nodal in an Office application). The affected areas are keyboard shortcuts, focus, tooltips and other areas.
Andrei Smolin
Add-in Express Team Leader |
|