|
DoriDoriPanda 님이 쓰신 글 :
: F1으로 도움말 먼저 읽어보시구...
:
: 이렇게 적으시면... 답변해주실분들이 별로 없으세요;;
:
:
:
: 어휴.. 님이 쓰신 글 :
: : ShellExcute로 응용프로그램을 열 수있다던데
: : 그 소스좀 알려주시면 고맙겠습니다 ㅎㅎ;;
of = ExtractFileDir(ParamStr(0))+String("\\T.bat");
SHELLEXECUTEINFO exeinfo;
memset(&exeinfo, 0, sizeof(exeinfo));
exeinfo.cbSize = sizeof(exeinfo);
exeinfo.lpVerb = "open";
exeinfo.lpFile = of.c_str();
exeinfo.lpParameters="";
exeinfo.fMask = SEE_MASK_NOCLOSEPROCESS;
exeinfo.nShow = SW_SHOWDEFAULT;
if(!ShellExecuteEx(&exeinfo))
{
|