Board index » Visual Studio » How do I reindex a control array???
|
Maritza
|
|
Maritza
|
How do I reindex a control array???
Visual Studio381
I have many frames on a form that are a control array. When I use mz-tools to set the tab index properties of all the controls, it doesn't set them properly because one frame is out of order on the form. I have to manually find and adjust the tab index property everytime I make a change to the form. If I can re-index the frame array, it would solve my problems. -- Thanks. - |
| Jeff
Registered User |
Thu Jul 27 11:26:18 CDT 2006
Re:How do I reindex a control array???
"Saucer Man" <saucerman@nospam.net>wrote in message
QuoteI have many frames on a form that are a control array. When I use mz-tools move first and set its index to something beyond the end of your current array (use something crazy, like 1000). Then start decrementing every following frame's index and finally set your moved frame's index to the right number. Let's say you want to move 2 to 5 out of 8 total (0 - 7): 2 -->1000 3 -->2 4 -->3 5 -->4 2 -->5 0, 1, 6, and 7 aren't touched. - |
| Bob
Registered User |
Thu Jul 27 12:34:25 CDT 2006
Re:How do I reindex a control array???
"Jeff Johnson" <i.get@enough.spam>wrote in message
Quote"Saucer Man" <saucerman@nospam.net>wrote in message <g> Quote0, 1, 6, and 7 aren't touched. Reply to the group so all can participate VB.Net: "Fool me once..." - |
| Jeff
Registered User |
Thu Jul 27 13:55:37 CDT 2006
Re:How do I reindex a control array???
"Bob Butler" <tiredofit@nospam.ever>wrote in message
Quote>2 -->1000 - |
| Saucer
Registered User |
Thu Jul 27 17:42:51 CDT 2006
Re:How do I reindex a control array???
Thanks!
-- Thanks. "Jeff Johnson" <i.get@enough.spam>wrote in message Quote"Bob Butler" <tiredofit@nospam.ever>wrote in message - |
