hello
I have a little code to change a '.' into a ','.
But after the changing the cursor is put to the beginning of the textfield.
Before:
45.|
after translation:
|45,
The | is the cursor.
My code: txtPrijs.Text = txtPrijs.Text.Replace(".", ",");
I like to put the cursor tot the end of the line..
But how?
I have a little code to change a '.' into a ','.
But after the changing the cursor is put to the beginning of the textfield.
Before:
45.|
after translation:
|45,
The | is the cursor.
My code: txtPrijs.Text = txtPrijs.Text.Replace(".", ",");
I like to put the cursor tot the end of the line..
But how?