Oct 26, 2003 #1 ForeverCode Programmer Joined Dec 6, 2002 Messages 41 Location US How would I get my program's current path its running from?
Oct 26, 2003 1 #2 JagadeeshVN MIS Joined Oct 26, 2003 Messages 6 Location IN Try this TCHAR tcModule[ _MAX_PATH ]; if ( GetModuleFileName( AfxGetResourceHandle(), tcModule, MAX_PATH ) ) { AfxMessageBox( tcModule ); } Upvote 0 Downvote
Try this TCHAR tcModule[ _MAX_PATH ]; if ( GetModuleFileName( AfxGetResourceHandle(), tcModule, MAX_PATH ) ) { AfxMessageBox( tcModule ); }
Oct 27, 2003 Thread starter #3 ForeverCode Programmer Joined Dec 6, 2002 Messages 41 Location US Perfect, thank you. Upvote 0 Downvote