Click here to Skip to main content
15,891,409 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalpackaging VC++ application Pin
satadru24-Jan-04 22:00
satadru24-Jan-04 22:00 
GeneralRe: packaging VC++ application Pin
Johnny ²25-Jan-04 5:14
Johnny ²25-Jan-04 5:14 
GeneralRe: packaging VC++ application Pin
User 665825-Jan-04 5:35
User 665825-Jan-04 5:35 
GeneralRe: packaging VC++ application Pin
Mukkie25-Jan-04 7:50
Mukkie25-Jan-04 7:50 
GeneralTAPI - Recieving/Accept a telefon call Pin
Anonymous24-Jan-04 21:41
Anonymous24-Jan-04 21:41 
GeneralRe: TAPI - Recieving/Accept a telefon call Pin
Michael P Butler26-Jan-04 3:49
Michael P Butler26-Jan-04 3:49 
GeneralNetwork monitoring of client Pin
shals16924-Jan-04 17:31
shals16924-Jan-04 17:31 
GeneralRe: Network monitoring of client Pin
Ernesto D.24-Jan-04 18:01
Ernesto D.24-Jan-04 18:01 
Heres an approach
1.- Have your server app send a request to the client side app for the names of running procesess. do this via standard UDP sockets.

2.- On the client app, and when requested by the server, You need to ennumerate the procesess (or maybe active windows would do) on the client. Use EnumWindows() or EnumProcesess() functions to do it.

3.- the Client app builds an array of strings for the names of running procesess, and sends it to the server app. also do this via sockets, tho it might be trickier than it seems. You might need to design some sort of class or structure that contains the total data lenght and the data itself.

4.- (the easy part) the server gets the data from the client, and displays the list of procesess.

HTH.


GeneralRe: Network monitoring of client Pin
Anonymous24-Jan-04 18:08
Anonymous24-Jan-04 18:08 
GeneralIntegrating latest MSDN with VC++ 6.0 Pin
Gary Chapman24-Jan-04 17:22
Gary Chapman24-Jan-04 17:22 
GeneralRe: Integrating latest MSDN with VC++ 6.0 Pin
Anonymous24-Jan-04 18:28
Anonymous24-Jan-04 18:28 
Questionis C++ programs portable?? Pin
Prakash Nadar24-Jan-04 16:17
Prakash Nadar24-Jan-04 16:17 
AnswerRe: is C++ programs portable?? Pin
bneacetp24-Jan-04 16:24
bneacetp24-Jan-04 16:24 
GeneralRe: is C++ programs portable?? Pin
Anonymous24-Jan-04 19:03
Anonymous24-Jan-04 19:03 
GeneralRe: is C++ programs portable?? Pin
Johnny ²24-Jan-04 21:40
Johnny ²24-Jan-04 21:40 
AnswerRe: is C++ programs portable?? Pin
toxcct25-Jan-04 22:44
toxcct25-Jan-04 22:44 
Generalstd::list question Pin
bneacetp24-Jan-04 15:31
bneacetp24-Jan-04 15:31 
GeneralRe: std::list question Pin
PJ Arends24-Jan-04 18:05
professionalPJ Arends24-Jan-04 18:05 
GeneralRe: std::list question Pin
bneacetp24-Jan-04 18:17
bneacetp24-Jan-04 18:17 
GeneralRe: std::list question Pin
bneacetp28-Jan-04 23:20
bneacetp28-Jan-04 23:20 
GeneralRe: std::list question Pin
PJ Arends31-Jan-04 6:00
professionalPJ Arends31-Jan-04 6:00 
Generalstatic member functions & multithreading Pin
Ernesto D.24-Jan-04 13:58
Ernesto D.24-Jan-04 13:58 
GeneralRe: static member functions & multithreading Pin
Michael Dunn24-Jan-04 19:01
sitebuilderMichael Dunn24-Jan-04 19:01 
GeneralRe: static member functions & multithreading Pin
Ernesto D.26-Jan-04 12:04
Ernesto D.26-Jan-04 12:04 
GeneralRe: static member functions & multithreading Pin
Michael Dunn26-Jan-04 12:30
sitebuilderMichael Dunn26-Jan-04 12:30 

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.