One thing I have noticed with .Net is that various controls can have the
same tab index and the app still compiles. I would set the tab index of
your splitter to some large number (larger than a single digit) like 801
or 1001 (I add an extra 1 to make sure it is unique). Then go through
all your controls and check the tab indexes to make sure you don't have
duplicate tab indexes. That will cause tabbing to not work as
advertised. It is a pain but the only workaround I have come up with
(if you already have a lot of controls - well - bummer man! :).
Rich
*** Sent via Developersdex http://www.developersdex.com ***
same tab index and the app still compiles. I would set the tab index of
your splitter to some large number (larger than a single digit) like 801
or 1001 (I add an extra 1 to make sure it is unique). Then go through
all your controls and check the tab indexes to make sure you don't have
duplicate tab indexes. That will cause tabbing to not work as
advertised. It is a pain but the only workaround I have come up with
(if you already have a lot of controls - well - bummer man! :).
Rich
*** Sent via Developersdex http://www.developersdex.com ***
Comment