How do you create a string expertblob?
If anybody could render me a reply it would be much appreciated.
Thanks all.
*** Followup ***
After reading over my own question I realize that I have not given enough detail.
I'm attempting to use the builtin windows remote assistance dll rdchost.dll and am trying to use theRDCCLIENTHOSTLib.SAFRemoteDesktopClient.ConnectToServer(string expertBlob) function and no matter what I try to put into the string it will not work, it throws an exception: I have tried using the IPAddress from System.Net, standard strings, hardcoded strings, byte values and such. Nothing has worked for me. I'm sure something very simple is to blame. Any thoughts are greatly appreciated. Here is the code I have so far: SAFRemoteDesktopClient
"Value does not fall within the expected range."
try
{
RDPClient.ConnectToServer(expertBlob.ToString());
//Statement fails, requires type conversion.}
catch (Exception E){
tslMessages.Text = E.Message;
}

