Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
This should all be in a base form anyway. This logic should be trigger by a property that is exposed on a your base form that all of your other forms inherit (i.e. EnterIsSameActionAsTab). When true, you would then allow the Enter to act as a tab. I think you are trying to make this too complicated. I did this in minutes as a quick test and it worked. Just Override the ProcessCmd method on the base form, if the property mentioned above is True, then handle the Enter. In the Enter, call another private method in your base form that selects the next control.
|