I have opened multiple instances of an APPLICATION using createprocess. No I need to close one particular window using WM_CLOSE. I need to know how I do it?
punav
Posts
-
How to close A particular instance with WM_CLOSE -
Exit an ApplicationThank you very much. This works fine. But say if I have 2/3 instances of same application, how do I extend this to close particular window?
-
Exit an Applicationcan you tell me how to do this Ex: I want to close "notepad.exe" with wm_close
-
Exit an ApplicationHere I have a problem I am trying to automate Applications (FILE->EXIT) function. that is closing the application. Problem : When I open my application using createProcess() a notification is sent tat application started.But when i used following to close application no nofication is sent. if( TerminateProcess(piProcessInfo.hProcess,0)) { CloseHandle(piProcessInfo.hProcess); } This code is not acting as way as (FILE->EXIT) Please help!!! :~
-
Createprocess()I am using below function and its working fine for now. DWORD dwExit = WaitForSingleObject(piProcessInfo.hProcess,5 * 10000); This is incorporating required delay.
-
Createprocess()Here when I open a application which is a server, the mounted file systesm should create a corresponding directory.So next line is to Check for the folder in fs. This command executes imeediately and returns no folder.
-
Createprocess()I am trying to open a exe file through my application. I am using CreateProcess() for the same But before the application lauches the next line starts executing. I added Sleep(10000). But that does not help everytime Please suggest how can I wait till application is up and then proceed with other calls.
-
reading audio file properties like artist,genre,album etc using VC++ 6I need to read a MP3 file. Please let me know how to do this task
modified on Monday, March 2, 2009 1:05 AM
-
reading audio file properties like artist,genre,album etc using VC++ 6I am using VC++ 6.0 for developement. I want to know how to find audio file advance properties like "Album","genre" etc Please let me how to do this in vc++ 6.0