i want to set TAB ORDER but when selecting VIEW, TAB ORDER I get "SPECIFIED CAST IS NOT VALID"
what's wrong ?
It's a smart application project .NET 2003
THX
Printable View
i want to set TAB ORDER but when selecting VIEW, TAB ORDER I get "SPECIFIED CAST IS NOT VALID"
what's wrong ?
It's a smart application project .NET 2003
THX
Probably should be a more user-friendly error message, but the reason is, TabIndex in not supported in the .NET Compact Framework. There is no property for this, and as such, it cannot be modified.
HTH,
Mike
A clunky workaround would be to code the Leave events of each control to set focus to the next control.