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 strongm 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. doctorA

    Using a C file inside of a C++ program

    and do not foget include <stdafx> in your c-files or switch off precompilate headers from project options.
  2. doctorA

    sorting a arrary of structures (qsort)

    int compare(const void *elem1, const void *elem2 ) ) { if( ((CFGStruct*)elem1)->ParcelString > ((CFGStruct*)elem2)->ParcelString ){ return 1; } else if( ((CFGStruct*)elem1)->ParcelString > ((CFGStruct*) elem2)->ParcelString ){ return -1; } else{ return 0; } } ...
  3. doctorA

    Transfer array between 2 apps

    You can use clipboard too. Also you can make GlobalAlloc in app1, find the main window of app2, send handle of memory to the window of app2 in the user message and get information in app2 using GlobalLock.

Part and Inventory Search

Back
Top