PC to PC comunications via NT network
-
I wrote two MFC applications which are installed on separate PCs on a NT network. The first MFC application needs to know when the second MFC application starts. I want to monitor how many people and who are using the second MFC application by passing the users logon info. Any links or ideas on how to do this?
-
I wrote two MFC applications which are installed on separate PCs on a NT network. The first MFC application needs to know when the second MFC application starts. I want to monitor how many people and who are using the second MFC application by passing the users logon info. Any links or ideas on how to do this?
Many ways are possible: - sending info using sockets; - sending info via pipes, mailslot, ...; - sending info via windows messaging; ... Vitali