Click here to Skip to main content
15,888,020 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to write out the points to rectangles to the view/screen? Pin
Håvar8-Apr-05 13:48
Håvar8-Apr-05 13:48 
AnswerRe: How to write out the points to rectangles to the view/screen? Pin
mark novak10-Apr-05 4:11
mark novak10-Apr-05 4:11 
AnswerRe: How to write out the points to rectangles to the view/screen? Pin
John R. Shaw10-Apr-05 10:37
John R. Shaw10-Apr-05 10:37 
GeneralDate time control Pin
The Professor8-Apr-05 12:40
The Professor8-Apr-05 12:40 
GeneralRe: Date time control Pin
mark novak9-Apr-05 5:19
mark novak9-Apr-05 5:19 
GeneralRe: Date time control Pin
The Professor9-Apr-05 12:56
The Professor9-Apr-05 12:56 
GeneralProcess handling Pin
mpapeo8-Apr-05 11:03
mpapeo8-Apr-05 11:03 
GeneralRe: Process handling Pin
mark novak9-Apr-05 5:44
mark novak9-Apr-05 5:44 
Aww man you can do all kinds of rad things with processes. Pretty much everything that Task Manager can do you can do. What you want to do is call CreateProcess() and pay attention to the last argument, a PROCESS_INFORMATION structure which has the hProcess handle. With that your free to call functions like TerminateProcess() and SuspendThread(). However TerminateProcess() is pretty drastic and does not guarantee that anything will be freed and the process may need to run critical cleanup code. TerminateProcess() is like shutting a program off by unplugging the power. You could see if a process is associated with a window by calling EnumWindows() and comparing the ProcessId, which you can get from GetWindowThreadProcessId().

Check out http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/process_and_thread_functions.asp[^] for Process/Thread manipulation.
GeneralRe: Process handling Pin
mpapeo9-Apr-05 10:59
mpapeo9-Apr-05 10:59 
GeneralRe: Process handling Pin
mark novak10-Apr-05 3:57
mark novak10-Apr-05 3:57 
GeneralRe: Process handling Pin
mpapeo10-Apr-05 6:05
mpapeo10-Apr-05 6:05 
GeneralCollect rows from an external SQL Server from my MFC-app Pin
anderslundsgard8-Apr-05 10:15
anderslundsgard8-Apr-05 10:15 
GeneralCString to Integer Pin
Anonymous8-Apr-05 9:29
Anonymous8-Apr-05 9:29 
GeneralRe: CString to Integer Pin
Chris Losinger8-Apr-05 9:41
professionalChris Losinger8-Apr-05 9:41 
GeneralRe: CString to Integer Pin
Joel Holdsworth8-Apr-05 11:57
Joel Holdsworth8-Apr-05 11:57 
GeneralRe: CString to Integer Pin
deldeep9-Apr-05 2:52
deldeep9-Apr-05 2:52 
Generalhelp with shering a file in a DLL Pin
Member 18672758-Apr-05 8:45
Member 18672758-Apr-05 8:45 
GeneralIE address update Pin
nmhuy8-Apr-05 8:31
nmhuy8-Apr-05 8:31 
GeneralRe: IE address update Pin
ThatsAlok8-Apr-05 18:45
ThatsAlok8-Apr-05 18:45 
GeneralRe: IE address update Pin
nmhuy9-Apr-05 6:53
nmhuy9-Apr-05 6:53 
Generalsize of file Pin
smarty128-Apr-05 8:26
smarty128-Apr-05 8:26 
GeneralRe: size of file Pin
David Crow8-Apr-05 8:56
David Crow8-Apr-05 8:56 
GeneralRe: size of file Pin
smarty129-Apr-05 7:06
smarty129-Apr-05 7:06 
GeneralRe: size of file Pin
Alexander M.,9-Apr-05 7:49
Alexander M.,9-Apr-05 7:49 
GeneralRe: size of file Pin
David Crow9-Apr-05 12:11
David Crow9-Apr-05 12:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.