hmm... alright... i trying to call hWnd as a handle... and trying other methods... so once i get something, i let u guys know... but, if you guys got any idea, let me know too.. thanks...
randomrockers
Posts
-
using ShellExecute to close... -
using ShellExecute to close...yup i know about the site... I am using Visual C++6 there is no additional dependencies there... :( i try puting it in object modules, but an error came out saying cannot open Kernel32.dll
-
reading a .pst filedoubt this will work, try using getPathName() method and ShellExecute or Execute()
-
programming GSM network with c languagewood like a program???? dont get what you mean... i did something like that, but that is using java...
-
using ShellExecute to close...WM_CLOSE to window.. for example? I tried, but keep getting different error, went to the library of SHELLEXECUTE, all said is optional for hwnd... so i cannot get any example... yup. i do have the proper includes...
-
using ShellExecute to close...NOPE... IT DOESNT... i get the following errors c:\documents and settings\user\my documents\visual studio 2005\projects\design\designdlg.cpp(242) : error C2065: 'GetProcessID' : undeclared identifier c:\documents and settings\user\my documents\visual studio 2005\projects\design\designdlg.cpp(245) : error C2065: 'KillProcess' : undeclared identifier maybe you like to see the results... http://yfrog.com/11picture2mzjpx[^] stop does go back to start when i click it, but picture doesnt close
-
opening webcam with MFCHey guys, I have created a button, called start Camera... Upon clicking the button, the computer will open the webcam(in a new window)... Do any of u have an idea how do I do that? i know how to open using opencv, however, this is for my project, and my supervisor wants only Visual C++ for the time being, till cascade(which u probably dunno what is it) is completed... and I have to use Visual C++ to open the webcam instead of openCV... got any idea guys??? please help... thanks... your help will be totally appreciated... Edit/Delete Message
-
using ShellExecute to close...Hi, i am using ShellExecute to open an image. The image is opened using Windows Picture and Fax Viewer. Now, I have a button, in my dialog(the UI). I want to close the Windows Picture and Fax Viewer, got any idea? here's my code... please help. its kinda urgent... been stuck on this for 3 days... googled it, but nopthing relevant came out. void CDesignDlg::OnImage() { // TODO: Add your control notification handler code here CFileDialog m_ldFile(TRUE); { if ( ! onStart ) { m_button.SetWindowText("Start Image"); } else { m_button.SetWindowText("Stop Image"); } onStart ^= 1; // make onStart 0, or 1 respectively } if (onStart==0){ if (m_ldFile.DoModal() ==IDOK) { CString abc= m_ldFile.GetPathName(); SHELLEXECUTEINFO tiff; tiff.cbSize = sizeof(SHELLEXECUTEINFO); tiff.fMask = NULL; tiff.hwnd = NULL; tiff.lpVerb = "open"; tiff.lpFile = abc; tiff.lpParameters= NULL; tiff.nShow = SW_SHOWNORMAL; tiff.hInstApp = NULL; tiff.lpIDList = NULL; tiff.lpClass = NULL; tiff.hkeyClass = NULL; tiff.dwHotKey = NULL; tiff.hIcon = NULL; tiff.hProcess = NULL; tiff.lpDirectory = NULL; int ReturnCode = ::ShellExecuteEx(&tiff); UpdateData(TRUE); }} else { //what should be put here??? } }