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

  • Users: dipdip
  • Order by date
  1. dipdip

    Why modaless dialog box on the heap?

    In general you create a modeless dialogue in a function, and then return to do other processing, when you close the dialogue box it usually frees up the memory allocated on the heap itself. If the dialogue box memory was on the stack, then it would be lost when you returned form the function...
  2. dipdip

    to convert CStringArray to a char

    A CStringArray is an array of CString objects. You need to obtain access to the appropriate CString and then use methods on the CString. To get characters GetAt(nIndex) or the operator []. To set characters SetAt(nIndex, ch)
  3. dipdip

    CSV(Comma Separated Files)VC++

    In the past I have written some C++ classes to handle CSV strings and files. If it is of any help I can make the sources available.

Part and Inventory Search

Back
Top