in a simple form i have to corlorizedtexbox
when the cursor is on login colorizedtexbox, if user type [tab], the cursor go in pasword colorizedtextboxbut if user type [ENTER], the cursor rest in login zone.
How make for moving the cursor from login zone to paswword zone with the [ENTRE] KEY on the keyboard.
Thank's
Eric
You should be using a TextBox or MaskedTextbox for this type of data entry as they are might lighter weight and this is the type of area for which they are inteded versus an RTF control.
I try with a texbox, but it's the same problem. i woud to valid my texbox with enter key. How can i do ??
This related to standard .NET over StrataFrame, but maybe this will get you pointed in the right direction.
thank's, i made this code in keypress method
Private Sub Textbox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Textbox1.KeyPress
If e.KeyChar = Chr(13) Then
At running, it's ok.
very thanks it'all for today , it one hour of mornig here in France.Have a good day
It's time to sleep for me.