I have multiple textboxes left-aligned vertically. They show numbers with floating points and signs. The numbers are continuously changing. I\'d like to make the position of the
Have you tried String.Format?
String.Format("{0:0.0000}", 123.4567); //will return "123.4567" String.Format("{0:0.0000}", 123.45678); //will return "123.4568"