Hi,

2 probs here!

1)
I have a form with many controls on ... I have numbered the ones I want to tab between from 0, but there is an extra control between the last and the first which is a button (actually an array of them).

Is there any way of removing that/them from the tabindex array, so that control passes straight back to the first control?

2)
I want to be able to press a function key at any time/place on the form. When the form gets loaded/activated/shown, then no problem. Once i am tabbing between controls and entering data, i want to be able to press F2 (for example), to save progress at any time.
At the moment i have a `keydown` event handler for each of the controls that i tab between...this is horrible (and its in addition to the list of `change` events that i`m also using).
Is there anyway of getting fkeys checked as a special case, or any group of keys (i can see the problem if every keypress to a text control is sent to multiple event handlers).

Hope someone can help with either of these little probs...

Alex.