1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| m_preview.Create(IDD_PREVIEW);
m_preview.ShowWindow(SW_SHOW);
m_preview.SetParent(this);
m_preview.SetWindowPos(0,50,50,200,200,0);
char buffer[200];
sprintf((char*)buffer,"D:\\WINDOWS\\system32\\sspipes.scr /p %i",(int)m_preview.m_hWnd);
//sprintf((char*)buffer,"/p %i",(int)m_preview.m_hWnd);
// ShellExecute(hWnd, "open", "D:\\WINDOWS\\system32\\screenpreview.scr", (LPSTR)buffer, NULL, SW_SHOWNORMAL);*/
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line).
buffer, // Command line.
NULL, // Process handle not inheritable.
NULL, // Thread handle not inheritable.
FALSE, // Set handle inheritance to FALSE.
0, // No creation flags.
NULL, // Use parent's environment block.
NULL, // Use parent's starting directory.
&si, // Pointer to STARTUPINFO structure.
&pi ) // Pointer to PROCESS_INFORMATION structure.
) |
Partager