diff --git a/mRemoteV1/ChangeLog.txt b/mRemoteV1/ChangeLog.txt index 30e8ce9e..915ca1e0 100644 --- a/mRemoteV1/ChangeLog.txt +++ b/mRemoteV1/ChangeLog.txt @@ -1,4 +1,10 @@ -1.60: +1.61: + Rearranged the Options page and added an Updates tab + Added option to change how often updates are checked + Open Updates options tab before connecting for the first time + No longer show About page on first run + +1.60: Changed name to mRemoteNG Fixed menu bar not staying docked to left side Removed snakes game Easter egg diff --git a/mRemoteV1/Forms/frmMain.vb b/mRemoteV1/Forms/frmMain.vb index 57f8784b..45629cc0 100644 --- a/mRemoteV1/Forms/frmMain.vb +++ b/mRemoteV1/Forms/frmMain.vb @@ -44,14 +44,18 @@ Public Class frmMain 'LoadCredentials() LoadConnections() - If My.Settings.FirstStart Then - Windows.Show(UI.Window.Type.About) - End If + 'If My.Settings.FirstStart Then + ' Windows.Show(UI.Window.Type.About) + 'End If If My.Settings.StartupComponentsCheck Then Windows.Show(UI.Window.Type.ComponentsCheck) End If + If Not My.Settings.CheckForUpdatesAsked Then + ' TODO: Show updates options + End If + Startup.UpdateCheck() Startup.AnnouncementCheck() Startup.CreateSQLUpdateHandlerAndStartTimer() diff --git a/mRemoteV1/Language/Language.EN.vb b/mRemoteV1/Language/Language.EN.vb index a493d8c1..31aa8925 100644 --- a/mRemoteV1/Language/Language.EN.vb +++ b/mRemoteV1/Language/Language.EN.vb @@ -226,8 +226,8 @@ Public Const MaxPuttyWaitTime As String = "Max. PuTTY && Integrated Ext. Apps wait time" Public Const AutomaticallyTryToReconnect As String = "Automatically try to reconnect when disconnected from server (RDP && ICA only)" Public Const Address As String = "Address" - Public Const UseAuthentication As String = "Use Authentication" - Public Const UseProxyForAutomaticUpdates As String = "Use Proxy for automatic updates" + Public Const UseAuthentication As String = "This proxy server requires authentication" + Public Const UseProxyForAutomaticUpdates As String = "Use a proxy server to connect" Public Const ToConfigurePuttySessions As String = "To configure PuTTY sessions click this button:" Public Const LaunchPutty As String = "Launch PuTTY" Public Const UseCustomPuttyPath As String = "Use custom PuTTY path:" @@ -236,7 +236,7 @@ Public Const StartupExit As String = "Startup/Exit" Public Const AllowOnlySingleInstance As String = "Allow only a single instance of the application (mRemoteNG restart required)" Public Const ReconnectAtStartup As String = "Reconnect to previously opened sessions on startup" - Public Const CheckForUpdatesOnStartup As String = "Check for updates on startup" + Public Const CheckForUpdatesOnStartup As String = "Check for updates and announcements" Public Const ConfirmExit As String = "Confirm exit if there are open connections" Public Const SaveConsOnExit As String = "Save connections on exit" Public Const MinimizeToSysTray As String = "Minimize to System Tray" diff --git a/mRemoteV1/My Project/AssemblyInfo.vb b/mRemoteV1/My Project/AssemblyInfo.vb index d3db087d..4f4fc567 100644 --- a/mRemoteV1/My Project/AssemblyInfo.vb +++ b/mRemoteV1/My Project/AssemblyInfo.vb @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ' by using the '*' as shown below: ' - - + + diff --git a/mRemoteV1/My Project/Settings.Designer.vb b/mRemoteV1/My Project/Settings.Designer.vb index ef3532ac..0aa1986f 100644 --- a/mRemoteV1/My Project/Settings.Designer.vb +++ b/mRemoteV1/My Project/Settings.Designer.vb @@ -252,7 +252,7 @@ Namespace My _ + Global.System.Configuration.DefaultSettingValueAttribute("False")> _ Public Property CheckForUpdatesOnStartup() As Boolean Get Return CType(Me("CheckForUpdatesOnStartup"),Boolean) @@ -1926,6 +1926,30 @@ Namespace My Me("LastAnnouncement") = value End Set End Property + + _ + Public Property CheckForUpdatesAsked() As Boolean + Get + Return CType(Me("CheckForUpdatesAsked"),Boolean) + End Get + Set + Me("CheckForUpdatesAsked") = value + End Set + End Property + + _ + Public Property CheckForUpdatesFrequencyDays() As Integer + Get + Return CType(Me("CheckForUpdatesFrequencyDays"),Integer) + End Get + Set + Me("CheckForUpdatesFrequencyDays") = value + End Set + End Property End Class End Namespace diff --git a/mRemoteV1/My Project/Settings.settings b/mRemoteV1/My Project/Settings.settings index b62a3c66..4d5d35ce 100644 --- a/mRemoteV1/My Project/Settings.settings +++ b/mRemoteV1/My Project/Settings.settings @@ -48,7 +48,7 @@ False - True + False False @@ -434,5 +434,11 @@ + + False + + + 7 + \ No newline at end of file diff --git a/mRemoteV1/UI/UI.Window.Options.vb b/mRemoteV1/UI/UI.Window.Options.vb index b054d8ef..3cea2d56 100644 --- a/mRemoteV1/UI/UI.Window.Options.vb +++ b/mRemoteV1/UI/UI.Window.Options.vb @@ -11,11 +11,10 @@ Namespace UI Friend WithEvents btnOK As System.Windows.Forms.Button Friend WithEvents tabConnections As Crownwood.Magic.Controls.TabPage Friend WithEvents tabTabs As Crownwood.Magic.Controls.TabPage - Friend WithEvents tabErrorsAndInfos As Crownwood.Magic.Controls.TabPage + Friend WithEvents tabUpdates As Crownwood.Magic.Controls.TabPage Friend WithEvents tabAdvanced As Crownwood.Magic.Controls.TabPage Friend WithEvents tabAppearance As Crownwood.Magic.Controls.TabPage Friend WithEvents tabStartupExit As Crownwood.Magic.Controls.TabPage - Friend WithEvents chkCheckForUpdatesOnStartup As System.Windows.Forms.CheckBox Friend WithEvents chkConfirmExit As System.Windows.Forms.CheckBox Friend WithEvents chkSaveConsOnExit As System.Windows.Forms.CheckBox Friend WithEvents chkShowSystemTrayIcon As System.Windows.Forms.CheckBox @@ -33,11 +32,6 @@ Namespace UI Friend WithEvents lblCredentialsDomain As System.Windows.Forms.Label Friend WithEvents lblCredentialsPassword As System.Windows.Forms.Label Friend WithEvents lblCredentialsUsername As System.Windows.Forms.Label - Friend WithEvents chkUseOnlyErrorsAndInfosPanel As System.Windows.Forms.CheckBox - Friend WithEvents lblSwitchToErrorsAndInfos As System.Windows.Forms.Label - Friend WithEvents chkMCErrors As System.Windows.Forms.CheckBox - Friend WithEvents chkMCWarnings As System.Windows.Forms.CheckBox - Friend WithEvents chkMCInformation As System.Windows.Forms.CheckBox Friend WithEvents chkWriteLogFile As System.Windows.Forms.CheckBox Friend WithEvents chkUseCustomPuttyPath As System.Windows.Forms.CheckBox Friend WithEvents chkAutomaticallyGetSessionInfo As System.Windows.Forms.CheckBox @@ -97,12 +91,66 @@ Namespace UI Friend WithEvents pnlAppearance As System.Windows.Forms.Panel Friend WithEvents pnlTabsAndPanels As System.Windows.Forms.Panel Friend WithEvents pnlConnections As System.Windows.Forms.Panel - Friend WithEvents pnlErrorsAndInfos As System.Windows.Forms.Panel + Friend WithEvents pnlUpdates As System.Windows.Forms.Panel Friend WithEvents pnlAdvanced As System.Windows.Forms.Panel + Friend WithEvents chkUseOnlyErrorsAndInfosPanel As System.Windows.Forms.CheckBox + Friend WithEvents lblSwitchToErrorsAndInfos As System.Windows.Forms.Label + Friend WithEvents chkMCInformation As System.Windows.Forms.CheckBox + Friend WithEvents chkMCErrors As System.Windows.Forms.CheckBox + Friend WithEvents chkMCWarnings As System.Windows.Forms.CheckBox + Friend WithEvents chkCheckForUpdatesOnStartup As System.Windows.Forms.CheckBox + Friend WithEvents cboUpdateCheckFrequency As System.Windows.Forms.ComboBox + Friend WithEvents lblUpdatesExplanation As System.Windows.Forms.Label + Friend WithEvents pnlUpdateCheck As System.Windows.Forms.Panel Friend WithEvents TabController As Crownwood.Magic.Controls.TabControl Private Sub InitializeComponent() Me.TabController = New Crownwood.Magic.Controls.TabControl + Me.tabUpdates = New Crownwood.Magic.Controls.TabPage + Me.pnlUpdates = New System.Windows.Forms.Panel + Me.lblUpdatesExplanation = New System.Windows.Forms.Label + Me.pnlUpdateCheck = New System.Windows.Forms.Panel + Me.chkCheckForUpdatesOnStartup = New System.Windows.Forms.CheckBox + Me.cboUpdateCheckFrequency = New System.Windows.Forms.ComboBox + Me.pnlProxy = New System.Windows.Forms.Panel + Me.pnlProxyBasic = New System.Windows.Forms.Panel + Me.lblProxyAddress = New System.Windows.Forms.Label + Me.txtProxyAddress = New System.Windows.Forms.TextBox + Me.lblProxyPort = New System.Windows.Forms.Label + Me.numProxyPort = New System.Windows.Forms.NumericUpDown + Me.chkUseProxyForAutomaticUpdates = New System.Windows.Forms.CheckBox + Me.chkUseProxyAuthentication = New System.Windows.Forms.CheckBox + Me.pnlProxyAuthentication = New System.Windows.Forms.Panel + Me.lblProxyUsername = New System.Windows.Forms.Label + Me.txtProxyUsername = New System.Windows.Forms.TextBox + Me.lblProxyPassword = New System.Windows.Forms.Label + Me.txtProxyPassword = New System.Windows.Forms.TextBox + Me.btnTestProxy = New System.Windows.Forms.Button + Me.tabStartupExit = New Crownwood.Magic.Controls.TabPage + Me.pnlStartup = New System.Windows.Forms.Panel + Me.chkSaveConsOnExit = New System.Windows.Forms.CheckBox + Me.chkProperInstallationOfComponentsAtStartup = New System.Windows.Forms.CheckBox + Me.chkConfirmExit = New System.Windows.Forms.CheckBox + Me.chkSingleInstance = New System.Windows.Forms.CheckBox + Me.chkReconnectOnStart = New System.Windows.Forms.CheckBox + Me.tabAppearance = New Crownwood.Magic.Controls.TabPage + Me.pnlAppearance = New System.Windows.Forms.Panel + Me.chkShowDescriptionTooltipsInTree = New System.Windows.Forms.CheckBox + Me.chkMinimizeToSystemTray = New System.Windows.Forms.CheckBox + Me.chkShowSystemTrayIcon = New System.Windows.Forms.CheckBox + Me.chkShowFullConnectionsFilePathInTitle = New System.Windows.Forms.CheckBox + Me.tabTabs = New Crownwood.Magic.Controls.TabPage + Me.pnlTabsAndPanels = New System.Windows.Forms.Panel + Me.chkUseOnlyErrorsAndInfosPanel = New System.Windows.Forms.CheckBox + Me.lblSwitchToErrorsAndInfos = New System.Windows.Forms.Label + Me.chkMCInformation = New System.Windows.Forms.CheckBox + Me.chkMCErrors = New System.Windows.Forms.CheckBox + Me.chkMCWarnings = New System.Windows.Forms.CheckBox + Me.chkOpenNewTabRightOfSelected = New System.Windows.Forms.CheckBox + Me.chkShowProtocolOnTabs = New System.Windows.Forms.CheckBox + Me.chkDoubleClickClosesTab = New System.Windows.Forms.CheckBox + Me.chkShowLogonInfoOnTabs = New System.Windows.Forms.CheckBox + Me.chkAlwaysShowPanelSelectionDlg = New System.Windows.Forms.CheckBox Me.tabConnections = New Crownwood.Magic.Controls.TabPage Me.pnlConnections = New System.Windows.Forms.Panel Me.chkSingleClickOnConnectionOpensIt = New System.Windows.Forms.CheckBox @@ -132,51 +180,9 @@ Namespace UI Me.lblSQLPassword = New System.Windows.Forms.Label Me.txtSQLServer = New System.Windows.Forms.TextBox Me.chkHostnameLikeDisplayName = New System.Windows.Forms.CheckBox - Me.tabStartupExit = New Crownwood.Magic.Controls.TabPage - Me.pnlStartup = New System.Windows.Forms.Panel - Me.chkSaveConsOnExit = New System.Windows.Forms.CheckBox - Me.chkProperInstallationOfComponentsAtStartup = New System.Windows.Forms.CheckBox - Me.chkConfirmExit = New System.Windows.Forms.CheckBox - Me.chkSingleInstance = New System.Windows.Forms.CheckBox - Me.chkCheckForUpdatesOnStartup = New System.Windows.Forms.CheckBox - Me.chkReconnectOnStart = New System.Windows.Forms.CheckBox - Me.tabAppearance = New Crownwood.Magic.Controls.TabPage - Me.pnlAppearance = New System.Windows.Forms.Panel - Me.chkShowDescriptionTooltipsInTree = New System.Windows.Forms.CheckBox - Me.chkMinimizeToSystemTray = New System.Windows.Forms.CheckBox - Me.chkShowSystemTrayIcon = New System.Windows.Forms.CheckBox - Me.chkShowFullConnectionsFilePathInTitle = New System.Windows.Forms.CheckBox - Me.tabTabs = New Crownwood.Magic.Controls.TabPage - Me.pnlTabsAndPanels = New System.Windows.Forms.Panel - Me.chkOpenNewTabRightOfSelected = New System.Windows.Forms.CheckBox - Me.chkShowProtocolOnTabs = New System.Windows.Forms.CheckBox - Me.chkDoubleClickClosesTab = New System.Windows.Forms.CheckBox - Me.chkShowLogonInfoOnTabs = New System.Windows.Forms.CheckBox - Me.chkAlwaysShowPanelSelectionDlg = New System.Windows.Forms.CheckBox - Me.tabErrorsAndInfos = New Crownwood.Magic.Controls.TabPage - Me.pnlErrorsAndInfos = New System.Windows.Forms.Panel - Me.chkUseOnlyErrorsAndInfosPanel = New System.Windows.Forms.CheckBox - Me.lblSwitchToErrorsAndInfos = New System.Windows.Forms.Label - Me.chkMCInformation = New System.Windows.Forms.CheckBox - Me.chkMCErrors = New System.Windows.Forms.CheckBox - Me.chkMCWarnings = New System.Windows.Forms.CheckBox Me.tabAdvanced = New Crownwood.Magic.Controls.TabPage Me.pnlAdvanced = New System.Windows.Forms.Panel Me.chkWriteLogFile = New System.Windows.Forms.CheckBox - Me.pnlProxy = New System.Windows.Forms.Panel - Me.pnlProxyBasic = New System.Windows.Forms.Panel - Me.lblProxyAddress = New System.Windows.Forms.Label - Me.txtProxyAddress = New System.Windows.Forms.TextBox - Me.lblProxyPort = New System.Windows.Forms.Label - Me.numProxyPort = New System.Windows.Forms.NumericUpDown - Me.chkUseProxyForAutomaticUpdates = New System.Windows.Forms.CheckBox - Me.chkUseProxyAuthentication = New System.Windows.Forms.CheckBox - Me.pnlProxyAuthentication = New System.Windows.Forms.Panel - Me.lblProxyUsername = New System.Windows.Forms.Label - Me.txtProxyUsername = New System.Windows.Forms.TextBox - Me.lblProxyPassword = New System.Windows.Forms.Label - Me.txtProxyPassword = New System.Windows.Forms.TextBox - Me.btnTestProxy = New System.Windows.Forms.Button Me.chkAutomaticallyGetSessionInfo = New System.Windows.Forms.CheckBox Me.lblXulRunnerPath = New System.Windows.Forms.Label Me.chkEncryptCompleteFile = New System.Windows.Forms.CheckBox @@ -196,26 +202,27 @@ Namespace UI Me.btnOK = New System.Windows.Forms.Button Me.btnCancel = New System.Windows.Forms.Button Me.TabController.SuspendLayout() - Me.tabConnections.SuspendLayout() - Me.pnlConnections.SuspendLayout() - Me.pnlDefaultCredentials.SuspendLayout() - Me.pnlAutoSave.SuspendLayout() - CType(Me.numAutoSave, System.ComponentModel.ISupportInitialize).BeginInit() - Me.grpExperimental.SuspendLayout() + Me.tabUpdates.SuspendLayout() + Me.pnlUpdates.SuspendLayout() + Me.pnlUpdateCheck.SuspendLayout() + Me.pnlProxy.SuspendLayout() + Me.pnlProxyBasic.SuspendLayout() + CType(Me.numProxyPort, System.ComponentModel.ISupportInitialize).BeginInit() + Me.pnlProxyAuthentication.SuspendLayout() Me.tabStartupExit.SuspendLayout() Me.pnlStartup.SuspendLayout() Me.tabAppearance.SuspendLayout() Me.pnlAppearance.SuspendLayout() Me.tabTabs.SuspendLayout() Me.pnlTabsAndPanels.SuspendLayout() - Me.tabErrorsAndInfos.SuspendLayout() - Me.pnlErrorsAndInfos.SuspendLayout() + Me.tabConnections.SuspendLayout() + Me.pnlConnections.SuspendLayout() + Me.pnlDefaultCredentials.SuspendLayout() + Me.pnlAutoSave.SuspendLayout() + CType(Me.numAutoSave, System.ComponentModel.ISupportInitialize).BeginInit() + Me.grpExperimental.SuspendLayout() Me.tabAdvanced.SuspendLayout() Me.pnlAdvanced.SuspendLayout() - Me.pnlProxy.SuspendLayout() - Me.pnlProxyBasic.SuspendLayout() - CType(Me.numProxyPort, System.ComponentModel.ISupportInitialize).BeginInit() - Me.pnlProxyAuthentication.SuspendLayout() CType(Me.numUVNCSCPort, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.numPuttyWaitTime, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() @@ -229,11 +236,510 @@ Namespace UI Me.TabController.IDEPixelArea = True Me.TabController.Location = New System.Drawing.Point(0, 0) Me.TabController.Name = "TabController" - Me.TabController.SelectedIndex = 5 - Me.TabController.SelectedTab = Me.tabAdvanced + Me.TabController.SelectedIndex = 4 + Me.TabController.SelectedTab = Me.tabUpdates Me.TabController.Size = New System.Drawing.Size(573, 522) Me.TabController.TabIndex = 10 - Me.TabController.TabPages.AddRange(New Crownwood.Magic.Controls.TabPage() {Me.tabStartupExit, Me.tabAppearance, Me.tabTabs, Me.tabConnections, Me.tabErrorsAndInfos, Me.tabAdvanced}) + Me.TabController.TabPages.AddRange(New Crownwood.Magic.Controls.TabPage() {Me.tabStartupExit, Me.tabAppearance, Me.tabTabs, Me.tabConnections, Me.tabUpdates, Me.tabAdvanced}) + ' + 'tabUpdates + ' + Me.tabUpdates.Controls.Add(Me.pnlUpdates) + Me.tabUpdates.Icon = Global.mRemote.My.Resources.Resources.Info_Icon + Me.tabUpdates.Location = New System.Drawing.Point(0, 0) + Me.tabUpdates.Name = "tabUpdates" + Me.tabUpdates.Size = New System.Drawing.Size(573, 492) + Me.tabUpdates.TabIndex = 5000 + Me.tabUpdates.Title = "Updates" + ' + 'pnlUpdates + ' + Me.pnlUpdates.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlUpdates.AutoScroll = True + Me.pnlUpdates.Controls.Add(Me.lblUpdatesExplanation) + Me.pnlUpdates.Controls.Add(Me.pnlUpdateCheck) + Me.pnlUpdates.Controls.Add(Me.pnlProxy) + Me.pnlUpdates.Location = New System.Drawing.Point(3, 3) + Me.pnlUpdates.Name = "pnlUpdates" + Me.pnlUpdates.Size = New System.Drawing.Size(567, 486) + Me.pnlUpdates.TabIndex = 51 + ' + 'lblUpdatesExplanation + ' + Me.lblUpdatesExplanation.Location = New System.Drawing.Point(16, 16) + Me.lblUpdatesExplanation.Name = "lblUpdatesExplanation" + Me.lblUpdatesExplanation.Size = New System.Drawing.Size(536, 40) + Me.lblUpdatesExplanation.TabIndex = 136 + Me.lblUpdatesExplanation.Text = "mRemoteNG can periodically connect to the mRemoteNG website to check for updates " & _ + "and product announcements." + ' + 'pnlUpdateCheck + ' + Me.pnlUpdateCheck.Controls.Add(Me.chkCheckForUpdatesOnStartup) + Me.pnlUpdateCheck.Controls.Add(Me.cboUpdateCheckFrequency) + Me.pnlUpdateCheck.Location = New System.Drawing.Point(16, 64) + Me.pnlUpdateCheck.Name = "pnlUpdateCheck" + Me.pnlUpdateCheck.Size = New System.Drawing.Size(536, 72) + Me.pnlUpdateCheck.TabIndex = 137 + ' + 'chkCheckForUpdatesOnStartup + ' + Me.chkCheckForUpdatesOnStartup.AutoSize = True + Me.chkCheckForUpdatesOnStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkCheckForUpdatesOnStartup.Location = New System.Drawing.Point(8, 8) + Me.chkCheckForUpdatesOnStartup.Name = "chkCheckForUpdatesOnStartup" + Me.chkCheckForUpdatesOnStartup.Size = New System.Drawing.Size(231, 19) + Me.chkCheckForUpdatesOnStartup.TabIndex = 31 + Me.chkCheckForUpdatesOnStartup.Text = "Check for updates and announcements" + Me.chkCheckForUpdatesOnStartup.UseVisualStyleBackColor = True + ' + 'cboUpdateCheckFrequency + ' + Me.cboUpdateCheckFrequency.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboUpdateCheckFrequency.FormattingEnabled = True + Me.cboUpdateCheckFrequency.Items.AddRange(New Object() {"Daily", "Weekly", "Monthly"}) + Me.cboUpdateCheckFrequency.Location = New System.Drawing.Point(48, 40) + Me.cboUpdateCheckFrequency.Name = "cboUpdateCheckFrequency" + Me.cboUpdateCheckFrequency.Size = New System.Drawing.Size(128, 23) + Me.cboUpdateCheckFrequency.TabIndex = 135 + ' + 'pnlProxy + ' + Me.pnlProxy.Controls.Add(Me.pnlProxyBasic) + Me.pnlProxy.Controls.Add(Me.chkUseProxyForAutomaticUpdates) + Me.pnlProxy.Controls.Add(Me.chkUseProxyAuthentication) + Me.pnlProxy.Controls.Add(Me.pnlProxyAuthentication) + Me.pnlProxy.Controls.Add(Me.btnTestProxy) + Me.pnlProxy.Location = New System.Drawing.Point(16, 168) + Me.pnlProxy.Name = "pnlProxy" + Me.pnlProxy.Size = New System.Drawing.Size(536, 224) + Me.pnlProxy.TabIndex = 134 + ' + 'pnlProxyBasic + ' + Me.pnlProxyBasic.Controls.Add(Me.lblProxyAddress) + Me.pnlProxyBasic.Controls.Add(Me.txtProxyAddress) + Me.pnlProxyBasic.Controls.Add(Me.lblProxyPort) + Me.pnlProxyBasic.Controls.Add(Me.numProxyPort) + Me.pnlProxyBasic.Enabled = False + Me.pnlProxyBasic.Location = New System.Drawing.Point(8, 32) + Me.pnlProxyBasic.Name = "pnlProxyBasic" + Me.pnlProxyBasic.Size = New System.Drawing.Size(512, 40) + Me.pnlProxyBasic.TabIndex = 90 + ' + 'lblProxyAddress + ' + Me.lblProxyAddress.Location = New System.Drawing.Point(8, 8) + Me.lblProxyAddress.Name = "lblProxyAddress" + Me.lblProxyAddress.Size = New System.Drawing.Size(96, 24) + Me.lblProxyAddress.TabIndex = 1 + Me.lblProxyAddress.Text = "Address:" + Me.lblProxyAddress.TextAlign = System.Drawing.ContentAlignment.MiddleRight + ' + 'txtProxyAddress + ' + Me.txtProxyAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle + Me.txtProxyAddress.Location = New System.Drawing.Point(104, 8) + Me.txtProxyAddress.Name = "txtProxyAddress" + Me.txtProxyAddress.Size = New System.Drawing.Size(240, 23) + Me.txtProxyAddress.TabIndex = 2 + ' + 'lblProxyPort + ' + Me.lblProxyPort.Location = New System.Drawing.Point(320, 8) + Me.lblProxyPort.Name = "lblProxyPort" + Me.lblProxyPort.Size = New System.Drawing.Size(64, 23) + Me.lblProxyPort.TabIndex = 3 + Me.lblProxyPort.Text = "Port:" + Me.lblProxyPort.TextAlign = System.Drawing.ContentAlignment.MiddleRight + ' + 'numProxyPort + ' + Me.numProxyPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle + Me.numProxyPort.Location = New System.Drawing.Point(384, 8) + Me.numProxyPort.Maximum = New Decimal(New Integer() {65535, 0, 0, 0}) + Me.numProxyPort.Minimum = New Decimal(New Integer() {1, 0, 0, 0}) + Me.numProxyPort.Name = "numProxyPort" + Me.numProxyPort.Size = New System.Drawing.Size(64, 23) + Me.numProxyPort.TabIndex = 5001 + Me.numProxyPort.Value = New Decimal(New Integer() {80, 0, 0, 0}) + ' + 'chkUseProxyForAutomaticUpdates + ' + Me.chkUseProxyForAutomaticUpdates.AutoSize = True + Me.chkUseProxyForAutomaticUpdates.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkUseProxyForAutomaticUpdates.Location = New System.Drawing.Point(8, 8) + Me.chkUseProxyForAutomaticUpdates.Name = "chkUseProxyForAutomaticUpdates" + Me.chkUseProxyForAutomaticUpdates.Size = New System.Drawing.Size(177, 19) + Me.chkUseProxyForAutomaticUpdates.TabIndex = 80 + Me.chkUseProxyForAutomaticUpdates.Text = "Use a proxy server to connect" + Me.chkUseProxyForAutomaticUpdates.UseVisualStyleBackColor = True + ' + 'chkUseProxyAuthentication + ' + Me.chkUseProxyAuthentication.AutoSize = True + Me.chkUseProxyAuthentication.Enabled = False + Me.chkUseProxyAuthentication.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkUseProxyAuthentication.Location = New System.Drawing.Point(32, 80) + Me.chkUseProxyAuthentication.Name = "chkUseProxyAuthentication" + Me.chkUseProxyAuthentication.Size = New System.Drawing.Size(236, 19) + Me.chkUseProxyAuthentication.TabIndex = 100 + Me.chkUseProxyAuthentication.Text = "This proxy server requires authentication" + Me.chkUseProxyAuthentication.UseVisualStyleBackColor = True + ' + 'pnlProxyAuthentication + ' + Me.pnlProxyAuthentication.Controls.Add(Me.lblProxyUsername) + Me.pnlProxyAuthentication.Controls.Add(Me.txtProxyUsername) + Me.pnlProxyAuthentication.Controls.Add(Me.lblProxyPassword) + Me.pnlProxyAuthentication.Controls.Add(Me.txtProxyPassword) + Me.pnlProxyAuthentication.Enabled = False + Me.pnlProxyAuthentication.Location = New System.Drawing.Point(8, 104) + Me.pnlProxyAuthentication.Name = "pnlProxyAuthentication" + Me.pnlProxyAuthentication.Size = New System.Drawing.Size(512, 72) + Me.pnlProxyAuthentication.TabIndex = 110 + ' + 'lblProxyUsername + ' + Me.lblProxyUsername.Location = New System.Drawing.Point(8, 8) + Me.lblProxyUsername.Name = "lblProxyUsername" + Me.lblProxyUsername.Size = New System.Drawing.Size(96, 24) + Me.lblProxyUsername.TabIndex = 1 + Me.lblProxyUsername.Text = "Username:" + Me.lblProxyUsername.TextAlign = System.Drawing.ContentAlignment.MiddleRight + ' + 'txtProxyUsername + ' + Me.txtProxyUsername.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle + Me.txtProxyUsername.Location = New System.Drawing.Point(104, 8) + Me.txtProxyUsername.Name = "txtProxyUsername" + Me.txtProxyUsername.Size = New System.Drawing.Size(240, 23) + Me.txtProxyUsername.TabIndex = 2 + ' + 'lblProxyPassword + ' + Me.lblProxyPassword.Location = New System.Drawing.Point(8, 40) + Me.lblProxyPassword.Name = "lblProxyPassword" + Me.lblProxyPassword.Size = New System.Drawing.Size(96, 24) + Me.lblProxyPassword.TabIndex = 3 + Me.lblProxyPassword.Text = "Password:" + Me.lblProxyPassword.TextAlign = System.Drawing.ContentAlignment.MiddleRight + ' + 'txtProxyPassword + ' + Me.txtProxyPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle + Me.txtProxyPassword.Location = New System.Drawing.Point(104, 40) + Me.txtProxyPassword.Name = "txtProxyPassword" + Me.txtProxyPassword.Size = New System.Drawing.Size(240, 23) + Me.txtProxyPassword.TabIndex = 4 + Me.txtProxyPassword.UseSystemPasswordChar = True + ' + 'btnTestProxy + ' + Me.btnTestProxy.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnTestProxy.Location = New System.Drawing.Point(8, 184) + Me.btnTestProxy.Name = "btnTestProxy" + Me.btnTestProxy.Size = New System.Drawing.Size(80, 32) + Me.btnTestProxy.TabIndex = 111 + Me.btnTestProxy.Text = "Test Proxy" + Me.btnTestProxy.UseVisualStyleBackColor = True + ' + 'tabStartupExit + ' + Me.tabStartupExit.Controls.Add(Me.pnlStartup) + Me.tabStartupExit.Icon = Global.mRemote.My.Resources.Resources.StartupExit_Icon + Me.tabStartupExit.Location = New System.Drawing.Point(0, 0) + Me.tabStartupExit.Name = "tabStartupExit" + Me.tabStartupExit.Selected = False + Me.tabStartupExit.Size = New System.Drawing.Size(573, 492) + Me.tabStartupExit.TabIndex = 1000 + Me.tabStartupExit.Title = "Startup/Exit" + ' + 'pnlStartup + ' + Me.pnlStartup.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlStartup.AutoScroll = True + Me.pnlStartup.Controls.Add(Me.chkSaveConsOnExit) + Me.pnlStartup.Controls.Add(Me.chkProperInstallationOfComponentsAtStartup) + Me.pnlStartup.Controls.Add(Me.chkConfirmExit) + Me.pnlStartup.Controls.Add(Me.chkSingleInstance) + Me.pnlStartup.Controls.Add(Me.chkReconnectOnStart) + Me.pnlStartup.Location = New System.Drawing.Point(3, 3) + Me.pnlStartup.Name = "pnlStartup" + Me.pnlStartup.Size = New System.Drawing.Size(567, 486) + Me.pnlStartup.TabIndex = 51 + ' + 'chkSaveConsOnExit + ' + Me.chkSaveConsOnExit.AutoSize = True + Me.chkSaveConsOnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkSaveConsOnExit.Location = New System.Drawing.Point(9, 3) + Me.chkSaveConsOnExit.Name = "chkSaveConsOnExit" + Me.chkSaveConsOnExit.Size = New System.Drawing.Size(153, 19) + Me.chkSaveConsOnExit.TabIndex = 10 + Me.chkSaveConsOnExit.Text = "Save connections on exit" + Me.chkSaveConsOnExit.UseVisualStyleBackColor = True + ' + 'chkProperInstallationOfComponentsAtStartup + ' + Me.chkProperInstallationOfComponentsAtStartup.AutoSize = True + Me.chkProperInstallationOfComponentsAtStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkProperInstallationOfComponentsAtStartup.Location = New System.Drawing.Point(9, 97) + Me.chkProperInstallationOfComponentsAtStartup.Name = "chkProperInstallationOfComponentsAtStartup" + Me.chkProperInstallationOfComponentsAtStartup.Size = New System.Drawing.Size(292, 19) + Me.chkProperInstallationOfComponentsAtStartup.TabIndex = 50 + Me.chkProperInstallationOfComponentsAtStartup.Text = "Check proper installation of components at startup" + Me.chkProperInstallationOfComponentsAtStartup.UseVisualStyleBackColor = True + ' + 'chkConfirmExit + ' + Me.chkConfirmExit.AutoSize = True + Me.chkConfirmExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkConfirmExit.Location = New System.Drawing.Point(9, 26) + Me.chkConfirmExit.Name = "chkConfirmExit" + Me.chkConfirmExit.Size = New System.Drawing.Size(245, 19) + Me.chkConfirmExit.TabIndex = 20 + Me.chkConfirmExit.Text = "Confirm exit if there are open connections" + Me.chkConfirmExit.UseVisualStyleBackColor = True + ' + 'chkSingleInstance + ' + Me.chkSingleInstance.AutoSize = True + Me.chkSingleInstance.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkSingleInstance.Location = New System.Drawing.Point(9, 74) + Me.chkSingleInstance.Name = "chkSingleInstance" + Me.chkSingleInstance.Size = New System.Drawing.Size(411, 19) + Me.chkSingleInstance.TabIndex = 50 + Me.chkSingleInstance.Text = "Allow only a single instance of the application (mRemote restart required)" + Me.chkSingleInstance.UseVisualStyleBackColor = True + ' + 'chkReconnectOnStart + ' + Me.chkReconnectOnStart.AutoSize = True + Me.chkReconnectOnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkReconnectOnStart.Location = New System.Drawing.Point(9, 51) + Me.chkReconnectOnStart.Name = "chkReconnectOnStart" + Me.chkReconnectOnStart.Size = New System.Drawing.Size(296, 19) + Me.chkReconnectOnStart.TabIndex = 40 + Me.chkReconnectOnStart.Text = "Reconnect to previously opened sessions on startup" + Me.chkReconnectOnStart.UseVisualStyleBackColor = True + ' + 'tabAppearance + ' + Me.tabAppearance.Controls.Add(Me.pnlAppearance) + Me.tabAppearance.Icon = Global.mRemote.My.Resources.Resources.Appearance_Icon + Me.tabAppearance.Location = New System.Drawing.Point(0, 0) + Me.tabAppearance.Name = "tabAppearance" + Me.tabAppearance.Selected = False + Me.tabAppearance.Size = New System.Drawing.Size(573, 492) + Me.tabAppearance.TabIndex = 2000 + Me.tabAppearance.Title = "Appearance" + ' + 'pnlAppearance + ' + Me.pnlAppearance.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlAppearance.AutoScroll = True + Me.pnlAppearance.Controls.Add(Me.chkShowDescriptionTooltipsInTree) + Me.pnlAppearance.Controls.Add(Me.chkMinimizeToSystemTray) + Me.pnlAppearance.Controls.Add(Me.chkShowSystemTrayIcon) + Me.pnlAppearance.Controls.Add(Me.chkShowFullConnectionsFilePathInTitle) + Me.pnlAppearance.Location = New System.Drawing.Point(3, 3) + Me.pnlAppearance.Name = "pnlAppearance" + Me.pnlAppearance.Size = New System.Drawing.Size(567, 486) + Me.pnlAppearance.TabIndex = 41 + ' + 'chkShowDescriptionTooltipsInTree + ' + Me.chkShowDescriptionTooltipsInTree.AutoSize = True + Me.chkShowDescriptionTooltipsInTree.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowDescriptionTooltipsInTree.Location = New System.Drawing.Point(9, 3) + Me.chkShowDescriptionTooltipsInTree.Name = "chkShowDescriptionTooltipsInTree" + Me.chkShowDescriptionTooltipsInTree.Size = New System.Drawing.Size(256, 19) + Me.chkShowDescriptionTooltipsInTree.TabIndex = 10 + Me.chkShowDescriptionTooltipsInTree.Text = "Show description tooltips in connection tree" + Me.chkShowDescriptionTooltipsInTree.UseVisualStyleBackColor = True + ' + 'chkMinimizeToSystemTray + ' + Me.chkMinimizeToSystemTray.AutoSize = True + Me.chkMinimizeToSystemTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMinimizeToSystemTray.Location = New System.Drawing.Point(9, 82) + Me.chkMinimizeToSystemTray.Name = "chkMinimizeToSystemTray" + Me.chkMinimizeToSystemTray.Size = New System.Drawing.Size(153, 19) + Me.chkMinimizeToSystemTray.TabIndex = 40 + Me.chkMinimizeToSystemTray.Text = "Minimize to System Tray" + Me.chkMinimizeToSystemTray.UseVisualStyleBackColor = True + ' + 'chkShowSystemTrayIcon + ' + Me.chkShowSystemTrayIcon.AutoSize = True + Me.chkShowSystemTrayIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowSystemTrayIcon.Location = New System.Drawing.Point(9, 59) + Me.chkShowSystemTrayIcon.Name = "chkShowSystemTrayIcon" + Me.chkShowSystemTrayIcon.Size = New System.Drawing.Size(184, 19) + Me.chkShowSystemTrayIcon.TabIndex = 30 + Me.chkShowSystemTrayIcon.Text = "Always show System Tray Icon" + Me.chkShowSystemTrayIcon.UseVisualStyleBackColor = True + ' + 'chkShowFullConnectionsFilePathInTitle + ' + Me.chkShowFullConnectionsFilePathInTitle.AutoSize = True + Me.chkShowFullConnectionsFilePathInTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowFullConnectionsFilePathInTitle.Location = New System.Drawing.Point(9, 26) + Me.chkShowFullConnectionsFilePathInTitle.Name = "chkShowFullConnectionsFilePathInTitle" + Me.chkShowFullConnectionsFilePathInTitle.Size = New System.Drawing.Size(267, 19) + Me.chkShowFullConnectionsFilePathInTitle.TabIndex = 20 + Me.chkShowFullConnectionsFilePathInTitle.Text = "Show full connections file path in window title" + Me.chkShowFullConnectionsFilePathInTitle.UseVisualStyleBackColor = True + ' + 'tabTabs + ' + Me.tabTabs.Controls.Add(Me.pnlTabsAndPanels) + Me.tabTabs.Icon = Global.mRemote.My.Resources.Resources.Tab_Icon + Me.tabTabs.Location = New System.Drawing.Point(0, 0) + Me.tabTabs.Name = "tabTabs" + Me.tabTabs.Selected = False + Me.tabTabs.Size = New System.Drawing.Size(573, 492) + Me.tabTabs.TabIndex = 3000 + Me.tabTabs.Title = "Tabs && Panels" + ' + 'pnlTabsAndPanels + ' + Me.pnlTabsAndPanels.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.pnlTabsAndPanels.AutoScroll = True + Me.pnlTabsAndPanels.Controls.Add(Me.chkUseOnlyErrorsAndInfosPanel) + Me.pnlTabsAndPanels.Controls.Add(Me.lblSwitchToErrorsAndInfos) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCInformation) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCErrors) + Me.pnlTabsAndPanels.Controls.Add(Me.chkMCWarnings) + Me.pnlTabsAndPanels.Controls.Add(Me.chkOpenNewTabRightOfSelected) + Me.pnlTabsAndPanels.Controls.Add(Me.chkShowProtocolOnTabs) + Me.pnlTabsAndPanels.Controls.Add(Me.chkDoubleClickClosesTab) + Me.pnlTabsAndPanels.Controls.Add(Me.chkShowLogonInfoOnTabs) + Me.pnlTabsAndPanels.Controls.Add(Me.chkAlwaysShowPanelSelectionDlg) + Me.pnlTabsAndPanels.Location = New System.Drawing.Point(3, 3) + Me.pnlTabsAndPanels.Name = "pnlTabsAndPanels" + Me.pnlTabsAndPanels.Size = New System.Drawing.Size(567, 486) + Me.pnlTabsAndPanels.TabIndex = 51 + ' + 'chkUseOnlyErrorsAndInfosPanel + ' + Me.chkUseOnlyErrorsAndInfosPanel.AutoSize = True + Me.chkUseOnlyErrorsAndInfosPanel.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkUseOnlyErrorsAndInfosPanel.Location = New System.Drawing.Point(9, 146) + Me.chkUseOnlyErrorsAndInfosPanel.Name = "chkUseOnlyErrorsAndInfosPanel" + Me.chkUseOnlyErrorsAndInfosPanel.Size = New System.Drawing.Size(307, 19) + Me.chkUseOnlyErrorsAndInfosPanel.TabIndex = 51 + Me.chkUseOnlyErrorsAndInfosPanel.Text = "Use only Notifications panel (no messagebox popups)" + Me.chkUseOnlyErrorsAndInfosPanel.UseVisualStyleBackColor = True + ' + 'lblSwitchToErrorsAndInfos + ' + Me.lblSwitchToErrorsAndInfos.AutoSize = True + Me.lblSwitchToErrorsAndInfos.Location = New System.Drawing.Point(9, 171) + Me.lblSwitchToErrorsAndInfos.Name = "lblSwitchToErrorsAndInfos" + Me.lblSwitchToErrorsAndInfos.Size = New System.Drawing.Size(179, 15) + Me.lblSwitchToErrorsAndInfos.TabIndex = 52 + Me.lblSwitchToErrorsAndInfos.Text = "Switch to Notifications panel on:" + ' + 'chkMCInformation + ' + Me.chkMCInformation.AutoSize = True + Me.chkMCInformation.Enabled = False + Me.chkMCInformation.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCInformation.Location = New System.Drawing.Point(25, 191) + Me.chkMCInformation.Name = "chkMCInformation" + Me.chkMCInformation.Size = New System.Drawing.Size(91, 19) + Me.chkMCInformation.TabIndex = 53 + Me.chkMCInformation.Text = "Informations" + Me.chkMCInformation.UseVisualStyleBackColor = True + ' + 'chkMCErrors + ' + Me.chkMCErrors.AutoSize = True + Me.chkMCErrors.Enabled = False + Me.chkMCErrors.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCErrors.Location = New System.Drawing.Point(223, 191) + Me.chkMCErrors.Name = "chkMCErrors" + Me.chkMCErrors.Size = New System.Drawing.Size(53, 19) + Me.chkMCErrors.TabIndex = 55 + Me.chkMCErrors.Text = "Errors" + Me.chkMCErrors.UseVisualStyleBackColor = True + ' + 'chkMCWarnings + ' + Me.chkMCWarnings.AutoSize = True + Me.chkMCWarnings.Enabled = False + Me.chkMCWarnings.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkMCWarnings.Location = New System.Drawing.Point(132, 191) + Me.chkMCWarnings.Name = "chkMCWarnings" + Me.chkMCWarnings.Size = New System.Drawing.Size(73, 19) + Me.chkMCWarnings.TabIndex = 54 + Me.chkMCWarnings.Text = "Warnings" + Me.chkMCWarnings.UseVisualStyleBackColor = True + ' + 'chkOpenNewTabRightOfSelected + ' + Me.chkOpenNewTabRightOfSelected.AutoSize = True + Me.chkOpenNewTabRightOfSelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkOpenNewTabRightOfSelected.Location = New System.Drawing.Point(9, 3) + Me.chkOpenNewTabRightOfSelected.Name = "chkOpenNewTabRightOfSelected" + Me.chkOpenNewTabRightOfSelected.Size = New System.Drawing.Size(309, 19) + Me.chkOpenNewTabRightOfSelected.TabIndex = 10 + Me.chkOpenNewTabRightOfSelected.Text = "Open new tab to the right of the currently selected tab" + Me.chkOpenNewTabRightOfSelected.UseVisualStyleBackColor = True + ' + 'chkShowProtocolOnTabs + ' + Me.chkShowProtocolOnTabs.AutoSize = True + Me.chkShowProtocolOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowProtocolOnTabs.Location = New System.Drawing.Point(9, 49) + Me.chkShowProtocolOnTabs.Name = "chkShowProtocolOnTabs" + Me.chkShowProtocolOnTabs.Size = New System.Drawing.Size(180, 19) + Me.chkShowProtocolOnTabs.TabIndex = 30 + Me.chkShowProtocolOnTabs.Text = "Show protocols on tab names" + Me.chkShowProtocolOnTabs.UseVisualStyleBackColor = True + ' + 'chkDoubleClickClosesTab + ' + Me.chkDoubleClickClosesTab.AutoSize = True + Me.chkDoubleClickClosesTab.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkDoubleClickClosesTab.Location = New System.Drawing.Point(9, 72) + Me.chkDoubleClickClosesTab.Name = "chkDoubleClickClosesTab" + Me.chkDoubleClickClosesTab.Size = New System.Drawing.Size(170, 19) + Me.chkDoubleClickClosesTab.TabIndex = 40 + Me.chkDoubleClickClosesTab.Text = "Double click on tab closes it" + Me.chkDoubleClickClosesTab.UseVisualStyleBackColor = True + ' + 'chkShowLogonInfoOnTabs + ' + Me.chkShowLogonInfoOnTabs.AutoSize = True + Me.chkShowLogonInfoOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkShowLogonInfoOnTabs.Location = New System.Drawing.Point(9, 26) + Me.chkShowLogonInfoOnTabs.Name = "chkShowLogonInfoOnTabs" + Me.chkShowLogonInfoOnTabs.Size = New System.Drawing.Size(227, 19) + Me.chkShowLogonInfoOnTabs.TabIndex = 20 + Me.chkShowLogonInfoOnTabs.Text = "Show logon information on tab names" + Me.chkShowLogonInfoOnTabs.UseVisualStyleBackColor = True + ' + 'chkAlwaysShowPanelSelectionDlg + ' + Me.chkAlwaysShowPanelSelectionDlg.AutoSize = True + Me.chkAlwaysShowPanelSelectionDlg.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.chkAlwaysShowPanelSelectionDlg.Location = New System.Drawing.Point(9, 95) + Me.chkAlwaysShowPanelSelectionDlg.Name = "chkAlwaysShowPanelSelectionDlg" + Me.chkAlwaysShowPanelSelectionDlg.Size = New System.Drawing.Size(349, 19) + Me.chkAlwaysShowPanelSelectionDlg.TabIndex = 50 + Me.chkAlwaysShowPanelSelectionDlg.Text = "Always show panel selection dialog when opening connectins" + Me.chkAlwaysShowPanelSelectionDlg.UseVisualStyleBackColor = True ' 'tabConnections ' @@ -555,341 +1061,13 @@ Namespace UI Me.chkHostnameLikeDisplayName.Text = "Set hostname like display name when creating new connections" Me.chkHostnameLikeDisplayName.UseVisualStyleBackColor = True ' - 'tabStartupExit - ' - Me.tabStartupExit.Controls.Add(Me.pnlStartup) - Me.tabStartupExit.Icon = Global.mRemote.My.Resources.Resources.StartupExit_Icon - Me.tabStartupExit.Location = New System.Drawing.Point(0, 0) - Me.tabStartupExit.Name = "tabStartupExit" - Me.tabStartupExit.Selected = False - Me.tabStartupExit.Size = New System.Drawing.Size(573, 492) - Me.tabStartupExit.TabIndex = 1000 - Me.tabStartupExit.Title = "Startup/Exit" - ' - 'pnlStartup - ' - Me.pnlStartup.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlStartup.AutoScroll = True - Me.pnlStartup.Controls.Add(Me.chkSaveConsOnExit) - Me.pnlStartup.Controls.Add(Me.chkProperInstallationOfComponentsAtStartup) - Me.pnlStartup.Controls.Add(Me.chkConfirmExit) - Me.pnlStartup.Controls.Add(Me.chkSingleInstance) - Me.pnlStartup.Controls.Add(Me.chkCheckForUpdatesOnStartup) - Me.pnlStartup.Controls.Add(Me.chkReconnectOnStart) - Me.pnlStartup.Location = New System.Drawing.Point(3, 3) - Me.pnlStartup.Name = "pnlStartup" - Me.pnlStartup.Size = New System.Drawing.Size(567, 486) - Me.pnlStartup.TabIndex = 51 - ' - 'chkSaveConsOnExit - ' - Me.chkSaveConsOnExit.AutoSize = True - Me.chkSaveConsOnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkSaveConsOnExit.Location = New System.Drawing.Point(9, 3) - Me.chkSaveConsOnExit.Name = "chkSaveConsOnExit" - Me.chkSaveConsOnExit.Size = New System.Drawing.Size(153, 19) - Me.chkSaveConsOnExit.TabIndex = 10 - Me.chkSaveConsOnExit.Text = "Save connections on exit" - Me.chkSaveConsOnExit.UseVisualStyleBackColor = True - ' - 'chkProperInstallationOfComponentsAtStartup - ' - Me.chkProperInstallationOfComponentsAtStartup.AutoSize = True - Me.chkProperInstallationOfComponentsAtStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkProperInstallationOfComponentsAtStartup.Location = New System.Drawing.Point(9, 118) - Me.chkProperInstallationOfComponentsAtStartup.Name = "chkProperInstallationOfComponentsAtStartup" - Me.chkProperInstallationOfComponentsAtStartup.Size = New System.Drawing.Size(292, 19) - Me.chkProperInstallationOfComponentsAtStartup.TabIndex = 50 - Me.chkProperInstallationOfComponentsAtStartup.Text = "Check proper installation of components at startup" - Me.chkProperInstallationOfComponentsAtStartup.UseVisualStyleBackColor = True - ' - 'chkConfirmExit - ' - Me.chkConfirmExit.AutoSize = True - Me.chkConfirmExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkConfirmExit.Location = New System.Drawing.Point(9, 26) - Me.chkConfirmExit.Name = "chkConfirmExit" - Me.chkConfirmExit.Size = New System.Drawing.Size(245, 19) - Me.chkConfirmExit.TabIndex = 20 - Me.chkConfirmExit.Text = "Confirm exit if there are open connections" - Me.chkConfirmExit.UseVisualStyleBackColor = True - ' - 'chkSingleInstance - ' - Me.chkSingleInstance.AutoSize = True - Me.chkSingleInstance.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkSingleInstance.Location = New System.Drawing.Point(9, 95) - Me.chkSingleInstance.Name = "chkSingleInstance" - Me.chkSingleInstance.Size = New System.Drawing.Size(411, 19) - Me.chkSingleInstance.TabIndex = 50 - Me.chkSingleInstance.Text = "Allow only a single instance of the application (mRemote restart required)" - Me.chkSingleInstance.UseVisualStyleBackColor = True - ' - 'chkCheckForUpdatesOnStartup - ' - Me.chkCheckForUpdatesOnStartup.AutoSize = True - Me.chkCheckForUpdatesOnStartup.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkCheckForUpdatesOnStartup.Location = New System.Drawing.Point(9, 49) - Me.chkCheckForUpdatesOnStartup.Name = "chkCheckForUpdatesOnStartup" - Me.chkCheckForUpdatesOnStartup.Size = New System.Drawing.Size(176, 19) - Me.chkCheckForUpdatesOnStartup.TabIndex = 30 - Me.chkCheckForUpdatesOnStartup.Text = "Check for updates on startup" - Me.chkCheckForUpdatesOnStartup.UseVisualStyleBackColor = True - ' - 'chkReconnectOnStart - ' - Me.chkReconnectOnStart.AutoSize = True - Me.chkReconnectOnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkReconnectOnStart.Location = New System.Drawing.Point(9, 72) - Me.chkReconnectOnStart.Name = "chkReconnectOnStart" - Me.chkReconnectOnStart.Size = New System.Drawing.Size(296, 19) - Me.chkReconnectOnStart.TabIndex = 40 - Me.chkReconnectOnStart.Text = "Reconnect to previously opened sessions on startup" - Me.chkReconnectOnStart.UseVisualStyleBackColor = True - ' - 'tabAppearance - ' - Me.tabAppearance.Controls.Add(Me.pnlAppearance) - Me.tabAppearance.Icon = Global.mRemote.My.Resources.Resources.Appearance_Icon - Me.tabAppearance.Location = New System.Drawing.Point(0, 0) - Me.tabAppearance.Name = "tabAppearance" - Me.tabAppearance.Selected = False - Me.tabAppearance.Size = New System.Drawing.Size(573, 492) - Me.tabAppearance.TabIndex = 2000 - Me.tabAppearance.Title = "Appearance" - ' - 'pnlAppearance - ' - Me.pnlAppearance.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlAppearance.AutoScroll = True - Me.pnlAppearance.Controls.Add(Me.chkShowDescriptionTooltipsInTree) - Me.pnlAppearance.Controls.Add(Me.chkMinimizeToSystemTray) - Me.pnlAppearance.Controls.Add(Me.chkShowSystemTrayIcon) - Me.pnlAppearance.Controls.Add(Me.chkShowFullConnectionsFilePathInTitle) - Me.pnlAppearance.Location = New System.Drawing.Point(3, 3) - Me.pnlAppearance.Name = "pnlAppearance" - Me.pnlAppearance.Size = New System.Drawing.Size(567, 486) - Me.pnlAppearance.TabIndex = 41 - ' - 'chkShowDescriptionTooltipsInTree - ' - Me.chkShowDescriptionTooltipsInTree.AutoSize = True - Me.chkShowDescriptionTooltipsInTree.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowDescriptionTooltipsInTree.Location = New System.Drawing.Point(9, 3) - Me.chkShowDescriptionTooltipsInTree.Name = "chkShowDescriptionTooltipsInTree" - Me.chkShowDescriptionTooltipsInTree.Size = New System.Drawing.Size(256, 19) - Me.chkShowDescriptionTooltipsInTree.TabIndex = 10 - Me.chkShowDescriptionTooltipsInTree.Text = "Show description tooltips in connection tree" - Me.chkShowDescriptionTooltipsInTree.UseVisualStyleBackColor = True - ' - 'chkMinimizeToSystemTray - ' - Me.chkMinimizeToSystemTray.AutoSize = True - Me.chkMinimizeToSystemTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMinimizeToSystemTray.Location = New System.Drawing.Point(9, 82) - Me.chkMinimizeToSystemTray.Name = "chkMinimizeToSystemTray" - Me.chkMinimizeToSystemTray.Size = New System.Drawing.Size(153, 19) - Me.chkMinimizeToSystemTray.TabIndex = 40 - Me.chkMinimizeToSystemTray.Text = "Minimize to System Tray" - Me.chkMinimizeToSystemTray.UseVisualStyleBackColor = True - ' - 'chkShowSystemTrayIcon - ' - Me.chkShowSystemTrayIcon.AutoSize = True - Me.chkShowSystemTrayIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowSystemTrayIcon.Location = New System.Drawing.Point(9, 59) - Me.chkShowSystemTrayIcon.Name = "chkShowSystemTrayIcon" - Me.chkShowSystemTrayIcon.Size = New System.Drawing.Size(184, 19) - Me.chkShowSystemTrayIcon.TabIndex = 30 - Me.chkShowSystemTrayIcon.Text = "Always show System Tray Icon" - Me.chkShowSystemTrayIcon.UseVisualStyleBackColor = True - ' - 'chkShowFullConnectionsFilePathInTitle - ' - Me.chkShowFullConnectionsFilePathInTitle.AutoSize = True - Me.chkShowFullConnectionsFilePathInTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowFullConnectionsFilePathInTitle.Location = New System.Drawing.Point(9, 26) - Me.chkShowFullConnectionsFilePathInTitle.Name = "chkShowFullConnectionsFilePathInTitle" - Me.chkShowFullConnectionsFilePathInTitle.Size = New System.Drawing.Size(267, 19) - Me.chkShowFullConnectionsFilePathInTitle.TabIndex = 20 - Me.chkShowFullConnectionsFilePathInTitle.Text = "Show full connections file path in window title" - Me.chkShowFullConnectionsFilePathInTitle.UseVisualStyleBackColor = True - ' - 'tabTabs - ' - Me.tabTabs.Controls.Add(Me.pnlTabsAndPanels) - Me.tabTabs.Icon = Global.mRemote.My.Resources.Resources.Tab_Icon - Me.tabTabs.Location = New System.Drawing.Point(0, 0) - Me.tabTabs.Name = "tabTabs" - Me.tabTabs.Selected = False - Me.tabTabs.Size = New System.Drawing.Size(573, 492) - Me.tabTabs.TabIndex = 3000 - Me.tabTabs.Title = "Tabs && Panels" - ' - 'pnlTabsAndPanels - ' - Me.pnlTabsAndPanels.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlTabsAndPanels.AutoScroll = True - Me.pnlTabsAndPanels.Controls.Add(Me.chkOpenNewTabRightOfSelected) - Me.pnlTabsAndPanels.Controls.Add(Me.chkShowProtocolOnTabs) - Me.pnlTabsAndPanels.Controls.Add(Me.chkDoubleClickClosesTab) - Me.pnlTabsAndPanels.Controls.Add(Me.chkShowLogonInfoOnTabs) - Me.pnlTabsAndPanels.Controls.Add(Me.chkAlwaysShowPanelSelectionDlg) - Me.pnlTabsAndPanels.Location = New System.Drawing.Point(3, 3) - Me.pnlTabsAndPanels.Name = "pnlTabsAndPanels" - Me.pnlTabsAndPanels.Size = New System.Drawing.Size(567, 486) - Me.pnlTabsAndPanels.TabIndex = 51 - ' - 'chkOpenNewTabRightOfSelected - ' - Me.chkOpenNewTabRightOfSelected.AutoSize = True - Me.chkOpenNewTabRightOfSelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkOpenNewTabRightOfSelected.Location = New System.Drawing.Point(9, 3) - Me.chkOpenNewTabRightOfSelected.Name = "chkOpenNewTabRightOfSelected" - Me.chkOpenNewTabRightOfSelected.Size = New System.Drawing.Size(309, 19) - Me.chkOpenNewTabRightOfSelected.TabIndex = 10 - Me.chkOpenNewTabRightOfSelected.Text = "Open new tab to the right of the currently selected tab" - Me.chkOpenNewTabRightOfSelected.UseVisualStyleBackColor = True - ' - 'chkShowProtocolOnTabs - ' - Me.chkShowProtocolOnTabs.AutoSize = True - Me.chkShowProtocolOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowProtocolOnTabs.Location = New System.Drawing.Point(9, 49) - Me.chkShowProtocolOnTabs.Name = "chkShowProtocolOnTabs" - Me.chkShowProtocolOnTabs.Size = New System.Drawing.Size(180, 19) - Me.chkShowProtocolOnTabs.TabIndex = 30 - Me.chkShowProtocolOnTabs.Text = "Show protocols on tab names" - Me.chkShowProtocolOnTabs.UseVisualStyleBackColor = True - ' - 'chkDoubleClickClosesTab - ' - Me.chkDoubleClickClosesTab.AutoSize = True - Me.chkDoubleClickClosesTab.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkDoubleClickClosesTab.Location = New System.Drawing.Point(9, 72) - Me.chkDoubleClickClosesTab.Name = "chkDoubleClickClosesTab" - Me.chkDoubleClickClosesTab.Size = New System.Drawing.Size(170, 19) - Me.chkDoubleClickClosesTab.TabIndex = 40 - Me.chkDoubleClickClosesTab.Text = "Double click on tab closes it" - Me.chkDoubleClickClosesTab.UseVisualStyleBackColor = True - ' - 'chkShowLogonInfoOnTabs - ' - Me.chkShowLogonInfoOnTabs.AutoSize = True - Me.chkShowLogonInfoOnTabs.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkShowLogonInfoOnTabs.Location = New System.Drawing.Point(9, 26) - Me.chkShowLogonInfoOnTabs.Name = "chkShowLogonInfoOnTabs" - Me.chkShowLogonInfoOnTabs.Size = New System.Drawing.Size(227, 19) - Me.chkShowLogonInfoOnTabs.TabIndex = 20 - Me.chkShowLogonInfoOnTabs.Text = "Show logon information on tab names" - Me.chkShowLogonInfoOnTabs.UseVisualStyleBackColor = True - ' - 'chkAlwaysShowPanelSelectionDlg - ' - Me.chkAlwaysShowPanelSelectionDlg.AutoSize = True - Me.chkAlwaysShowPanelSelectionDlg.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkAlwaysShowPanelSelectionDlg.Location = New System.Drawing.Point(9, 95) - Me.chkAlwaysShowPanelSelectionDlg.Name = "chkAlwaysShowPanelSelectionDlg" - Me.chkAlwaysShowPanelSelectionDlg.Size = New System.Drawing.Size(349, 19) - Me.chkAlwaysShowPanelSelectionDlg.TabIndex = 50 - Me.chkAlwaysShowPanelSelectionDlg.Text = "Always show panel selection dialog when opening connectins" - Me.chkAlwaysShowPanelSelectionDlg.UseVisualStyleBackColor = True - ' - 'tabErrorsAndInfos - ' - Me.tabErrorsAndInfos.Controls.Add(Me.pnlErrorsAndInfos) - Me.tabErrorsAndInfos.Icon = Global.mRemote.My.Resources.Resources.Info_Icon - Me.tabErrorsAndInfos.Location = New System.Drawing.Point(0, 0) - Me.tabErrorsAndInfos.Name = "tabErrorsAndInfos" - Me.tabErrorsAndInfos.Selected = False - Me.tabErrorsAndInfos.Size = New System.Drawing.Size(573, 492) - Me.tabErrorsAndInfos.TabIndex = 5000 - Me.tabErrorsAndInfos.Title = "Errors && Infos" - ' - 'pnlErrorsAndInfos - ' - Me.pnlErrorsAndInfos.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.pnlErrorsAndInfos.AutoScroll = True - Me.pnlErrorsAndInfos.Controls.Add(Me.chkUseOnlyErrorsAndInfosPanel) - Me.pnlErrorsAndInfos.Controls.Add(Me.lblSwitchToErrorsAndInfos) - Me.pnlErrorsAndInfos.Controls.Add(Me.chkMCInformation) - Me.pnlErrorsAndInfos.Controls.Add(Me.chkMCErrors) - Me.pnlErrorsAndInfos.Controls.Add(Me.chkMCWarnings) - Me.pnlErrorsAndInfos.Location = New System.Drawing.Point(3, 3) - Me.pnlErrorsAndInfos.Name = "pnlErrorsAndInfos" - Me.pnlErrorsAndInfos.Size = New System.Drawing.Size(567, 486) - Me.pnlErrorsAndInfos.TabIndex = 51 - ' - 'chkUseOnlyErrorsAndInfosPanel - ' - Me.chkUseOnlyErrorsAndInfosPanel.AutoSize = True - Me.chkUseOnlyErrorsAndInfosPanel.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkUseOnlyErrorsAndInfosPanel.Location = New System.Drawing.Point(9, 3) - Me.chkUseOnlyErrorsAndInfosPanel.Name = "chkUseOnlyErrorsAndInfosPanel" - Me.chkUseOnlyErrorsAndInfosPanel.Size = New System.Drawing.Size(311, 19) - Me.chkUseOnlyErrorsAndInfosPanel.TabIndex = 10 - Me.chkUseOnlyErrorsAndInfosPanel.Text = "Use only Errors && Infos panel (no messagebox popups)" - Me.chkUseOnlyErrorsAndInfosPanel.UseVisualStyleBackColor = True - ' - 'lblSwitchToErrorsAndInfos - ' - Me.lblSwitchToErrorsAndInfos.AutoSize = True - Me.lblSwitchToErrorsAndInfos.Location = New System.Drawing.Point(9, 28) - Me.lblSwitchToErrorsAndInfos.Name = "lblSwitchToErrorsAndInfos" - Me.lblSwitchToErrorsAndInfos.Size = New System.Drawing.Size(183, 15) - Me.lblSwitchToErrorsAndInfos.TabIndex = 20 - Me.lblSwitchToErrorsAndInfos.Text = "Switch to Errors && Infos panel on:" - ' - 'chkMCInformation - ' - Me.chkMCInformation.AutoSize = True - Me.chkMCInformation.Enabled = False - Me.chkMCInformation.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCInformation.Location = New System.Drawing.Point(25, 48) - Me.chkMCInformation.Name = "chkMCInformation" - Me.chkMCInformation.Size = New System.Drawing.Size(91, 19) - Me.chkMCInformation.TabIndex = 30 - Me.chkMCInformation.Text = "Informations" - Me.chkMCInformation.UseVisualStyleBackColor = True - ' - 'chkMCErrors - ' - Me.chkMCErrors.AutoSize = True - Me.chkMCErrors.Enabled = False - Me.chkMCErrors.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCErrors.Location = New System.Drawing.Point(223, 48) - Me.chkMCErrors.Name = "chkMCErrors" - Me.chkMCErrors.Size = New System.Drawing.Size(53, 19) - Me.chkMCErrors.TabIndex = 50 - Me.chkMCErrors.Text = "Errors" - Me.chkMCErrors.UseVisualStyleBackColor = True - ' - 'chkMCWarnings - ' - Me.chkMCWarnings.AutoSize = True - Me.chkMCWarnings.Enabled = False - Me.chkMCWarnings.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkMCWarnings.Location = New System.Drawing.Point(132, 48) - Me.chkMCWarnings.Name = "chkMCWarnings" - Me.chkMCWarnings.Size = New System.Drawing.Size(73, 19) - Me.chkMCWarnings.TabIndex = 40 - Me.chkMCWarnings.Text = "Warnings" - Me.chkMCWarnings.UseVisualStyleBackColor = True - ' 'tabAdvanced ' Me.tabAdvanced.Controls.Add(Me.pnlAdvanced) Me.tabAdvanced.Icon = Global.mRemote.My.Resources.Resources.Config_Icon Me.tabAdvanced.Location = New System.Drawing.Point(0, 0) Me.tabAdvanced.Name = "tabAdvanced" + Me.tabAdvanced.Selected = False Me.tabAdvanced.Size = New System.Drawing.Size(573, 492) Me.tabAdvanced.TabIndex = 5000 Me.tabAdvanced.Title = "Advanced" @@ -901,7 +1079,6 @@ Namespace UI Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.pnlAdvanced.AutoScroll = True Me.pnlAdvanced.Controls.Add(Me.chkWriteLogFile) - Me.pnlAdvanced.Controls.Add(Me.pnlProxy) Me.pnlAdvanced.Controls.Add(Me.chkAutomaticallyGetSessionInfo) Me.pnlAdvanced.Controls.Add(Me.lblXulRunnerPath) Me.pnlAdvanced.Controls.Add(Me.chkEncryptCompleteFile) @@ -929,151 +1106,11 @@ Namespace UI Me.chkWriteLogFile.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.chkWriteLogFile.Location = New System.Drawing.Point(9, 3) Me.chkWriteLogFile.Name = "chkWriteLogFile" - Me.chkWriteLogFile.Size = New System.Drawing.Size(287, 19) + Me.chkWriteLogFile.Size = New System.Drawing.Size(190, 19) Me.chkWriteLogFile.TabIndex = 10 Me.chkWriteLogFile.Text = "Write log file (mRemoteNG.log)" Me.chkWriteLogFile.UseVisualStyleBackColor = True ' - 'pnlProxy - ' - Me.pnlProxy.Controls.Add(Me.pnlProxyBasic) - Me.pnlProxy.Controls.Add(Me.chkUseProxyForAutomaticUpdates) - Me.pnlProxy.Controls.Add(Me.chkUseProxyAuthentication) - Me.pnlProxy.Controls.Add(Me.pnlProxyAuthentication) - Me.pnlProxy.Controls.Add(Me.btnTestProxy) - Me.pnlProxy.Location = New System.Drawing.Point(8, 212) - Me.pnlProxy.Name = "pnlProxy" - Me.pnlProxy.Size = New System.Drawing.Size(538, 149) - Me.pnlProxy.TabIndex = 134 - ' - 'pnlProxyBasic - ' - Me.pnlProxyBasic.Controls.Add(Me.lblProxyAddress) - Me.pnlProxyBasic.Controls.Add(Me.txtProxyAddress) - Me.pnlProxyBasic.Controls.Add(Me.lblProxyPort) - Me.pnlProxyBasic.Controls.Add(Me.numProxyPort) - Me.pnlProxyBasic.Enabled = False - Me.pnlProxyBasic.Location = New System.Drawing.Point(23, 29) - Me.pnlProxyBasic.Name = "pnlProxyBasic" - Me.pnlProxyBasic.Size = New System.Drawing.Size(357, 25) - Me.pnlProxyBasic.TabIndex = 90 - ' - 'lblProxyAddress - ' - Me.lblProxyAddress.AutoSize = True - Me.lblProxyAddress.Location = New System.Drawing.Point(1, 5) - Me.lblProxyAddress.Name = "lblProxyAddress" - Me.lblProxyAddress.Size = New System.Drawing.Size(52, 15) - Me.lblProxyAddress.TabIndex = 1 - Me.lblProxyAddress.Text = "Address:" - ' - 'txtProxyAddress - ' - Me.txtProxyAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.txtProxyAddress.Location = New System.Drawing.Point(61, 2) - Me.txtProxyAddress.Name = "txtProxyAddress" - Me.txtProxyAddress.Size = New System.Drawing.Size(163, 23) - Me.txtProxyAddress.TabIndex = 2 - ' - 'lblProxyPort - ' - Me.lblProxyPort.AutoSize = True - Me.lblProxyPort.Location = New System.Drawing.Point(237, 6) - Me.lblProxyPort.Name = "lblProxyPort" - Me.lblProxyPort.Size = New System.Drawing.Size(32, 15) - Me.lblProxyPort.TabIndex = 3 - Me.lblProxyPort.Text = "Port:" - ' - 'numProxyPort - ' - Me.numProxyPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.numProxyPort.Location = New System.Drawing.Point(280, 2) - Me.numProxyPort.Maximum = New Decimal(New Integer() {65535, 0, 0, 0}) - Me.numProxyPort.Name = "numProxyPort" - Me.numProxyPort.Size = New System.Drawing.Size(72, 23) - Me.numProxyPort.TabIndex = 5001 - Me.numProxyPort.Value = New Decimal(New Integer() {80, 0, 0, 0}) - ' - 'chkUseProxyForAutomaticUpdates - ' - Me.chkUseProxyForAutomaticUpdates.AutoSize = True - Me.chkUseProxyForAutomaticUpdates.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkUseProxyForAutomaticUpdates.Location = New System.Drawing.Point(5, 6) - Me.chkUseProxyForAutomaticUpdates.Name = "chkUseProxyForAutomaticUpdates" - Me.chkUseProxyForAutomaticUpdates.Size = New System.Drawing.Size(194, 19) - Me.chkUseProxyForAutomaticUpdates.TabIndex = 80 - Me.chkUseProxyForAutomaticUpdates.Text = "Use Proxy for automatic updates" - Me.chkUseProxyForAutomaticUpdates.UseVisualStyleBackColor = True - ' - 'chkUseProxyAuthentication - ' - Me.chkUseProxyAuthentication.AutoSize = True - Me.chkUseProxyAuthentication.Enabled = False - Me.chkUseProxyAuthentication.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.chkUseProxyAuthentication.Location = New System.Drawing.Point(23, 60) - Me.chkUseProxyAuthentication.Name = "chkUseProxyAuthentication" - Me.chkUseProxyAuthentication.Size = New System.Drawing.Size(124, 19) - Me.chkUseProxyAuthentication.TabIndex = 100 - Me.chkUseProxyAuthentication.Text = "Use Authentication" - Me.chkUseProxyAuthentication.UseVisualStyleBackColor = True - ' - 'pnlProxyAuthentication - ' - Me.pnlProxyAuthentication.Controls.Add(Me.lblProxyUsername) - Me.pnlProxyAuthentication.Controls.Add(Me.txtProxyUsername) - Me.pnlProxyAuthentication.Controls.Add(Me.lblProxyPassword) - Me.pnlProxyAuthentication.Controls.Add(Me.txtProxyPassword) - Me.pnlProxyAuthentication.Enabled = False - Me.pnlProxyAuthentication.Location = New System.Drawing.Point(39, 82) - Me.pnlProxyAuthentication.Name = "pnlProxyAuthentication" - Me.pnlProxyAuthentication.Size = New System.Drawing.Size(341, 52) - Me.pnlProxyAuthentication.TabIndex = 110 - ' - 'lblProxyUsername - ' - Me.lblProxyUsername.AutoSize = True - Me.lblProxyUsername.Location = New System.Drawing.Point(3, 6) - Me.lblProxyUsername.Name = "lblProxyUsername" - Me.lblProxyUsername.Size = New System.Drawing.Size(63, 15) - Me.lblProxyUsername.TabIndex = 1 - Me.lblProxyUsername.Text = "Username:" - ' - 'txtProxyUsername - ' - Me.txtProxyUsername.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.txtProxyUsername.Location = New System.Drawing.Point(95, 2) - Me.txtProxyUsername.Name = "txtProxyUsername" - Me.txtProxyUsername.Size = New System.Drawing.Size(240, 23) - Me.txtProxyUsername.TabIndex = 2 - ' - 'lblProxyPassword - ' - Me.lblProxyPassword.AutoSize = True - Me.lblProxyPassword.Location = New System.Drawing.Point(3, 33) - Me.lblProxyPassword.Name = "lblProxyPassword" - Me.lblProxyPassword.Size = New System.Drawing.Size(60, 15) - Me.lblProxyPassword.TabIndex = 3 - Me.lblProxyPassword.Text = "Password:" - ' - 'txtProxyPassword - ' - Me.txtProxyPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.txtProxyPassword.Location = New System.Drawing.Point(95, 29) - Me.txtProxyPassword.Name = "txtProxyPassword" - Me.txtProxyPassword.Size = New System.Drawing.Size(240, 23) - Me.txtProxyPassword.TabIndex = 4 - Me.txtProxyPassword.UseSystemPasswordChar = True - ' - 'btnTestProxy - ' - Me.btnTestProxy.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnTestProxy.Location = New System.Drawing.Point(299, 3) - Me.btnTestProxy.Name = "btnTestProxy" - Me.btnTestProxy.Size = New System.Drawing.Size(75, 23) - Me.btnTestProxy.TabIndex = 111 - Me.btnTestProxy.Text = "Test Proxy" - Me.btnTestProxy.UseVisualStyleBackColor = True - ' 'chkAutomaticallyGetSessionInfo ' Me.chkAutomaticallyGetSessionInfo.AutoSize = True @@ -1088,7 +1125,7 @@ Namespace UI 'lblXulRunnerPath ' Me.lblXulRunnerPath.AutoSize = True - Me.lblXulRunnerPath.Location = New System.Drawing.Point(9, 397) + Me.lblXulRunnerPath.Location = New System.Drawing.Point(9, 220) Me.lblXulRunnerPath.Name = "lblXulRunnerPath" Me.lblXulRunnerPath.Size = New System.Drawing.Size(93, 15) Me.lblXulRunnerPath.TabIndex = 133 @@ -1108,7 +1145,7 @@ Namespace UI 'btnBrowseXulRunnerPath ' Me.btnBrowseXulRunnerPath.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnBrowseXulRunnerPath.Location = New System.Drawing.Point(297, 413) + Me.btnBrowseXulRunnerPath.Location = New System.Drawing.Point(297, 236) Me.btnBrowseXulRunnerPath.Name = "btnBrowseXulRunnerPath" Me.btnBrowseXulRunnerPath.Size = New System.Drawing.Size(75, 23) Me.btnBrowseXulRunnerPath.TabIndex = 132 @@ -1129,7 +1166,7 @@ Namespace UI 'txtXULrunnerPath ' Me.txtXULrunnerPath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.txtXULrunnerPath.Location = New System.Drawing.Point(27, 415) + Me.txtXULrunnerPath.Location = New System.Drawing.Point(27, 238) Me.txtXULrunnerPath.Name = "txtXULrunnerPath" Me.txtXULrunnerPath.Size = New System.Drawing.Size(264, 23) Me.txtXULrunnerPath.TabIndex = 131 @@ -1146,7 +1183,7 @@ Namespace UI 'Label3 ' Me.Label3.AutoSize = True - Me.Label3.Location = New System.Drawing.Point(9, 371) + Me.Label3.Location = New System.Drawing.Point(9, 281) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(196, 15) Me.Label3.TabIndex = 120 @@ -1188,7 +1225,7 @@ Namespace UI 'numUVNCSCPort ' Me.numUVNCSCPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.numUVNCSCPort.Location = New System.Drawing.Point(225, 367) + Me.numUVNCSCPort.Location = New System.Drawing.Point(225, 277) Me.numUVNCSCPort.Maximum = New Decimal(New Integer() {65535, 0, 0, 0}) Me.numUVNCSCPort.Name = "numUVNCSCPort" Me.numUVNCSCPort.Size = New System.Drawing.Size(72, 23) @@ -1269,6 +1306,26 @@ Namespace UI Me.TabText = "Options" Me.Text = "Options" Me.TabController.ResumeLayout(False) + Me.tabUpdates.ResumeLayout(False) + Me.pnlUpdates.ResumeLayout(False) + Me.pnlUpdateCheck.ResumeLayout(False) + Me.pnlUpdateCheck.PerformLayout() + Me.pnlProxy.ResumeLayout(False) + Me.pnlProxy.PerformLayout() + Me.pnlProxyBasic.ResumeLayout(False) + Me.pnlProxyBasic.PerformLayout() + CType(Me.numProxyPort, System.ComponentModel.ISupportInitialize).EndInit() + Me.pnlProxyAuthentication.ResumeLayout(False) + Me.pnlProxyAuthentication.PerformLayout() + Me.tabStartupExit.ResumeLayout(False) + Me.pnlStartup.ResumeLayout(False) + Me.pnlStartup.PerformLayout() + Me.tabAppearance.ResumeLayout(False) + Me.pnlAppearance.ResumeLayout(False) + Me.pnlAppearance.PerformLayout() + Me.tabTabs.ResumeLayout(False) + Me.pnlTabsAndPanels.ResumeLayout(False) + Me.pnlTabsAndPanels.PerformLayout() Me.tabConnections.ResumeLayout(False) Me.pnlConnections.ResumeLayout(False) Me.pnlConnections.PerformLayout() @@ -1279,28 +1336,9 @@ Namespace UI CType(Me.numAutoSave, System.ComponentModel.ISupportInitialize).EndInit() Me.grpExperimental.ResumeLayout(False) Me.grpExperimental.PerformLayout() - Me.tabStartupExit.ResumeLayout(False) - Me.pnlStartup.ResumeLayout(False) - Me.pnlStartup.PerformLayout() - Me.tabAppearance.ResumeLayout(False) - Me.pnlAppearance.ResumeLayout(False) - Me.pnlAppearance.PerformLayout() - Me.tabTabs.ResumeLayout(False) - Me.pnlTabsAndPanels.ResumeLayout(False) - Me.pnlTabsAndPanels.PerformLayout() - Me.tabErrorsAndInfos.ResumeLayout(False) - Me.pnlErrorsAndInfos.ResumeLayout(False) - Me.pnlErrorsAndInfos.PerformLayout() Me.tabAdvanced.ResumeLayout(False) Me.pnlAdvanced.ResumeLayout(False) Me.pnlAdvanced.PerformLayout() - Me.pnlProxy.ResumeLayout(False) - Me.pnlProxy.PerformLayout() - Me.pnlProxyBasic.ResumeLayout(False) - Me.pnlProxyBasic.PerformLayout() - CType(Me.numProxyPort, System.ComponentModel.ISupportInitialize).EndInit() - Me.pnlProxyAuthentication.ResumeLayout(False) - Me.pnlProxyAuthentication.PerformLayout() CType(Me.numUVNCSCPort, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.numPuttyWaitTime, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) @@ -1528,7 +1566,7 @@ Namespace UI Me.txtSQLPassword.Enabled = chkUseSQLServer.Checked End Sub - Private Sub chkUseOnlyErrorsAndInfosPanel_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkUseOnlyErrorsAndInfosPanel.CheckedChanged + Private Sub chkUseOnlyErrorsAndInfosPanel_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.chkMCInformation.Enabled = Me.chkUseOnlyErrorsAndInfosPanel.Checked Me.chkMCWarnings.Enabled = Me.chkUseOnlyErrorsAndInfosPanel.Checked Me.chkMCErrors.Enabled = Me.chkUseOnlyErrorsAndInfosPanel.Checked @@ -1631,7 +1669,6 @@ Namespace UI lblDefaultCredentials.Text = Language.Base.EmptyUsernamePasswordDomainFields chkSingleClickOnOpenedConnectionSwitchesToIt.Text = Language.Base.SingleClickOnOpenConnectionSwitchesToIt chkSingleClickOnConnectionOpensIt.Text = Language.Base.SingleClickOnConnectionOpensIt - tabErrorsAndInfos.Title = Language.Base.Menu_ErrorsInfos lblSwitchToErrorsAndInfos.Text = Language.Base.SwitchToErrorsAndInfos & ":" chkMCErrors.Text = Language.Base.Errors chkMCWarnings.Text = Language.Base.Warnings @@ -1732,6 +1769,9 @@ Namespace UI End Sub #End Region + Private Sub TabController_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabController.SelectionChanged + + End Sub End Class End Namespace End Namespace \ No newline at end of file diff --git a/mRemoteV1/app.config b/mRemoteV1/app.config index 4dbdce6b..c4218b7d 100644 --- a/mRemoteV1/app.config +++ b/mRemoteV1/app.config @@ -103,7 +103,7 @@ False - True + False False @@ -489,6 +489,12 @@ + + False + + + 7 +