此帖出自WindowsCE论坛
最新回复
刚才我用了另外一个函数:
void LoadApp(LPCTSTR strPath)
{
WIN32_FIND_DATA wfd;
HANDLE hFile=NULL;
hFile=FindFirstFile(strPath,&wfd);
if(hFile !=INVALID_HANDLE_VALUE && hFile !=NULL)
{
FindClose(hFile);
SHELLEXECUTEINFO sei;
ZeroMemory(&sei, sizeof(SHELLEXECUTEINFO));
sei.cbSize = sizeof(SHELLEXECUTEINFO);
sei.lpFile = strPath ;
sei.nShow = SW_SHOW;
ShellExecuteEx(&sei);
}
return;
}
void CLq40Dlg::OnDiaoYong()
{
LoadApp(_T("\\Windows\\imageviewer.exe"));
}
成功了,还是谢谢大家!
详情
回复
发表于 2008-8-19 17:23
| ||
|
||
| |
|
|
| |
|
|
此帖出自WindowsCE论坛
| ||
|
||
| |
|
|
| |
|
|
此帖出自WindowsCE论坛
| ||
|
||
浏览过的版块 |
EEWorld Datasheet 技术支持