I installed a vb6 application on windows seven and office 2010.
This application works fine on xp/vista with Ms access 2007.
The MsflexGrid shows wrong numbers on win seven with the sign “E” like 4526E …
What could be the problem. is it access 2010?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1.2E+34is a perfectly valid format when a number contains lots of significant zeros:Does the same grid differ when showing the same data?
Where are the numbers coming from? If they’re being added by code (vs data bound) then you can use
Format()to use an explicit format string rather than letting Windows do what it thinks is best.