惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - apple0809

推箱子 directshow DirectShow 65 410 画图 VARIANT - apple0809 - 博客园 wince 注册 com组件 - apple0809 wince5.0 光标 得到dialog的hdc hdc - apple0809 - 博客园 VS2005 WTL add ATL error! Solution..... 文件系统 兴趣 兴趣 兴趣。 兴趣 期望
启动exe - apple0809 - 博客园
apple0809 · 2009-05-21 · via 博客园 - apple0809

 vs2005

TCHAR *strPDExe = _T("PocketMory\\Touch.exe");

 SHELLEXECUTEINFO sei;
 memset(&sei,0,sizeof(sei));
 sei.cbSize = sizeof(sei);
 sei.fMask = SEE_MASK_FLAG_NO_UI;
 sei.hwnd = NULL;
 sei.lpVerb = NULL;
 sei.lpFile = (LPCTSTR)strPDExe;
 sei.lpParameters =NULL;
 sei.lpDirectory = NULL;
 sei.nShow = SW_SHOWNORMAL;
 ShellExecuteEx(&sei);