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 SkipVought 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: *

  • Users: enigma123
  • Order by date
  1. enigma123

    How can I convert a CString to char ?

    //////////////////////////////////////////////////// You can also convert CString into ascii char string in following way: CString str=CString("India is my Country"); char *pStr=new char[str.GetLength()]; strcpy(pStr,str.GetBuffer(str.GetLength()-1); //Usage of pStr// delete[] pStr...

Part and Inventory Search

Back
Top