You can use the PadLeft method to get the formatting you need:
int i = 100;
string s = i.ToString().PadLeft(8, ' ');
will give you a string 8 characters long, with i right justified, so in
this case there will be five spaces before the number.
*** Sent via Developersdex http://www.developersdex.com ***