Go to Class Wizard and create a member varible
to IDC_EDIT ID edit control with Value and type CString.
Add a message handler to the dialog for EN_CHANGE.
In that message handler call UpdateData(TRUE) which
does the data exchange from the control to your member
variable. Get the floating point value from the
variable using C's "atoi" function.
Good Luck