是否可以在VisualStudio应用程序中设置固定的DLL搜索路径?
这个问题在这里已经有了答案:
正如mvidelgauz建议的那样,我已经使用winapi实现了一个启动器。 这是我第一个本地winapi项目,但实际上只花了一个小时才完成。
我在VS2008中创建了一个默认的Win32项目。
在BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
,删除了这些行:
//ShowWindow(hWnd, nCmdShow);
//UpdateWindow(hWnd);
然后,而不是他们,我补充说:
SetCurrentDirectory( L"MyPath" );
ShellExecute(hWnd, NULL, L"MyApp.exe", L"-l", NULL, SW_HIDE);
DestroyWindow(hWnd);
上一篇: Is it possible to set fixed DLL search path in VisualStudio application?