views:

277

answers:

2

Hi

I want to make a simple application on Windows XP with a single button which says "Help" - that will launch Windows Messenger's Remote Assistance and connect to my MSN Messenger ID - this is detailed here: (http://www.microsoft.com/windowsxp/using/helpandsupport/learnmore/remoteassist/viaim.mspx)

This is for my Dad or Mom who sometimes get confused when the Firefox UI resets itself or something other similarly catastrophic happens

I am familiar with the Windows programming model but am unsure on how to go about it - I would like to do this in C# or even VB.net

Thanks very much

-- Sami

A: 

Have a look at this article in the MSDN library:

http://msdn.microsoft.com/en-us/library/ms811079.aspx

and this article:

http://msdn.microsoft.com/en-us/library/aa359213(VS.85).aspx

Robert Harvey
Thanks Robert but I am really looking to do the following: 1. launch windows messenger2. access menu and select tools->ask for remote assistance->[email protected] is more of a how-to-access windows messenger via C# or VB.net question than making a standalone remote-access program
sami
A: 

Sending Keystrokes to another Application in C#
http://www.codeproject.com/KB/cs/SendKeys.aspx

Robert Harvey