O.P. RE: Run .exe with Windows Live Messenger
Hello again,
Is there a way to call something like shellExecute() from the Csharp code i wrote for a WLM addin. For example, can i call it from the initialize function below thnx.
using System;
using System.Diagnostics;
using Microsoft.Messenger;
using System.Windows.Forms;
public class AddIn : IMessengerAddIn
{
MessengerClient m_client;
void IMessengerAddIn.Initialize(MessengerClient client)
{
m_client = client;
}
.
.
.
.
}
|