Re: Remote control of device
From: KM (konstmor_at_nospam.yahoo.com)
Date: 04/29/04
- Next message: Slobodan Brcin \(eMVP\): "Re: Device manager / control Panal without graphical interface"
- Previous message: Sean Gahan: "Re: Remote control of device"
- In reply to: Sean Gahan: "Re: Remote control of device"
- Next in thread: Colin Parker: "Re: Remote control of device"
- Reply: Colin Parker: "Re: Remote control of device"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 29 Apr 2004 13:10:00 -0700
Or prepare an RDP file and launch it with mstsc.exe.
See here for many RDP File settings: http://dev.remotenetworktechnology.com/ts/rdpfile.htm
Here you will find TS/RD Script library: http://dev.remotenetworktechnology.com/wsh/lib/tslib.htm (of course, this all could be done
in C++).
--
KM,
BSquare Corporation
> Colin,
> You will want to address any HotFixes for RDP.
> Install the RDP client on your development machine then you can add the
> "Microsoft RDP Client Control (redist)" com to your project (and also add it
> to your form). This is a snip from VB.NET; in this example I called the com
> "AxMsRdpClient22"
> On your embedded device you will have to specify a user account and add
> permissions for remote access. That's it
>
>
> Private Sub openTS()
> Try
> AxMsRdpClient22.AdvancedSettings3.EnableAutoReconnect = True
> AxMsRdpClient22.Width = 1024
> AxMsRdpClient22.Height = 768
> AxMsRdpClient22.ColorDepth = 24
> AxMsRdpClient22.AdvancedSettings2.DisableCtrlAltDel = True
> AxMsRdpClient22.FullScreen = True
> AxMsRdpClient22.FullScreenTitle = "Some Title"
> AxMsRdpClient22.Server = "Your Embedded Device Computer Name or
> IP Address"
> AxMsRdpClient22.UserName = "User Name"
> AxMsRdpClient22.AdvancedSettings2.ClearTextPassword = "Pass
> Word"
> AxMsRdpClient22.Connect()
> Catch
> End Try
> End Sub
>
>
> Good luck,
>
> Sean Gahan
>
>
> "Colin Parker" <anonymous@discussions.microsoft.com> wrote in message
> news:C87DDBB7-703B-4EFD-96D8-5194356836AA@microsoft.com...
> > OK, you convinced me, I'll use RDP. Any pointers on what to do after I've
> added the Remote Desktop component (Hotfix Q828665). Do I specify username
> and password in Target Designer? Where can I go for help on writing a
> > client application to automate the connection to the embedded device (I
> use VC++).
>
>
- Next message: Slobodan Brcin \(eMVP\): "Re: Device manager / control Panal without graphical interface"
- Previous message: Sean Gahan: "Re: Remote control of device"
- In reply to: Sean Gahan: "Re: Remote control of device"
- Next in thread: Colin Parker: "Re: Remote control of device"
- Reply: Colin Parker: "Re: Remote control of device"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|
|