I want to convert text which user is copying from my textbox.
For example:
text of myTextBox is "12,34"
and I want to give user:
myTextBox.Text.Replace(",",".") <. "12.34"
Then he could paste this text anywhere in this format (for example in webbrowser).
Anyone know simple way to do this ?
Thank you