Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AArmadillo

  1. AArmadillo

    how i convert the text in a textbox to a double?

    CString doubleText; doubleText.Format("%f", dNumber); CEdit* pEd = (CEdit*)CDialog::GetDialogItem(MY_TEXT); pEd->SetWindowText(doubleText); That should convert the double to a string with up to 6 decimal places of precision, and display it on the CEdit resource with the identifier...
  2. AArmadillo

    Rich Edit 2.0 debug/release build discrepancy

    I am working on an application that uses a view based off of rich edit 2.0. This program worked fine until I added a new class to handle socket messages, at which point the colors in the rich edit started going bad. This color problem occurs only in the release version, and not in the debug...

Part and Inventory Search

Back
Top