I've set the "Decimal Symbol" to ',' and the "Digital Grouping Symbol" to '.'.
My format string is :
CWGraph.Axes.Item(2).FormatString = ".#########k" + '"'+"m"+'"';
This gives me a Y axis of 30,000000000mm.
If I change the format string to :
CWGraph.Axes.Item(2).FormatString = ",#########k" + '"'+"m"+'"';
Then I get a Y axis of 30mm. But I don't get the reqd number of decimal places if needed. The ActiveX control seems to adjust the number of decimal places shown according to the values chosen, i.e. 10.123456000 would be displayed as 10.123456 (no trailing zero's).
In european I get 10.1234, the control will only display 6 chars, i.e.0.12345 and 100.123. I need to get up to 9 decimal places 100.123456789.
If I'm using a european symbol should I use a ',' in the format string commands, and is there a way of forcing the control to give me the extra decimal places when I need them?
Cheers
Rob...
Message Edited by RobBart on 03-10-2005 09:15 AM
Message Edited by RobBart on 03-10-2005 09:15 AM