in my program a sending some text to an active windows. i send like this:
.
.
.
MSG = lblMSG.Text.Trim();
SendKeys.Send(MSG);
SendKeys.SendWait("{ENTER}");
SendKeys.Flush();
the problem is - sometime the string Changing for no reason. for example: 9999.999 ==> 9999.9999 9999.999 ==> 999.999 why ?