01-17-2007 10:31 AM
Can someone tell me where this space is coming from? I'm sure it is something that is pretty obvious, but I am still learning.01-17-2007 10:39 AM
01-17-2007 10:45 AM
Hi Candice,
It looks as though you have spaces in the format string after each "f" and before the following "%". So you are telling the format into string to add a space after each number. If you don't want the spaces leave them out of the format string. So your format string should read
"%10.4f%10.4f%10.4f........%10.4f%s"
(Note: NO spaces)
Rod.
01-17-2007 11:11 AM