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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. CARONTE

    How can I convert char[25000] to CString?

    CString normal; CString sc; int index=0; GetDlgItemText(IDC_NORMAL, normal); while(normal.GetLength() > index) { switch(normal[index]) { case 'W': case 'w': sc += "!"; default: sc += normal[index]; } index++; } SetDlgItemText(IDC_SC, sc);

Part and Inventory Search

Back
Top