forked from jaysonragasa/MultiRDPClient.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutWindow.cs
More file actions
63 lines (51 loc) · 1.98 KB
/
AboutWindow.cs
File metadata and controls
63 lines (51 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace MultiRemoteDesktopClient
{
public partial class AboutWindow : Form
{
public AboutWindow()
{
InitializeComponent();
richTextBox1.Text = @"
Remote Network Technology
http://dev.remotenetworktechnology.com/ts/rdpfile.htm
- Thanks for sharing the knowledge about how the RDP setting keys works.
Terminal Services Team Blog
http://blogs.msdn.com/ts/archive/2008/09/02/specifying-the-ts-client-start-location-on-the-virtual-desktop.aspx
- Thanks for ""winposstr"" explanation
Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication
http://msdn.microsoft.com/en-us/library/aa302402.aspx#secnetht07_topic4
- Thanks for the DataProtection class! works great for RDP Password.
- Modified it a bit to support passing a description in CryptProtectData and UncryptProtectData.
Remko Weijnen
http://www.remkoweijnen.nl/blog/2007/10/18/how-rdp-passwords-are-encrypted/#comment-900
- Thanks for the ""psw"" idea!
Symmetric key encryption and decryption using Rijndael algorithm
http://www.obviex.com/samples/Encryption.aspx
- Thanks for that algorithm!
TreeListView
http://www.codeproject.com/KB/tree/TreeWithColumns.aspx
- Thanks for that control! I loved it so much
Crownwood Magic Library
http://www.codeproject.com/KB/tabs/magictabcontrol.aspx
- Thanks for the Custom Tab Control
TabStrip Control
http://www.codeproject.com/KB/tabs/tabstrips.aspx
- Thanks for the Horizontal Tab Control. Though I haven't implemented yet due to some bug from that control.
And thanks to all those who shared their ideas.
NOTE:
Modification and Implementation are all done by Me to produce the expected result.
Multi Remote Desktop Client .NET
Is licensed under: Microsoft Public License (Ms-PL)
http://www.microsoft.com/opensource/licenses.mspx
";
}
}
}