能力值:
( LV6,RANK:80 )
|
-
-
2 楼
case WM_INITDIALOG: GetModuleFileName(NULL,szFileName,MAXSIZE); SetWindowText(hwndDlg,szFileName); SendMessage(hwndDlg,WM_SETICON,ICON_BIG,(LPARAM)hIcon); SetFocus(GetDlgItem(hwndDlg,IDC_EDIT1));
// 添加如下代码 LPWSTR* szArglist; int nArgs; szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs); if (szArglist) { if (nArgs >= 2) SetWindowTextW(hwndDlg, PathFindFileNameW(szArglist[1]));
LocalFree(szArglist); }
return TRUE;
这样可以吧,获取命令行
|
|
|