send message to msn client

bfsog

Well-known member
Joined
Apr 21, 2005
Messages
50
Location
UK
Programming Experience
5-10
send message to msn contact

Hey.

First off I do not know if this is the right place to post as I do not know what it is called.

What I am stuck on is having an application, which sends a message (of my choice) to a contact on my msn messenger list, when they sign in.

The application does not have to sign me in or anything, all it has to do is send a message automatically when a contact signs in.

I have found 1 or 2 tutorials, but for one they did not really focus solely on this part, and were for visual basic 6.

I appreciate any help given.

I can find out if its a messenger conversation using this
VB.NET:
		For Each proc In Process.GetProcesses
			If proc.MainWindowTitle.EndsWith("Conversation") Then
			    MessageBox.Show((proc.MainWindowTitle))
			End If

Thanks in advance.
 
Last edited:
Back
Top