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 gkittelson 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. raddog58

    Path to Application's Directory

    This may be a little late, but nevertheless... char work[MAX_PATH+1]; GetModuleFileNameEx(GetCurrentProcess(), NULL, work, sizeof(work)); Another option in C/C++: #include <stdlib.h> char caProg[MAX_PATH+1]; strcpy(caProg, _pgmptr);

Part and Inventory Search

Back
Top