谁知道<i class=&quot什么意思;mr-5&quot什么意思;>?</i>医院周六日上班吗?</div>

Multi RDP Client .NET - CodeProject
Sign in using
189.6K views16.4K downloads367 bookmarked
&4.95 (83 votes)
4.95/5 - 83 votes6 removedμ 4.72, σa 1.39 []
Rate this:
Introduction
Multi RDP Client .NET (formerly known as Multi Remote Desktop Client .NET) comes on handy when managing your RDP connections. A simple and friendly user interface for you to work and navigate easily through tabbed RDP remote window. Allows you to Import/Export .RDP files, Disconnect all connection at one click and Connect all your servers at one click as well. You can also change the resolution while working, set the window into fullscreen mode,&and as well as enable window stretching and a lot more features!&
&.&&.&&.&&.&&.&&
Background
Thanks to AxInterop.MSTSCLib (mstscax.dll) an ActiveX COM Component which you can use to connect on &Remote Desktop. So, I made a GUI for it for you to connect on your servers via terminal service on multiple window view in one application. How to use MSTSCAX.DLL?&
You must have the ActiveX file in your system called &mstscax.dll&.
if not, then you can Google for the file and download it, then make sure you registered it using &RegSvr32 &. I think that's one of the IIS package if you installed the Remote Desktop Web Connection.
On the UI Design mode in VS2005 or 8.
go to your toolbox and Open Choose Toolbox Items and look for Microsoft RDP Client Control in COM Components tab.
I'm guessing you successfully added that control in your toolbar. So I don't think I have to explain how to get that in your Form.&
&.&&.&&.&&.&&.&&
Screenshots&
Server list views
Server panel which lists the RDP servers in group name view. It can also be shown in different views such as: Tree, Small lists, and Large lists.
Collapse/Expand
Server panel can also be resize its width, expand, and collapse so you can have more space for you RDP window.
Group Manager
A Group manager can be used to manage the type of servers.
Import RDP File
One main feature of MRDC.NET is you can import the RDP files created on default Remote Desktop Connection Windows client
Export RDP File
You can also export the RDP files to .RDP format.
Configuration
Configuration window. Here you can setup your startup password and UI display
&.&&.&&.&&.&&.&&
Command Line Parameters - requested by: Simon Capewell
/sname &server name&
Can open a new client window by providing a Server Name
/gname &group name&&
Can open a multiple client window by specifying the Group Name&
Add, Edit, Delete Servers&
Those words say it all.&
Server Settings Window
the Server Settings window has&the following:&
General Tab&
Server Name
You can give your connection name
The host address or IP address
Custom Port - requested by: Simon Capewell
Allowing the RDP to connect to different port.
Your RD server Username
Your RD server Password&
Description
Your Server description
You can choose the group of your Server. You can also open Group Manager from there
Display Tab
Desktop Sizes - some resolutions were requested by: Simon Capewell
640 x 480&
1024 x 768&
1120 x 700
1152 x 864
1280 x 800
1280 x 1024
Custom Desktop Height and Width&
Fullscreen&
True Color (24 bit)
High Color (16 bit)
High Color (15 bit)
256 Colors&
Configuration Window&
General Tab&
Your Startup Password&
Display&Tab&
Hide when Minimize
If Enabled, the window hides and it self and you bring it up anytime by double clicking on notification icon in system tray.
If Disabled, the window just minimized and accessible in taskbar.
Notification Window&
If Enabled, Notification window pops up everytime you hover into some controls.
if Disabled, You know what that means ..
Import/Export
Import from RDP file format
You can import your current RDP files
Note: Currently, the password made by MSTSC cannot be decrypted. I Still have to work on this
Export to RDP file format
You can export the servers in RDP file format&
Group Manager - requested by: Simon Capewell
Manages the server groups
I implemented SQLite3 - ADO.NET instead of working with XML and can be very time-consuming.&
Notification Icon&
This icon sits on your system tray area and you can right click on it to show the context menu or double click to bring up the window when minimized or hidden.
The context menu items contains:&
Servers - And under it contains the Groups and the Servers
Disconnect All&
Configuration&
Lock Application&
For safety purposes, a Lock feature is added to lock the current application and the Password Window will show up after locking the application.
Startup Password - requested by: shmulyeng
For safety purposes, a Password feature is added before opening the application.
After entering 3 invalid passwords, CAPTCHA verification will show up in Password Window
Server Lists Panel
You can change the views in Server Lists panel in Detailed, Tiled, and Tree
Context Menu in Server Lists Panel - requested by: Simon Capewell and shmulyeng
Context Menu will popup after right clicking on the items and you can Add, Edit, Delete, and Group Connect.
Collapse/Expand Server Lists Panel - requested by: Simon Capewell
You can collapse or expand the server lists panel.
Groups - requested by: Simon Capewell
Servers are arranged by Groups
Different Views - requested by: Simon Capewell
You can set the Server lists view by Detailed, Tiled, and Tree
MDI Tabs - requested by: shmulyeng&
Of course, Tabs can be very helpfull when selecting client windows
Disconnect All&
Disconnects all connected RD clients.
Client Window&&
Connect, Disconnect, and Reconnect: This Connects, Disconnects, or Reconnects your RD connection.
Fullscreen: Sets the RD connection to Fullscreen. It can also ask you to resize the Resolution based on your Desktop Resolution&
Fit To Window: The RD resolution can change based on the RD client window
Fit to Window&
Settings: Opens the server settings&
Info Popup Window
This window automatically popups when hovered on the control showing a description of what the control can do.&
I do give a lot of credits to the People who shared their Ideas, Custom Control, and Codes.
Credits can be found in my About Window
&.&&.&&.&&.&&.&&
Code Snippets&
A simple example code &on RDP connection to remote desktop.&
Well the basic code you need to know for you to connect on your server is this&
rdpClient.Server = "sever name here";
rdpClient.UserName = "your username on remote pc";
rdpClient.AdvancedSettings2.ClearTextPassword = "you password on remote pc";
rdpClient.ColorDepth = 16; rdpClient.DesktopWidth = 1024; rdpClient.DesktopHeight = 768; rdpClient.FullScreen = true| rdpClient.Connect();
The code above is the&simplest&way of using the component&
Setting full screen in runtime is fairly simple&
rdpClient.Fullscreen = true;
rdpClient.AdvanceSettings3.SmartSizing = true;
Points of interest about connection and disconnection
I implemented a Reconnect feature. But its not easy as calling Disconnect() and Connect().
You should wait until it properly disconnected and call Connect().&
In AxMsRdpClient, there is a Connect property which acts as a Connection Status:&
1 = Connected&
0 = Disconnected&
Now reconnecting can be done by doing this:
rdpClient.Disconnect();
while (rdpClient.Connected != 0)
System.Threading.Thread.Sleep(1000);
Application.DoEvents();
You can always implement your own way of reconnecting, the code above is just the very basic, I do not recommend you to use that.&
Here's my RDPFile Reader class&
using System.Collections.G
using System.T
using System.Text.RegularE
using System.IO;
namespace RDPFileReader
public class RDPFile
#region enum
public enum KeyboardHooks
ON_THE_LOCAL_COMPUTER = 0,
ON_THE_REMOTE_COMPUTER = 1,
IN_FULL_SCREEN_MODE_ONLY = 2
public enum AudioModes
BRING_TO_THIS_COMPUTER = 0,
DO_NOT_PLAY = 1,
LeAVE_AT_REMOTE_COMOPUTER = 2
public enum WindowState : int
NORMAL = 1,
MAXMIZE = 3
public enum SessionBPPs
BPP_8 = 8,
BPP_15 = 15,
BPP_16 = 16,
BPP_24 = 24
#endregion
#region structs
public struct RECT
public int T
public int L
public int W
public int H
public struct WindowsPosition
public WindowState WinS
public RECT R
#endregion
#region variables
private string _filename = string.E
#region RDP template
string[] _rdpTemplate = {
"screen mode id:i:{0}",
"desktopwidth:i:{1}",
"desktopheight:i:{2}",
"session bpp:i:{3}",
"winposstr:s:0,{4},{5},{6},{7},{8}",
"full address:s:{9}",
"compression:i:{10}",
"keyboardhook:i:{11}",
"audiomode:i:{12}",
"redirectdrives:i:{13}",
"redirectprinters:i:{14}",
"redirectcomports:i:{15}",
"redirectsmartcards:i:{16}",
"displayconnectionbar:i:{17}",
"autoreconnection enabled:i:{18}",
"username:s:{19}",
"domain:s:{20}",
"alternate shell:s:{21}",
"shell working directory:s:{22}",
"password 51:b:{23}",
"disable wallpaper:i:{24}",
"disable full window drag:i:{25}",
"disable menu anims:i:{26}",
"disable themes:i:{27}",
"disable cursor setting:i:{28}",
"bitmapcachepersistenable:i:{29}"
#endregion
#region member fields
int _screenMode = 0;
int _desktopWidth = 0;
int _desktopHeight = 0;
SessionBPPs _sessionBPP = 0;
WindowsPosition _winPosS
string _fullAddress = string.E
int _compression = 0;
KeyboardHooks _keyboardHook = 0;
AudioModes _audiomode = 0;
int _redirectDrives = 0;
int _redirectPrinters = 0;
int _redirectComPorts = 0;
int _redirectSmartCards = 0;
int _displayConnectionBar = 0;
int _autoReconnectionEnabled = 0;
string _username = string.E
string _domain = string.E
string _alternateShell = string.E
string _shellWorkingDirectory = string.E
string _password = string.E
int _disableWallpaper = 0;
int _disableFullWindowDrag = 0;
int _disableMenuAnims = 0;
int _disableThemes = 0;
int _disableCursorSettings = 0;
int _bitmapCachePersistEnable = 0;
#endregion
#endregion
#region properties
public int ScreenMode
return this._screenM
this._screenMode = value;
public int DesktopWidth
return this._desktopW
this._desktopWidth = value;
public int DesktopHeight
return this._desktopH
this._desktopHeight = value;
public SessionBPPs SessionBPP
return this._sessionBPP;
this._sessionBPP = value;
public WindowsPosition WinPosStr
return this._winPosS
this._winPosStr = value;
public string FullAddress
return this._fullA
this._fullAddress = value;
public int Compression
return this._
this._compression = value;
public KeyboardHooks KeyboardHook
return this._keyboardH
this._keyboardHook = value;
public AudioModes AudioMode
return this._
this._audiomode = value;
public int RedirectDrives
return this._redirectD
this._redirectDrives = value;
public int RedirectPrinters
return this._redirectP
this._redirectPrinters = value;
public int RedirectComPorts
return this._redirectComP
this._redirectComPorts = value;
public int RedirectSmartCards
return this._redirectSmartC
this._redirectSmartCards = value;
public int DisplayConnectionBar
return this._displayConnectionB
this._displayConnectionBar = value;
public int AutoReconnectionEnabled
return this._autoReconnectionE
this._autoReconnectionEnabled = value;
public string Username
return this._
this._username = value;
public string Domain
return this._
this._domain = value;
public string AlternateShell
return this._alternateS
this._alternateShell = value;
public string ShellWorkingDirectory
return this._shellWorkingD
this._shellWorkingDirectory = value;
public string Password
return this._
this._password = value;
public int DisableWallpaper
return this._disableW
this._disableWallpaper = value;
public int DisableFullWindowDrag
return this._disableFullWindowD
this._disableFullWindowDrag = value;
public int DisableMenuAnims
return this._disableMenuA
this._disableMenuAnims = value;
public int DisableThemes
return this._disableT
this._disableThemes = value;
public int DisableCursorSettings
return this._disableCursorS
this._displayConnectionBar = value;
public int BitmapCachePersistEnable
return this._bitmapCachePersistE
this._bitmapCachePersistEnable = value;
#endregion
#region methods
public void Read(string filepath)
this._filename =
string data = string.E
using (StreamReader reader = new StreamReader(filepath))
data = reader.ReadToEnd();
string[] settings = data.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
foreach (string thisSetting in settings)
string regex = "(?&type&.*)\\:(?&dtype&\\w)\\:(?&value&.*)";
RegexOptions options =
((RegexOptions.IgnorePatternWhitespace |
RegexOptions.Multiline) | RegexOptions.IgnoreCase);
Regex reg = new Regex(regex, options);
if (reg.IsMatch(thisSetting))
Match m = reg.Match(thisSetting);
string v = m.Groups["value"].V
switch (m.Groups["type"].Value)
case "screen mode id":
this._screenMode = int.Parse(v);
case "desktopwidth":
this._desktopWidth = int.Parse(v);
case "desktopheight":
this._desktopHeight = int.Parse(v);
case "session bpp":
this._sessionBPP = (SessionBPPs)int.Parse(v);
case "winposstr":
string[] vals = v.Split(',');
this._winPosStr.WinState = (WindowState)int.Parse(vals[1]);
this._winPosStr.Rect.Top = int.Parse(vals[2]);
this._winPosStr.Rect.Left = int.Parse(vals[3]);
this._winPosStr.Rect.Width = int.Parse(vals[4]);
this._winPosStr.Rect.Height = int.Parse(vals[5]);
case "full address":
this._fullAddress =
case "compression":
this._compression = int.Parse(v);
case "keyboardhook":
this._keyboardHook = (KeyboardHooks)int.Parse(v);
case "audiomode":
this._audiomode = (AudioModes)int.Parse(v);
case "redirectdrives":
this._redirectDrives = int.Parse(v);
case "redirectprinters":
this._redirectPrinters = int.Parse(v);
case "redirectcomports":
this._redirectComPorts = int.Parse(v);
case "redirectsmartcards":
this._redirectSmartCards = int.Parse(v);
case "displayconnectionbar":
this._displayConnectionBar = int.Parse(v);
case "autoreconnection enabled":
this._autoReconnectionEnabled = int.Parse(v);
case "username":
this._username =
case "domain":
this._domain =
case "alternate shell":
this._alternateShell =
case "shell working directory":
this._shellWorkingDirectory =
case "password 51":
this._password =
case "disable wallpaper":
this._disableWallpaper = int.Parse(v);
case "disable full window drag":
this._disableFullWindowDrag = int.Parse(v);
case "disable menu anims":
this._disableMenuAnims = int.Parse(v);
case "disable themes":
this._disableThemes = int.Parse(v);
case "disable cursor setting":
this._disableCursorSettings = int.Parse(v);
case "bitmapcachepersistenable":
this._bitmapCachePersistEnable = int.Parse(v);
public void Update()
Save(this._filename);
public void Save(string filepath)
this._filename =
string template = string.E
foreach (string temp in this._rdpTemplate)
template += temp + "\r\n";
string data = string.Format(template,
this._screenMode,
this._desktopWidth,
this._desktopHeight,
(int)this._sessionBPP,
(int)this._winPosStr.WinState, this._winPosStr.Rect.Top,
this._winPosStr.Rect.Left, this._winPosStr.Rect.Width, this._winPosStr.Rect.Height,
this._fullAddress,
this._compression,
(int)this._keyboardHook,
(int)this._audiomode,
this._redirectDrives,
this._redirectPrinters,
this._redirectComPorts,
this._redirectSmartCards,
this._displayConnectionBar,
this._autoReconnectionEnabled,
this._username,
this._domain,
this._alternateShell,
this._shellWorkingDirectory,
this._password,
this._disableWallpaper,
this._disableFullWindowDrag,
this._disableMenuAnims,
this._disableThemes,
this._disableCursorSettings,
this._bitmapCachePersistEnable
using (StreamWriter writer = new StreamWriter(filepath))
writer.Write(data);
#endregion
We also have DataProtection class which was provided by Microsoft and a little bit of modification and some methods to implement such as converting Byte[] & to & Hex blob. We could create a MSTSC valid password.&
Reference:&
Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication&
Implementing CryptProtectData and CryptUnprotectData from Crypt32.DLL&
Remko Weijnen - &psw& descriptor on CryptProtectData&
Now I have created a wrapper called DataProtectionForRDPWrapper to easily Encrypt and Decrypt RDP password CREATED in DataProtection class. Why did I emphasize the &created& word. Some limitation on DataProtection class is, we can't decrypt the password created by MSTSC and still under research.&
DataProtectionForRDPWrapper class&&
using System.Collections.G
using System.T
namespace DataProtection
public class DataProtectionForRDPWrapper
static DataProtection.DataProtector dp = new DataProtector(DataProtector.Store.USE_USER_STORE);
public static string Encrypt(string text_password)
byte[] e = dp.Encrypt(GetBytes(text_password), null, "psw");
return GetHex(e);
public static string Decrypt(string enc_password)
byte[] b = ToByteArray(enc_password);
byte[] d = dp.Decrypt(b, null, "psw");
return GetString(d);
static byte[] GetBytes(string text)
return UnicodeEncoding.Unicode.GetBytes(text);
static string GetString(byte[] byt)
System.Text.Encoding enc = System.Text.Encoding.U
return enc.GetString(byt);
static string GetHex(byte[] byt_text)
string ret = string.E
for (int i = 0; i & byt_text.L i++)
ret += Convert.ToString(byt_text[i], 16).PadLeft(2, '0').ToUpper();
static byte[] ToByteArray(String HexString)
int NumberChars = HexString.L
byte[] bytes = new byte[NumberChars / 2];
for (int i = 0; i & NumberC i += 2)
bytes[i / 2] = Convert.ToByte(HexString.Substring(i, 2), 16);
catch (Exception ex)
throw new Exception("Problem converting Hex to Bytes", ex);
Using RDPFile reader&
RDPFile rdp = new RDPFile();
rdp.ScreenMode = 1;
rdp.DesktopWidth = 1024;
rdp.DesktopHeight = 768;
rdp.SessionBPP = SessionBPPs.BPP_16
RDPFile.WindowsPosition winpos = new RDPFile.WindowsPosition();
RDPFile.RECT r = new RDPFile.RECT()
Width = ss.DesktopW
Height = ss.DesktopH
winpos.Rect =
winpos.WinState = RDPFile.WindowState.MAXMIZE;
rdp.WinPosStr = rdp.FullAddress = "192.168.1.1" pression = 1;
rdp.KeyboardHook = RDPFile.KeyboardHooks.ON_THE_REMOTE_COMPUTER;
rdp.AudioMode = RDPFile.AudioModes.BRING_TO_THIS_COMPUTER;
rdp.RedirectDrives = 0; rdp.RedirectPrinters = 0; rdp.RedirectComPorts = 0; rdp.RedirectSmartCards = 0; rdp.DisplayConnectionBar = 1; rdp.AutoReconnectionEnabled = 1; rdp.Username = "Admin"; rdp.Domain = "DomainName"; rdp.AlternateShell = string.E rdp.ShellWorkingDirectory = string.E
rdp.Password = (ss.Password == string.Empty ? string.Empty : DataProtectionForRDPWrapper.Encrypt(ss.Password));
rdp.DisableWallpaper = 1; rdp.DisableFullWindowDrag = 1; rdp.DisableMenuAnims = 1; rdp.DisableThemes = 1; rdp.DisableCursorSettings = 1; rdp.BitmapCachePersistEnable = 1;
#region try exporting the file
rdp.Save(@"D:\My Documents\MyRDPConnection.RDP");
catch (Exception ex)
MessageBox.Show("An error occured while saving the configuration for '" +
rdp.FullAddress + "'.\r\n\r\nError Message: " + ex.Message,
this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
System.Diagnostics.Debug.WriteLine(ex.Message + "\r\n" + ex.StackTrace);
#endregion
Reading .RDP files&
string thisFile = @"D:\My Documents\MyRDPConnection.RDP";
#region Read RDP File
rdpfile = new RDPFile();
rdpfile.Read(thisFile);
catch (Exception ex)
MessageBox.Show("An error occured while reading '" +
Path.GetFileName(thisFile) + "' and it will be skipped.\r\n\r\nError Message: " +
ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
System.Diagnostics.Debug.WriteLine(ex.Message + "\r\n" + ex.StackTrace);
#endregion
Console.Writeline("RDP Username: " + rdpfile.Username);
#region Try decrypting the password from RDP file
System.Diagnostics.Debug.WriteLine("reading password " + thisFile);
Console.Writeline("RDP Password: " + DataProtectionForRDPWrapper.Decrypt(rdpfile.Password));
System.Diagnostics.Debug.WriteLine("reading password done");
catch (Exception Ex)
ss.Password = string.E
if (Ex.Message == "Problem converting Hex to Bytes")
MessageBox.Show("This RDP File '" +
Path.GetFileNameWithoutExtension(thisFile) +
"' contains a secured password which is currently unsported by this " +
"application.\r\nThe importing can still continue but without the password.\r\nYou " +
"can edit the password later by selecting a server in 'All Listed Servers' " +
"and click 'Edit Settings' button on the toolbar",
this.Text,
MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
else if (Ex.Message.Contains("Exception decrypting"))
MessageBox.Show("Failed to decrypt the password from '" +
Path.GetFileNameWithoutExtension(thisFile) + "'",
this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("An unknown error occured while decrypting the password from '" +
Path.GetFileNameWithoutExtension(thisFile) + "'",
this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
#endregion
Console.Writeline("RDP Desktop Width: " + rdpfile.DesktopWidth);
Console.Writeline("RDP Desktop Height: " + rdpfile.DesktopHeight);
Updating an .RDP file
RDPFileReader.RDPFile rdp = new RDPFileReader.RDPFile();
rdp.Read(@"D:\My Documents\RDP\Application Server (bitc).rdp");
Console.WriteLine(rdp.WinPosStr.WinState);
RDPFileReader.RDP.WindowsPosition wpos = new RDPFileReader.RDP.WindowsPosition()
Rect = rdp.WinPosStr.R
WinState = RDPFileReader.RDP.WindowState.MAXMIZE; };
rdp.WinPosStr =
rdp.SessionBPP = RDPFileReader.RDP.SessionBPPs.BPP_8;
rdp.Update();
&.&&.&&.&&.&&.&&
Release History
June 24, 2015
- Uploaded the code in GitHub
---- Solution updated to Visual Studio 2013
---- Using latest version of SQLite (NuGet)
Full Release - April 11, 2009
- Added Hide/Show settings for Information popup window
- Fixed Server Lists collapse bug when no MDI Child
- Fixed LiveInfoWindow from stealing the focus.
- Fixed database exception in Import Window.
- Group Manager window, redesigned to fit on MRDC.NET layout.
- Updated database schema.
---- Groups table uid is set to auto-increment.
Full Release - April 4, 2009 UPDATE:
- Fixed error when no password is set
- Fixed database scheme
- MSTSC Generated password can now be decrypted!
- Fixed domain name, not saving
Full Release / April 3
- Fixed stupid RDP Control Focus issue
Full Release / April 2
NEW: - From the requests of Simon Capewell and shmulyeng - Simon Capewell Requests:
--- DONE(4)1. Allow connection to servers on a specific port using AdvancedSettings2.RDPPort
--- DONE(6)2. More screen resolutions on the slider - most obviously
--- DONE(1)3. Context menu on the list of servers.
--- DONE(4)4. Options for different icon sizes for the list of servers.
--- DONE(8)5. Groupings for servers - handy if you have lots of clients
each of whom have multiple servers. You could launch sessions for all the items in the group.
--- DONE(1)6. Auto hide or view menu option to show/hide the sidebar (similar to Visual Studio).
--- DONE(0)7. Clicking Delete Server or Edit Settings when there are no servers throws an exception.
--- Here's another one that's just occurred. I use Launchy to index a directory with a load of .rdp files in it,
which means I can just type Ctrl+space then a portion of the server name and launch it. To do that with this tool it'd need to:
--- DONE(9)1. Be able to launch a connection from the built in server list from the command line.
--- DONE(9)2. Have a command line switch to open the connection in an existing instance of the app.
--- DONE(9)3. Perhaps even be able to launch connections from the command line
using rdp files rather than the built in server list.
- shmulyeng requests:
--- DONE(2)Ability to password protect the server list.
--- DONE(1)Ability to right click on a connection item in the list to edit connection details.
--- (WILL TRY) Ability to log out of a connection rather than disconnect.
--- DONE(1)One thing I like about Palantir is the tabs of open connections.
- and I added some
- CAPTCHA verfication on startup password.
--- When an incorrrect password is entered 3x, CAPTCH verification panel will show up.
--- scrap XML!! :P
- The last release was pretty much stable so there's a small updates on the code and some bug fix.
Alpha Release - 6, & 7 / March 19, 2009
- Application can now run in Windows Vista.
- Fixed AX MSRDPClient reference
---- Thanks to Simon Capewell (/script/Membership/Profiles.aspx?mid=215)
-------- RemoteDesktopClient.aspx?fid=1537072&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2969383#xx2969383xx
- LiveInformationBox 1.0
--- Is a class library that pops up whenever you hover on a specified
control and shows some details about what the controls can do.
--- The information shown on information box is an xml base.
--- this is better than showing some information on a status strip :P
- ListViewEx
--- hooks some control (not just common control) to disable/enable if
listview has no item or when a selectio is made on listview items.
--- good for automating controls instead of doing tons of lines just to disable/enable different controls.
- Am using SQLite3 now instead of XML! :P
---- it's taking too much time to maintain :P
- Finally it's working on both OS, thanks to that AxImp and thanks to @unruledboy
- LiveInformationBox
-- now supports toolbar buttons
- Server Lists
-- now collapsable
-- can change icon views
-- context menu
- For RDP client window
-- on main form, now contains tab
- Settings window
-- added more resolution
- ListViewEx for Server Lists
-- control hooks so it can be easily Enable/Disable the controls when something's changed on the listview
- crashes when clicking Edit Settings and Delete when no items on the Server Lists
-- fixes the locking issue on rdp control when lossing its focus - Settings window
-- Connection Port
- LiveInformationBox
---- fixed the UI
---- still having some problem on window focus.
Alpha Release - 5 / March 17, 2009
- Import / Export RDP file format
- Can delete selected server in "All Server List" panel.
- Added new About Window
- Fixed and Improved Fit To Window feature
- Fixed Saving, Importing, and Exporting password handling.
Alpha Release - 2, 3, & 4 / March 7, 2009
- ServerList reader moved to a separate Class Library
---- Custom Exception Handler
- TextboxRequiredWrapper moved to a separate Class Library
- Fixed updating settings bug! MARCH 8 - ServerSettingsWindow
---- added new button("Get client window size"): Set the Desktop Width
and Height size base on rdp client window size.
- Fixed Icon status on Server List if multiple windows are openned.
---- not sure why I didn't noticed that.
- RDP File Reader
- Used to Read/Create/Update RDP Files
- DataProtection
- Used to Encrypt/Decrypt RDP Passwords and create valid RDP Passwords.
- Added new button on main toolbar called "Disconnect All"
---- which disconnects all connected rdp client.
- saving a value on "dummy" attribute is now MD5 string
- duplicate check while creating a New or Updating a Connection Settings.
- Updated xml configuration template
---- added UID element
---- dummy and uid values are now DateTime(MMddyyhhmmss) format
- Password is now encrypted using Rijndael Encryption/Decryption
MARCH 8 - Current configuration on RDP Client Window now updates
- Server list now update after settings are changed on RDP Client Window MARCH 8
- Settings can be applied on Server Lists or in Rdp Client Window.
Alpha Release - 1 / March 6, 2009
First release a
&.&&.&&.&&.&&.&&
I hope you were able to learn and I hope I was able to help you with your RDP programming and implementation.&
This article, along with any associated source code and files, is licensed under
Philippines
I am an experienced Applications Developer and had worked professionally for over 6 years. I have been writing codes and building different applications for over 13+ years. My work is mostly for Microsoft technologies such as .NET. Yes I am Microsoft technology enthusiast.
My field of expertise in .NET technology are Desktop and Windows Mobile and Windows Phone. I occasionally write ASP.NET too for clients.
I have wide experience of different programming languages and scripts such as: Turbo Pascal, Batch Scripts, C/C++, Visual Basic Classic, Visual Basic .NET, Java, HTML, CSS, ASP Classic, VB Script, ASP.NET, T-SQL, MySQL, PHP, C#, Javascript, jQuery, HTML5, RegEx, XAML, XML, JSON, and XPath
I am also experienced in different platforms such as: Google Data API, Google Map API, Twitter API, Facebook API, Flickr API, Skydrive API, SVN, GitHub, Drupal, and Orchard.
I am interested in Microsoft technologies, User Experience and User Interfaces, Algorithms, Robotics, Astronomy, Architecture, Electrical, Mechanics, and Extra Therestrial Life on other planets.
I am also offering free coding and application development consultations with students having a problem with their Thesis projects.
View my full Curriculum Vitae here
http://ss.jaysonragasa.net/?mycv
Comments and Discussions
General &&
Suggestion &&
Question &&
Admin && Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
Last Updated 24 Sep 2012
Article Copyright 2012 by Jayson RagasaEverything else
Copyright & ,

我要回帖

更多关于 quot是什么意思 的文章

 

随机推荐