If your problem is, that you like the doubles to be right-aligned, then i
have to say you, that you will never get this with such Format-String!
Because a Blank (" ") will consume much less space then a number ("0" for
example has more width than "1" has more than " ")
i you like to right-align the number, you should look, if the control
support that (ListView-columns for example have a property for that) or try
to draw it by yourself....
if you just need some spaces before the numbers you can write a litte
function the will do something like that (pseudo-code):
return = RightString(" "+double.ToString(##0.00), 6);
I don't know what you like to do so it's hard to give the right tip
Boris