Microsoft KB Archive/107465

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 10:12, 20 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


FIX: ClassWizard Floating-Point Parsing Errors

Article ID: 107465

Article Last Modified on 11/18/2003



APPLIES TO

  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 1.5 Professional Edition
  • Microsoft Visual C++ 2.0 Professional Edition



This article was previously published under Q107465


SYMPTOMS

ClassWizard cannot parse floating-point numbers written in scientific floating-point notation, such as 1.e+006. If a number formatted in this manner is in the lines of code that ClassWizard must parse, the following error is generated:

Parsing error: Expected ")".
Input Line: "DDV_MinMaxFloat(pDX, m_Var, 0., 1.e+006);"

The follow sequence of steps causes the code generator of ClassWizard to generate floating-point numbers in scientific notation:

  1. Add an edit control to a dialog box in App Studio.
  2. Add a float or double member variable to class of the previously added edit control.
  3. In the range validation fields, add a floating-point number that fits one of the following criteria, for member variable of type float:

    1. It has seven digits or more to the left of the decimal point.
    2. It has one or more zeros to the right of the decimal point, between the decimal point and the first nonzero number.

    Or the range validation fields contain a floating-pointer number that fits one of the following criteria, for a member variable of type double:

    1. It has 16 digits or more to the left of the decimal point.
    2. It has one or more zeros to the right of the decimal point, between the decimal point and the first nonzero number.


RESOLUTION

The only work around is to modify the code by hand and convert it back to the original notation. Be aware, however, that if you edit the variables for that class again, the numbers will be converted back to scientific notation.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been corrected in Visual C++ 2.1.


Additional query words: 1.00 1.50

Keywords: kbbug kbfix kbwizard KB107465