For example:
I am creating a VB version of the Currency Control created by Rogerio Mauri here http://forum.strataframe.net/Topic14533-26-1.aspx
Basically I have a whole bunch of currency fields and need a simple solution to all of them. I would like that when the user press the Enter key if will simply go to the next control like the Tab key does. I found the following code in the Internet:
SendKeys.Send(
It is working fine, but obviously this will fire for every key pressed in the control, is this the correct event to handle that feature, or is there another way to get this done?
P.S.
I will post the final version of this class when done.