Server/MainForm.Designer.cs
author StephaneLenclud
Thu, 05 Feb 2015 17:04:59 +0100
changeset 106 32270ff62819
parent 105 4196b0ca97d9
child 110 31e63bd07dfa
permissions -rw-r--r--
Server: Adding scrolling speed setting.
Fixing issue with alignment of newly created text field not being set properly.
Client: Now starting-up first client automatically in debug mode.
     1 namespace SharpDisplayManager
     2 {
     3     partial class MainForm
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing)
    17             {
    18                 if (iNotifyIcon != null)
    19                 {
    20                     iNotifyIcon.Dispose();
    21                     iNotifyIcon = null;
    22                 }
    23                 
    24                 if (components != null)
    25                 {
    26                     components.Dispose();
    27                 }
    28             }
    29             base.Dispose(disposing);
    30         }
    31 
    32         #region Windows Form Designer generated code
    33 
    34         /// <summary>
    35         /// Required method for Designer support - do not modify
    36         /// the contents of this method with the code editor.
    37         /// </summary>
    38         private void InitializeComponent()
    39         {
    40 			this.components = new System.ComponentModel.Container();
    41 			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
    42 			this.panelDisplay = new System.Windows.Forms.Panel();
    43 			this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    44 			this.marqueeLabelTop = new SharpDisplayManager.MarqueeLabel();
    45 			this.marqueeLabelBottom = new SharpDisplayManager.MarqueeLabel();
    46 			this.fontDialog = new System.Windows.Forms.FontDialog();
    47 			this.timer = new System.Windows.Forms.Timer(this.components);
    48 			this.statusStrip = new System.Windows.Forms.StatusStrip();
    49 			this.toolStripStatusLabelConnect = new System.Windows.Forms.ToolStripStatusLabel();
    50 			this.toolStripStatusLabelSpring = new System.Windows.Forms.ToolStripStatusLabel();
    51 			this.toolStripStatusLabelPower = new System.Windows.Forms.ToolStripStatusLabel();
    52 			this.toolStripStatusLabelFps = new System.Windows.Forms.ToolStripStatusLabel();
    53 			this.tabPageClients = new System.Windows.Forms.TabPage();
    54 			this.buttonCloseClients = new System.Windows.Forms.Button();
    55 			this.buttonStartClient = new System.Windows.Forms.Button();
    56 			this.treeViewClients = new System.Windows.Forms.TreeView();
    57 			this.tabPageDisplay = new System.Windows.Forms.TabPage();
    58 			this.buttonShowClock = new System.Windows.Forms.Button();
    59 			this.buttonHideClock = new System.Windows.Forms.Button();
    60 			this.buttonPowerOff = new System.Windows.Forms.Button();
    61 			this.buttonPowerOn = new System.Windows.Forms.Button();
    62 			this.labelTimerInterval = new System.Windows.Forms.Label();
    63 			this.maskedTextBoxTimerInterval = new System.Windows.Forms.MaskedTextBox();
    64 			this.comboBoxDisplayType = new System.Windows.Forms.ComboBox();
    65 			this.buttonSuspend = new System.Windows.Forms.Button();
    66 			this.checkBoxConnectOnStartup = new System.Windows.Forms.CheckBox();
    67 			this.trackBarBrightness = new System.Windows.Forms.TrackBar();
    68 			this.buttonFill = new System.Windows.Forms.Button();
    69 			this.buttonClear = new System.Windows.Forms.Button();
    70 			this.buttonClose = new System.Windows.Forms.Button();
    71 			this.buttonOpen = new System.Windows.Forms.Button();
    72 			this.buttonCapture = new System.Windows.Forms.Button();
    73 			this.labelWarning = new System.Windows.Forms.Label();
    74 			this.checkBoxFixedPitchFontOnly = new System.Windows.Forms.CheckBox();
    75 			this.checkBoxShowBorders = new System.Windows.Forms.CheckBox();
    76 			this.buttonFont = new System.Windows.Forms.Button();
    77 			this.tabControl = new System.Windows.Forms.TabControl();
    78 			this.tabPageDesign = new System.Windows.Forms.TabPage();
    79 			this.labelScrollLoopSeparator = new System.Windows.Forms.Label();
    80 			this.textBoxScrollLoopSeparator = new System.Windows.Forms.TextBox();
    81 			this.labelMinFontSize = new System.Windows.Forms.Label();
    82 			this.maskedTextBoxMinFontSize = new System.Windows.Forms.MaskedTextBox();
    83 			this.checkBoxScaleToFit = new System.Windows.Forms.CheckBox();
    84 			this.checkBoxInverseColors = new System.Windows.Forms.CheckBox();
    85 			this.buttonAlignRight = new System.Windows.Forms.Button();
    86 			this.buttonAlignCenter = new System.Windows.Forms.Button();
    87 			this.buttonAlignLeft = new System.Windows.Forms.Button();
    88 			this.buttonRemoveColumn = new System.Windows.Forms.Button();
    89 			this.buttonAddColumn = new System.Windows.Forms.Button();
    90 			this.checkBoxReverseScreen = new System.Windows.Forms.CheckBox();
    91 			this.buttonRemoveRow = new System.Windows.Forms.Button();
    92 			this.buttonAddRow = new System.Windows.Forms.Button();
    93 			this.tabPageApp = new System.Windows.Forms.TabPage();
    94 			this.checkBoxStartMinimized = new System.Windows.Forms.CheckBox();
    95 			this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
    96 			this.checkBoxAutoStart = new System.Windows.Forms.CheckBox();
    97 			this.buttonUpdate = new System.Windows.Forms.Button();
    98 			this.labelFontWidth = new System.Windows.Forms.Label();
    99 			this.labelFontHeight = new System.Windows.Forms.Label();
   100 			this.pictureBoxDemo = new System.Windows.Forms.PictureBox();
   101 			this.maskedTextBoxScrollingSpeed = new System.Windows.Forms.MaskedTextBox();
   102 			this.labelScrollingSpeed = new System.Windows.Forms.Label();
   103 			this.panelDisplay.SuspendLayout();
   104 			this.tableLayoutPanel.SuspendLayout();
   105 			this.statusStrip.SuspendLayout();
   106 			this.tabPageClients.SuspendLayout();
   107 			this.tabPageDisplay.SuspendLayout();
   108 			((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).BeginInit();
   109 			this.tabControl.SuspendLayout();
   110 			this.tabPageDesign.SuspendLayout();
   111 			this.tabPageApp.SuspendLayout();
   112 			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).BeginInit();
   113 			this.SuspendLayout();
   114 			// 
   115 			// panelDisplay
   116 			// 
   117 			this.panelDisplay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
   118 			this.panelDisplay.Controls.Add(this.tableLayoutPanel);
   119 			this.panelDisplay.Location = new System.Drawing.Point(173, 40);
   120 			this.panelDisplay.Margin = new System.Windows.Forms.Padding(0);
   121 			this.panelDisplay.Name = "panelDisplay";
   122 			this.panelDisplay.Size = new System.Drawing.Size(258, 66);
   123 			this.panelDisplay.TabIndex = 12;
   124 			// 
   125 			// tableLayoutPanel
   126 			// 
   127 			this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   128             | System.Windows.Forms.AnchorStyles.Left) 
   129             | System.Windows.Forms.AnchorStyles.Right)));
   130 			this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
   131 			this.tableLayoutPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
   132 			this.tableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
   133 			this.tableLayoutPanel.ColumnCount = 1;
   134 			this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
   135 			this.tableLayoutPanel.Controls.Add(this.marqueeLabelTop, 0, 0);
   136 			this.tableLayoutPanel.Controls.Add(this.marqueeLabelBottom, 0, 1);
   137 			this.tableLayoutPanel.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
   138 			this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
   139 			this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
   140 			this.tableLayoutPanel.Name = "tableLayoutPanel";
   141 			this.tableLayoutPanel.RowCount = 2;
   142 			this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   143 			this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   144 			this.tableLayoutPanel.Size = new System.Drawing.Size(256, 64);
   145 			this.tableLayoutPanel.TabIndex = 5;
   146 			this.tableLayoutPanel.SizeChanged += new System.EventHandler(this.tableLayoutPanel_SizeChanged);
   147 			// 
   148 			// marqueeLabelTop
   149 			// 
   150 			this.marqueeLabelTop.AutoEllipsis = true;
   151 			this.marqueeLabelTop.AutoSize = true;
   152 			this.marqueeLabelTop.BackColor = System.Drawing.Color.Transparent;
   153 			this.marqueeLabelTop.Dock = System.Windows.Forms.DockStyle.Fill;
   154 			this.marqueeLabelTop.Location = new System.Drawing.Point(1, 1);
   155 			this.marqueeLabelTop.Margin = new System.Windows.Forms.Padding(0);
   156 			this.marqueeLabelTop.MinFontSize = 15F;
   157 			this.marqueeLabelTop.Name = "marqueeLabelTop";
   158 			this.marqueeLabelTop.OwnTimer = false;
   159 			this.marqueeLabelTop.PixelsPerSecond = 64;
   160 			this.marqueeLabelTop.ScaleToFit = true;
   161 			this.marqueeLabelTop.Separator = "|";
   162 			this.marqueeLabelTop.Size = new System.Drawing.Size(254, 30);
   163 			this.marqueeLabelTop.TabIndex = 2;
   164 			this.marqueeLabelTop.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
   165 			this.marqueeLabelTop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   166 			this.marqueeLabelTop.UseCompatibleTextRendering = true;
   167 			// 
   168 			// marqueeLabelBottom
   169 			// 
   170 			this.marqueeLabelBottom.AutoEllipsis = true;
   171 			this.marqueeLabelBottom.AutoSize = true;
   172 			this.marqueeLabelBottom.Dock = System.Windows.Forms.DockStyle.Fill;
   173 			this.marqueeLabelBottom.Location = new System.Drawing.Point(1, 32);
   174 			this.marqueeLabelBottom.Margin = new System.Windows.Forms.Padding(0);
   175 			this.marqueeLabelBottom.MinFontSize = 15F;
   176 			this.marqueeLabelBottom.Name = "marqueeLabelBottom";
   177 			this.marqueeLabelBottom.OwnTimer = false;
   178 			this.marqueeLabelBottom.PixelsPerSecond = 64;
   179 			this.marqueeLabelBottom.ScaleToFit = true;
   180 			this.marqueeLabelBottom.Separator = "|";
   181 			this.marqueeLabelBottom.Size = new System.Drawing.Size(254, 31);
   182 			this.marqueeLabelBottom.TabIndex = 3;
   183 			this.marqueeLabelBottom.Text = "abcdefghijklmnopqrst-0123456789";
   184 			this.marqueeLabelBottom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   185 			this.marqueeLabelBottom.UseCompatibleTextRendering = true;
   186 			// 
   187 			// timer
   188 			// 
   189 			this.timer.Enabled = true;
   190 			this.timer.Interval = 50;
   191 			this.timer.Tick += new System.EventHandler(this.timer_Tick);
   192 			// 
   193 			// statusStrip
   194 			// 
   195 			this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   196             this.toolStripStatusLabelConnect,
   197             this.toolStripStatusLabelSpring,
   198             this.toolStripStatusLabelPower,
   199             this.toolStripStatusLabelFps});
   200 			this.statusStrip.Location = new System.Drawing.Point(0, 420);
   201 			this.statusStrip.Name = "statusStrip";
   202 			this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
   203 			this.statusStrip.Size = new System.Drawing.Size(624, 22);
   204 			this.statusStrip.TabIndex = 1;
   205 			this.statusStrip.Text = "statusStrip";
   206 			// 
   207 			// toolStripStatusLabelConnect
   208 			// 
   209 			this.toolStripStatusLabelConnect.Name = "toolStripStatusLabelConnect";
   210 			this.toolStripStatusLabelConnect.Size = new System.Drawing.Size(86, 17);
   211 			this.toolStripStatusLabelConnect.Text = "Not connected";
   212 			// 
   213 			// toolStripStatusLabelSpring
   214 			// 
   215 			this.toolStripStatusLabelSpring.Name = "toolStripStatusLabelSpring";
   216 			this.toolStripStatusLabelSpring.Size = new System.Drawing.Size(473, 17);
   217 			this.toolStripStatusLabelSpring.Spring = true;
   218 			// 
   219 			// toolStripStatusLabelPower
   220 			// 
   221 			this.toolStripStatusLabelPower.Name = "toolStripStatusLabelPower";
   222 			this.toolStripStatusLabelPower.Size = new System.Drawing.Size(24, 17);
   223 			this.toolStripStatusLabelPower.Text = "NA";
   224 			// 
   225 			// toolStripStatusLabelFps
   226 			// 
   227 			this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps";
   228 			this.toolStripStatusLabelFps.Size = new System.Drawing.Size(26, 17);
   229 			this.toolStripStatusLabelFps.Text = "FPS";
   230 			// 
   231 			// tabPageClients
   232 			// 
   233 			this.tabPageClients.Controls.Add(this.buttonCloseClients);
   234 			this.tabPageClients.Controls.Add(this.buttonStartClient);
   235 			this.tabPageClients.Controls.Add(this.treeViewClients);
   236 			this.tabPageClients.Location = new System.Drawing.Point(4, 22);
   237 			this.tabPageClients.Name = "tabPageClients";
   238 			this.tabPageClients.Padding = new System.Windows.Forms.Padding(3);
   239 			this.tabPageClients.Size = new System.Drawing.Size(592, 242);
   240 			this.tabPageClients.TabIndex = 2;
   241 			this.tabPageClients.Text = "Clients";
   242 			this.tabPageClients.UseVisualStyleBackColor = true;
   243 			// 
   244 			// buttonCloseClients
   245 			// 
   246 			this.buttonCloseClients.Location = new System.Drawing.Point(6, 35);
   247 			this.buttonCloseClients.Name = "buttonCloseClients";
   248 			this.buttonCloseClients.Size = new System.Drawing.Size(75, 23);
   249 			this.buttonCloseClients.TabIndex = 20;
   250 			this.buttonCloseClients.Text = "Close Clients";
   251 			this.buttonCloseClients.UseVisualStyleBackColor = true;
   252 			this.buttonCloseClients.Click += new System.EventHandler(this.buttonCloseClients_Click);
   253 			// 
   254 			// buttonStartClient
   255 			// 
   256 			this.buttonStartClient.Location = new System.Drawing.Point(6, 6);
   257 			this.buttonStartClient.Name = "buttonStartClient";
   258 			this.buttonStartClient.Size = new System.Drawing.Size(75, 23);
   259 			this.buttonStartClient.TabIndex = 19;
   260 			this.buttonStartClient.Text = "Start Client";
   261 			this.buttonStartClient.UseVisualStyleBackColor = true;
   262 			this.buttonStartClient.Click += new System.EventHandler(this.buttonStartClient_Click);
   263 			// 
   264 			// treeViewClients
   265 			// 
   266 			this.treeViewClients.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   267             | System.Windows.Forms.AnchorStyles.Left) 
   268             | System.Windows.Forms.AnchorStyles.Right)));
   269 			this.treeViewClients.Location = new System.Drawing.Point(87, 6);
   270 			this.treeViewClients.Name = "treeViewClients";
   271 			this.treeViewClients.Size = new System.Drawing.Size(499, 233);
   272 			this.treeViewClients.TabIndex = 0;
   273 			this.treeViewClients.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewClients_AfterSelect);
   274 			// 
   275 			// tabPageDisplay
   276 			// 
   277 			this.tabPageDisplay.Controls.Add(this.buttonShowClock);
   278 			this.tabPageDisplay.Controls.Add(this.buttonHideClock);
   279 			this.tabPageDisplay.Controls.Add(this.buttonPowerOff);
   280 			this.tabPageDisplay.Controls.Add(this.buttonPowerOn);
   281 			this.tabPageDisplay.Controls.Add(this.labelTimerInterval);
   282 			this.tabPageDisplay.Controls.Add(this.maskedTextBoxTimerInterval);
   283 			this.tabPageDisplay.Controls.Add(this.comboBoxDisplayType);
   284 			this.tabPageDisplay.Controls.Add(this.buttonSuspend);
   285 			this.tabPageDisplay.Controls.Add(this.checkBoxConnectOnStartup);
   286 			this.tabPageDisplay.Controls.Add(this.trackBarBrightness);
   287 			this.tabPageDisplay.Controls.Add(this.buttonFill);
   288 			this.tabPageDisplay.Controls.Add(this.buttonClear);
   289 			this.tabPageDisplay.Controls.Add(this.buttonClose);
   290 			this.tabPageDisplay.Controls.Add(this.buttonOpen);
   291 			this.tabPageDisplay.Controls.Add(this.buttonCapture);
   292 			this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
   293 			this.tabPageDisplay.Name = "tabPageDisplay";
   294 			this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
   295 			this.tabPageDisplay.Size = new System.Drawing.Size(592, 242);
   296 			this.tabPageDisplay.TabIndex = 0;
   297 			this.tabPageDisplay.Text = "Display";
   298 			this.tabPageDisplay.UseVisualStyleBackColor = true;
   299 			// 
   300 			// buttonShowClock
   301 			// 
   302 			this.buttonShowClock.Location = new System.Drawing.Point(293, 124);
   303 			this.buttonShowClock.Name = "buttonShowClock";
   304 			this.buttonShowClock.Size = new System.Drawing.Size(75, 23);
   305 			this.buttonShowClock.TabIndex = 23;
   306 			this.buttonShowClock.Text = "Show Clock";
   307 			this.buttonShowClock.UseVisualStyleBackColor = true;
   308 			this.buttonShowClock.Click += new System.EventHandler(this.buttonShowClock_Click);
   309 			// 
   310 			// buttonHideClock
   311 			// 
   312 			this.buttonHideClock.Location = new System.Drawing.Point(293, 153);
   313 			this.buttonHideClock.Name = "buttonHideClock";
   314 			this.buttonHideClock.Size = new System.Drawing.Size(75, 23);
   315 			this.buttonHideClock.TabIndex = 22;
   316 			this.buttonHideClock.Text = "Hide Clock";
   317 			this.buttonHideClock.UseVisualStyleBackColor = true;
   318 			this.buttonHideClock.Click += new System.EventHandler(this.buttonHideClock_Click);
   319 			// 
   320 			// buttonPowerOff
   321 			// 
   322 			this.buttonPowerOff.Location = new System.Drawing.Point(293, 211);
   323 			this.buttonPowerOff.Name = "buttonPowerOff";
   324 			this.buttonPowerOff.Size = new System.Drawing.Size(75, 23);
   325 			this.buttonPowerOff.TabIndex = 21;
   326 			this.buttonPowerOff.Text = "OFF";
   327 			this.buttonPowerOff.UseVisualStyleBackColor = true;
   328 			this.buttonPowerOff.Click += new System.EventHandler(this.buttonPowerOff_Click);
   329 			// 
   330 			// buttonPowerOn
   331 			// 
   332 			this.buttonPowerOn.Location = new System.Drawing.Point(293, 182);
   333 			this.buttonPowerOn.Name = "buttonPowerOn";
   334 			this.buttonPowerOn.Size = new System.Drawing.Size(75, 23);
   335 			this.buttonPowerOn.TabIndex = 20;
   336 			this.buttonPowerOn.Text = "ON";
   337 			this.buttonPowerOn.UseVisualStyleBackColor = true;
   338 			this.buttonPowerOn.Click += new System.EventHandler(this.buttonPowerOn_Click);
   339 			// 
   340 			// labelTimerInterval
   341 			// 
   342 			this.labelTimerInterval.AutoSize = true;
   343 			this.labelTimerInterval.Location = new System.Drawing.Point(184, 45);
   344 			this.labelTimerInterval.Name = "labelTimerInterval";
   345 			this.labelTimerInterval.Size = new System.Drawing.Size(98, 13);
   346 			this.labelTimerInterval.TabIndex = 19;
   347 			this.labelTimerInterval.Text = "Timer interval (ms) :";
   348 			// 
   349 			// maskedTextBoxTimerInterval
   350 			// 
   351 			this.maskedTextBoxTimerInterval.Location = new System.Drawing.Point(288, 42);
   352 			this.maskedTextBoxTimerInterval.Mask = "000";
   353 			this.maskedTextBoxTimerInterval.Name = "maskedTextBoxTimerInterval";
   354 			this.maskedTextBoxTimerInterval.PromptChar = ' ';
   355 			this.maskedTextBoxTimerInterval.Size = new System.Drawing.Size(24, 20);
   356 			this.maskedTextBoxTimerInterval.TabIndex = 18;
   357 			this.maskedTextBoxTimerInterval.TextChanged += new System.EventHandler(this.maskedTextBoxTimerInterval_TextChanged);
   358 			// 
   359 			// comboBoxDisplayType
   360 			// 
   361 			this.comboBoxDisplayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   362 			this.comboBoxDisplayType.FormattingEnabled = true;
   363 			this.comboBoxDisplayType.Location = new System.Drawing.Point(187, 9);
   364 			this.comboBoxDisplayType.Name = "comboBoxDisplayType";
   365 			this.comboBoxDisplayType.Size = new System.Drawing.Size(181, 21);
   366 			this.comboBoxDisplayType.TabIndex = 17;
   367 			this.comboBoxDisplayType.SelectedIndexChanged += new System.EventHandler(this.comboBoxDisplayType_SelectedIndexChanged);
   368 			// 
   369 			// buttonSuspend
   370 			// 
   371 			this.buttonSuspend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   372 			this.buttonSuspend.Location = new System.Drawing.Point(6, 184);
   373 			this.buttonSuspend.Name = "buttonSuspend";
   374 			this.buttonSuspend.Size = new System.Drawing.Size(75, 23);
   375 			this.buttonSuspend.TabIndex = 16;
   376 			this.buttonSuspend.Text = "Pause";
   377 			this.buttonSuspend.UseVisualStyleBackColor = true;
   378 			this.buttonSuspend.Click += new System.EventHandler(this.buttonSuspend_Click);
   379 			// 
   380 			// checkBoxConnectOnStartup
   381 			// 
   382 			this.checkBoxConnectOnStartup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   383 			this.checkBoxConnectOnStartup.AutoSize = true;
   384 			this.checkBoxConnectOnStartup.Location = new System.Drawing.Point(113, 217);
   385 			this.checkBoxConnectOnStartup.Name = "checkBoxConnectOnStartup";
   386 			this.checkBoxConnectOnStartup.Size = new System.Drawing.Size(119, 17);
   387 			this.checkBoxConnectOnStartup.TabIndex = 13;
   388 			this.checkBoxConnectOnStartup.Text = "Connect on stratup ";
   389 			this.checkBoxConnectOnStartup.UseVisualStyleBackColor = true;
   390 			this.checkBoxConnectOnStartup.CheckedChanged += new System.EventHandler(this.checkBoxConnectOnStartup_CheckedChanged);
   391 			// 
   392 			// trackBarBrightness
   393 			// 
   394 			this.trackBarBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   395             | System.Windows.Forms.AnchorStyles.Right)));
   396 			this.trackBarBrightness.BackColor = System.Drawing.SystemColors.Window;
   397 			this.trackBarBrightness.Location = new System.Drawing.Point(544, 9);
   398 			this.trackBarBrightness.Name = "trackBarBrightness";
   399 			this.trackBarBrightness.Orientation = System.Windows.Forms.Orientation.Vertical;
   400 			this.trackBarBrightness.Size = new System.Drawing.Size(45, 225);
   401 			this.trackBarBrightness.TabIndex = 10;
   402 			this.trackBarBrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
   403 			this.trackBarBrightness.Scroll += new System.EventHandler(this.trackBarBrightness_Scroll);
   404 			// 
   405 			// buttonFill
   406 			// 
   407 			this.buttonFill.Location = new System.Drawing.Point(6, 93);
   408 			this.buttonFill.Name = "buttonFill";
   409 			this.buttonFill.Size = new System.Drawing.Size(75, 23);
   410 			this.buttonFill.TabIndex = 9;
   411 			this.buttonFill.Text = "Fill";
   412 			this.buttonFill.UseVisualStyleBackColor = true;
   413 			this.buttonFill.Click += new System.EventHandler(this.buttonFill_Click);
   414 			// 
   415 			// buttonClear
   416 			// 
   417 			this.buttonClear.Location = new System.Drawing.Point(6, 64);
   418 			this.buttonClear.Name = "buttonClear";
   419 			this.buttonClear.Size = new System.Drawing.Size(75, 23);
   420 			this.buttonClear.TabIndex = 8;
   421 			this.buttonClear.Text = "Clear";
   422 			this.buttonClear.UseVisualStyleBackColor = true;
   423 			this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
   424 			// 
   425 			// buttonClose
   426 			// 
   427 			this.buttonClose.Location = new System.Drawing.Point(6, 35);
   428 			this.buttonClose.Name = "buttonClose";
   429 			this.buttonClose.Size = new System.Drawing.Size(75, 23);
   430 			this.buttonClose.TabIndex = 7;
   431 			this.buttonClose.Text = "Close";
   432 			this.buttonClose.UseVisualStyleBackColor = true;
   433 			this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
   434 			// 
   435 			// buttonOpen
   436 			// 
   437 			this.buttonOpen.Location = new System.Drawing.Point(6, 6);
   438 			this.buttonOpen.Name = "buttonOpen";
   439 			this.buttonOpen.Size = new System.Drawing.Size(75, 23);
   440 			this.buttonOpen.TabIndex = 6;
   441 			this.buttonOpen.Text = "Open";
   442 			this.buttonOpen.UseVisualStyleBackColor = true;
   443 			this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
   444 			// 
   445 			// buttonCapture
   446 			// 
   447 			this.buttonCapture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   448 			this.buttonCapture.Location = new System.Drawing.Point(6, 213);
   449 			this.buttonCapture.Name = "buttonCapture";
   450 			this.buttonCapture.Size = new System.Drawing.Size(75, 23);
   451 			this.buttonCapture.TabIndex = 5;
   452 			this.buttonCapture.Text = "Capture";
   453 			this.buttonCapture.UseVisualStyleBackColor = true;
   454 			this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
   455 			// 
   456 			// labelWarning
   457 			// 
   458 			this.labelWarning.AutoSize = true;
   459 			this.labelWarning.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   460 			this.labelWarning.ForeColor = System.Drawing.Color.Red;
   461 			this.labelWarning.Location = new System.Drawing.Point(9, 9);
   462 			this.labelWarning.Name = "labelWarning";
   463 			this.labelWarning.Size = new System.Drawing.Size(80, 16);
   464 			this.labelWarning.TabIndex = 18;
   465 			this.labelWarning.Text = "WARNING";
   466 			this.labelWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   467 			this.labelWarning.Visible = false;
   468 			// 
   469 			// checkBoxFixedPitchFontOnly
   470 			// 
   471 			this.checkBoxFixedPitchFontOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   472 			this.checkBoxFixedPitchFontOnly.AutoSize = true;
   473 			this.checkBoxFixedPitchFontOnly.Location = new System.Drawing.Point(87, 217);
   474 			this.checkBoxFixedPitchFontOnly.Name = "checkBoxFixedPitchFontOnly";
   475 			this.checkBoxFixedPitchFontOnly.Size = new System.Drawing.Size(120, 17);
   476 			this.checkBoxFixedPitchFontOnly.TabIndex = 17;
   477 			this.checkBoxFixedPitchFontOnly.Text = "Fixed pitch font only";
   478 			this.checkBoxFixedPitchFontOnly.UseVisualStyleBackColor = true;
   479 			// 
   480 			// checkBoxShowBorders
   481 			// 
   482 			this.checkBoxShowBorders.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   483 			this.checkBoxShowBorders.AutoSize = true;
   484 			this.checkBoxShowBorders.Location = new System.Drawing.Point(485, 29);
   485 			this.checkBoxShowBorders.Name = "checkBoxShowBorders";
   486 			this.checkBoxShowBorders.Size = new System.Drawing.Size(91, 17);
   487 			this.checkBoxShowBorders.TabIndex = 11;
   488 			this.checkBoxShowBorders.Text = "Show borders";
   489 			this.checkBoxShowBorders.UseVisualStyleBackColor = true;
   490 			this.checkBoxShowBorders.CheckedChanged += new System.EventHandler(this.checkBoxShowBorders_CheckedChanged);
   491 			// 
   492 			// buttonFont
   493 			// 
   494 			this.buttonFont.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   495 			this.buttonFont.Location = new System.Drawing.Point(6, 213);
   496 			this.buttonFont.Name = "buttonFont";
   497 			this.buttonFont.Size = new System.Drawing.Size(75, 23);
   498 			this.buttonFont.TabIndex = 0;
   499 			this.buttonFont.Text = "Select Font";
   500 			this.buttonFont.UseVisualStyleBackColor = true;
   501 			this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
   502 			// 
   503 			// tabControl
   504 			// 
   505 			this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   506             | System.Windows.Forms.AnchorStyles.Left) 
   507             | System.Windows.Forms.AnchorStyles.Right)));
   508 			this.tabControl.Controls.Add(this.tabPageDisplay);
   509 			this.tabControl.Controls.Add(this.tabPageClients);
   510 			this.tabControl.Controls.Add(this.tabPageDesign);
   511 			this.tabControl.Controls.Add(this.tabPageApp);
   512 			this.tabControl.Location = new System.Drawing.Point(12, 139);
   513 			this.tabControl.Name = "tabControl";
   514 			this.tabControl.SelectedIndex = 0;
   515 			this.tabControl.Size = new System.Drawing.Size(600, 268);
   516 			this.tabControl.TabIndex = 0;
   517 			// 
   518 			// tabPageDesign
   519 			// 
   520 			this.tabPageDesign.Controls.Add(this.labelScrollingSpeed);
   521 			this.tabPageDesign.Controls.Add(this.maskedTextBoxScrollingSpeed);
   522 			this.tabPageDesign.Controls.Add(this.labelScrollLoopSeparator);
   523 			this.tabPageDesign.Controls.Add(this.textBoxScrollLoopSeparator);
   524 			this.tabPageDesign.Controls.Add(this.labelMinFontSize);
   525 			this.tabPageDesign.Controls.Add(this.maskedTextBoxMinFontSize);
   526 			this.tabPageDesign.Controls.Add(this.checkBoxScaleToFit);
   527 			this.tabPageDesign.Controls.Add(this.checkBoxInverseColors);
   528 			this.tabPageDesign.Controls.Add(this.buttonAlignRight);
   529 			this.tabPageDesign.Controls.Add(this.buttonAlignCenter);
   530 			this.tabPageDesign.Controls.Add(this.buttonAlignLeft);
   531 			this.tabPageDesign.Controls.Add(this.buttonRemoveColumn);
   532 			this.tabPageDesign.Controls.Add(this.checkBoxFixedPitchFontOnly);
   533 			this.tabPageDesign.Controls.Add(this.buttonAddColumn);
   534 			this.tabPageDesign.Controls.Add(this.buttonFont);
   535 			this.tabPageDesign.Controls.Add(this.checkBoxReverseScreen);
   536 			this.tabPageDesign.Controls.Add(this.buttonRemoveRow);
   537 			this.tabPageDesign.Controls.Add(this.buttonAddRow);
   538 			this.tabPageDesign.Controls.Add(this.checkBoxShowBorders);
   539 			this.tabPageDesign.Location = new System.Drawing.Point(4, 22);
   540 			this.tabPageDesign.Name = "tabPageDesign";
   541 			this.tabPageDesign.Padding = new System.Windows.Forms.Padding(3);
   542 			this.tabPageDesign.Size = new System.Drawing.Size(592, 242);
   543 			this.tabPageDesign.TabIndex = 3;
   544 			this.tabPageDesign.Text = "Design";
   545 			this.tabPageDesign.UseVisualStyleBackColor = true;
   546 			// 
   547 			// labelScrollLoopSeparator
   548 			// 
   549 			this.labelScrollLoopSeparator.AutoSize = true;
   550 			this.labelScrollLoopSeparator.Location = new System.Drawing.Point(90, 145);
   551 			this.labelScrollLoopSeparator.Name = "labelScrollLoopSeparator";
   552 			this.labelScrollLoopSeparator.Size = new System.Drawing.Size(109, 13);
   553 			this.labelScrollLoopSeparator.TabIndex = 26;
   554 			this.labelScrollLoopSeparator.Text = "Scroll loop separator :";
   555 			// 
   556 			// textBoxScrollLoopSeparator
   557 			// 
   558 			this.textBoxScrollLoopSeparator.Location = new System.Drawing.Point(205, 142);
   559 			this.textBoxScrollLoopSeparator.Name = "textBoxScrollLoopSeparator";
   560 			this.textBoxScrollLoopSeparator.Size = new System.Drawing.Size(74, 20);
   561 			this.textBoxScrollLoopSeparator.TabIndex = 25;
   562 			this.textBoxScrollLoopSeparator.TextChanged += new System.EventHandler(this.textBoxScrollLoopSeparator_TextChanged);
   563 			// 
   564 			// labelMinFontSize
   565 			// 
   566 			this.labelMinFontSize.AutoSize = true;
   567 			this.labelMinFontSize.Location = new System.Drawing.Point(84, 194);
   568 			this.labelMinFontSize.Name = "labelMinFontSize";
   569 			this.labelMinFontSize.Size = new System.Drawing.Size(119, 13);
   570 			this.labelMinFontSize.TabIndex = 24;
   571 			this.labelMinFontSize.Text = "Minimum font size (pts) :";
   572 			// 
   573 			// maskedTextBoxMinFontSize
   574 			// 
   575 			this.maskedTextBoxMinFontSize.Location = new System.Drawing.Point(205, 191);
   576 			this.maskedTextBoxMinFontSize.Mask = "000";
   577 			this.maskedTextBoxMinFontSize.Name = "maskedTextBoxMinFontSize";
   578 			this.maskedTextBoxMinFontSize.PromptChar = ' ';
   579 			this.maskedTextBoxMinFontSize.Size = new System.Drawing.Size(24, 20);
   580 			this.maskedTextBoxMinFontSize.TabIndex = 23;
   581 			this.maskedTextBoxMinFontSize.TextChanged += new System.EventHandler(this.maskedTextBoxMinFontSize_TextChanged);
   582 			// 
   583 			// checkBoxScaleToFit
   584 			// 
   585 			this.checkBoxScaleToFit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   586 			this.checkBoxScaleToFit.AutoSize = true;
   587 			this.checkBoxScaleToFit.Location = new System.Drawing.Point(87, 168);
   588 			this.checkBoxScaleToFit.Name = "checkBoxScaleToFit";
   589 			this.checkBoxScaleToFit.Size = new System.Drawing.Size(201, 17);
   590 			this.checkBoxScaleToFit.TabIndex = 22;
   591 			this.checkBoxScaleToFit.Text = "Try scale font down to avoid scrolling";
   592 			this.checkBoxScaleToFit.UseVisualStyleBackColor = true;
   593 			this.checkBoxScaleToFit.CheckedChanged += new System.EventHandler(this.checkBoxScaleToFit_CheckedChanged);
   594 			// 
   595 			// checkBoxInverseColors
   596 			// 
   597 			this.checkBoxInverseColors.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   598 			this.checkBoxInverseColors.AutoSize = true;
   599 			this.checkBoxInverseColors.Location = new System.Drawing.Point(485, 52);
   600 			this.checkBoxInverseColors.Name = "checkBoxInverseColors";
   601 			this.checkBoxInverseColors.Size = new System.Drawing.Size(92, 17);
   602 			this.checkBoxInverseColors.TabIndex = 21;
   603 			this.checkBoxInverseColors.Text = "Inverse colors";
   604 			this.checkBoxInverseColors.UseVisualStyleBackColor = true;
   605 			this.checkBoxInverseColors.CheckedChanged += new System.EventHandler(this.checkBoxInverseColors_CheckedChanged);
   606 			// 
   607 			// buttonAlignRight
   608 			// 
   609 			this.buttonAlignRight.Location = new System.Drawing.Point(170, 81);
   610 			this.buttonAlignRight.Name = "buttonAlignRight";
   611 			this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
   612 			this.buttonAlignRight.TabIndex = 20;
   613 			this.buttonAlignRight.Text = "Align Right";
   614 			this.buttonAlignRight.UseVisualStyleBackColor = true;
   615 			this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
   616 			// 
   617 			// buttonAlignCenter
   618 			// 
   619 			this.buttonAlignCenter.Location = new System.Drawing.Point(89, 81);
   620 			this.buttonAlignCenter.Name = "buttonAlignCenter";
   621 			this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
   622 			this.buttonAlignCenter.TabIndex = 19;
   623 			this.buttonAlignCenter.Text = "Align Center";
   624 			this.buttonAlignCenter.UseVisualStyleBackColor = true;
   625 			this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
   626 			// 
   627 			// buttonAlignLeft
   628 			// 
   629 			this.buttonAlignLeft.Location = new System.Drawing.Point(7, 81);
   630 			this.buttonAlignLeft.Name = "buttonAlignLeft";
   631 			this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
   632 			this.buttonAlignLeft.TabIndex = 18;
   633 			this.buttonAlignLeft.Text = "Align Left";
   634 			this.buttonAlignLeft.UseVisualStyleBackColor = true;
   635 			this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
   636 			// 
   637 			// buttonRemoveColumn
   638 			// 
   639 			this.buttonRemoveColumn.Location = new System.Drawing.Point(88, 37);
   640 			this.buttonRemoveColumn.Name = "buttonRemoveColumn";
   641 			this.buttonRemoveColumn.Size = new System.Drawing.Size(75, 23);
   642 			this.buttonRemoveColumn.TabIndex = 3;
   643 			this.buttonRemoveColumn.Text = "Remove col.";
   644 			this.buttonRemoveColumn.UseVisualStyleBackColor = true;
   645 			this.buttonRemoveColumn.Click += new System.EventHandler(this.buttonRemoveColumn_Click);
   646 			// 
   647 			// buttonAddColumn
   648 			// 
   649 			this.buttonAddColumn.Location = new System.Drawing.Point(89, 7);
   650 			this.buttonAddColumn.Name = "buttonAddColumn";
   651 			this.buttonAddColumn.Size = new System.Drawing.Size(75, 23);
   652 			this.buttonAddColumn.TabIndex = 2;
   653 			this.buttonAddColumn.Text = "Add column";
   654 			this.buttonAddColumn.UseVisualStyleBackColor = true;
   655 			this.buttonAddColumn.Click += new System.EventHandler(this.buttonAddColumn_Click);
   656 			// 
   657 			// checkBoxReverseScreen
   658 			// 
   659 			this.checkBoxReverseScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   660 			this.checkBoxReverseScreen.AutoSize = true;
   661 			this.checkBoxReverseScreen.Location = new System.Drawing.Point(485, 6);
   662 			this.checkBoxReverseScreen.Name = "checkBoxReverseScreen";
   663 			this.checkBoxReverseScreen.Size = new System.Drawing.Size(101, 17);
   664 			this.checkBoxReverseScreen.TabIndex = 14;
   665 			this.checkBoxReverseScreen.Text = "Reverse screen";
   666 			this.checkBoxReverseScreen.UseVisualStyleBackColor = true;
   667 			this.checkBoxReverseScreen.CheckedChanged += new System.EventHandler(this.checkBoxReverseScreen_CheckedChanged);
   668 			// 
   669 			// buttonRemoveRow
   670 			// 
   671 			this.buttonRemoveRow.Location = new System.Drawing.Point(7, 37);
   672 			this.buttonRemoveRow.Name = "buttonRemoveRow";
   673 			this.buttonRemoveRow.Size = new System.Drawing.Size(75, 23);
   674 			this.buttonRemoveRow.TabIndex = 1;
   675 			this.buttonRemoveRow.Text = "Remove row";
   676 			this.buttonRemoveRow.UseVisualStyleBackColor = true;
   677 			this.buttonRemoveRow.Click += new System.EventHandler(this.buttonRemoveRow_Click);
   678 			// 
   679 			// buttonAddRow
   680 			// 
   681 			this.buttonAddRow.Location = new System.Drawing.Point(7, 7);
   682 			this.buttonAddRow.Name = "buttonAddRow";
   683 			this.buttonAddRow.Size = new System.Drawing.Size(75, 23);
   684 			this.buttonAddRow.TabIndex = 0;
   685 			this.buttonAddRow.Text = "Add row";
   686 			this.buttonAddRow.UseVisualStyleBackColor = true;
   687 			this.buttonAddRow.Click += new System.EventHandler(this.buttonAddRow_Click);
   688 			// 
   689 			// tabPageApp
   690 			// 
   691 			this.tabPageApp.Controls.Add(this.checkBoxStartMinimized);
   692 			this.tabPageApp.Controls.Add(this.checkBoxMinimizeToTray);
   693 			this.tabPageApp.Controls.Add(this.checkBoxAutoStart);
   694 			this.tabPageApp.Controls.Add(this.buttonUpdate);
   695 			this.tabPageApp.Location = new System.Drawing.Point(4, 22);
   696 			this.tabPageApp.Name = "tabPageApp";
   697 			this.tabPageApp.Padding = new System.Windows.Forms.Padding(3);
   698 			this.tabPageApp.Size = new System.Drawing.Size(592, 242);
   699 			this.tabPageApp.TabIndex = 4;
   700 			this.tabPageApp.Text = "Application";
   701 			this.tabPageApp.UseVisualStyleBackColor = true;
   702 			// 
   703 			// checkBoxStartMinimized
   704 			// 
   705 			this.checkBoxStartMinimized.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   706 			this.checkBoxStartMinimized.AutoSize = true;
   707 			this.checkBoxStartMinimized.Location = new System.Drawing.Point(8, 144);
   708 			this.checkBoxStartMinimized.Name = "checkBoxStartMinimized";
   709 			this.checkBoxStartMinimized.Size = new System.Drawing.Size(96, 17);
   710 			this.checkBoxStartMinimized.TabIndex = 16;
   711 			this.checkBoxStartMinimized.Text = "Start minimized";
   712 			this.checkBoxStartMinimized.UseVisualStyleBackColor = true;
   713 			this.checkBoxStartMinimized.CheckedChanged += new System.EventHandler(this.checkBoxStartMinimized_CheckedChanged);
   714 			// 
   715 			// checkBoxMinimizeToTray
   716 			// 
   717 			this.checkBoxMinimizeToTray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   718 			this.checkBoxMinimizeToTray.AutoSize = true;
   719 			this.checkBoxMinimizeToTray.Location = new System.Drawing.Point(8, 167);
   720 			this.checkBoxMinimizeToTray.Name = "checkBoxMinimizeToTray";
   721 			this.checkBoxMinimizeToTray.Size = new System.Drawing.Size(133, 17);
   722 			this.checkBoxMinimizeToTray.TabIndex = 15;
   723 			this.checkBoxMinimizeToTray.Text = "Minimize to system tray";
   724 			this.checkBoxMinimizeToTray.UseVisualStyleBackColor = true;
   725 			this.checkBoxMinimizeToTray.CheckedChanged += new System.EventHandler(this.checkBoxMinimizeToTray_CheckedChanged);
   726 			// 
   727 			// checkBoxAutoStart
   728 			// 
   729 			this.checkBoxAutoStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   730 			this.checkBoxAutoStart.AutoSize = true;
   731 			this.checkBoxAutoStart.Location = new System.Drawing.Point(8, 190);
   732 			this.checkBoxAutoStart.Name = "checkBoxAutoStart";
   733 			this.checkBoxAutoStart.Size = new System.Drawing.Size(143, 17);
   734 			this.checkBoxAutoStart.TabIndex = 14;
   735 			this.checkBoxAutoStart.Text = "Run on Windows startup";
   736 			this.checkBoxAutoStart.UseVisualStyleBackColor = true;
   737 			this.checkBoxAutoStart.CheckedChanged += new System.EventHandler(this.checkBoxAutoStart_CheckedChanged);
   738 			// 
   739 			// buttonUpdate
   740 			// 
   741 			this.buttonUpdate.Location = new System.Drawing.Point(6, 213);
   742 			this.buttonUpdate.Name = "buttonUpdate";
   743 			this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
   744 			this.buttonUpdate.TabIndex = 0;
   745 			this.buttonUpdate.Text = "Update";
   746 			this.buttonUpdate.UseVisualStyleBackColor = true;
   747 			this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
   748 			// 
   749 			// labelFontWidth
   750 			// 
   751 			this.labelFontWidth.AutoSize = true;
   752 			this.labelFontWidth.Location = new System.Drawing.Point(13, 29);
   753 			this.labelFontWidth.Name = "labelFontWidth";
   754 			this.labelFontWidth.Size = new System.Drawing.Size(56, 13);
   755 			this.labelFontWidth.TabIndex = 19;
   756 			this.labelFontWidth.Text = "Font width";
   757 			// 
   758 			// labelFontHeight
   759 			// 
   760 			this.labelFontHeight.AutoSize = true;
   761 			this.labelFontHeight.Location = new System.Drawing.Point(13, 46);
   762 			this.labelFontHeight.Name = "labelFontHeight";
   763 			this.labelFontHeight.Size = new System.Drawing.Size(60, 13);
   764 			this.labelFontHeight.TabIndex = 20;
   765 			this.labelFontHeight.Text = "Font height";
   766 			// 
   767 			// pictureBoxDemo
   768 			// 
   769 			this.pictureBoxDemo.Location = new System.Drawing.Point(478, 54);
   770 			this.pictureBoxDemo.Name = "pictureBoxDemo";
   771 			this.pictureBoxDemo.Size = new System.Drawing.Size(100, 50);
   772 			this.pictureBoxDemo.TabIndex = 21;
   773 			this.pictureBoxDemo.TabStop = false;
   774 			// 
   775 			// maskedTextBoxScrollingSpeed
   776 			// 
   777 			this.maskedTextBoxScrollingSpeed.Location = new System.Drawing.Point(205, 116);
   778 			this.maskedTextBoxScrollingSpeed.Mask = "000";
   779 			this.maskedTextBoxScrollingSpeed.Name = "maskedTextBoxScrollingSpeed";
   780 			this.maskedTextBoxScrollingSpeed.PromptChar = ' ';
   781 			this.maskedTextBoxScrollingSpeed.Size = new System.Drawing.Size(24, 20);
   782 			this.maskedTextBoxScrollingSpeed.TabIndex = 27;
   783 			this.maskedTextBoxScrollingSpeed.TextChanged += new System.EventHandler(this.maskedTextBoxScrollingSpeed_TextChanged);
   784 			// 
   785 			// labelScrollingSpeed
   786 			// 
   787 			this.labelScrollingSpeed.AutoSize = true;
   788 			this.labelScrollingSpeed.Location = new System.Drawing.Point(84, 119);
   789 			this.labelScrollingSpeed.Name = "labelScrollingSpeed";
   790 			this.labelScrollingSpeed.Size = new System.Drawing.Size(115, 13);
   791 			this.labelScrollingSpeed.TabIndex = 28;
   792 			this.labelScrollingSpeed.Text = "Scrolling speed (px/s) :";
   793 			// 
   794 			// MainForm
   795 			// 
   796 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   797 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   798 			this.ClientSize = new System.Drawing.Size(624, 442);
   799 			this.Controls.Add(this.pictureBoxDemo);
   800 			this.Controls.Add(this.labelFontHeight);
   801 			this.Controls.Add(this.labelFontWidth);
   802 			this.Controls.Add(this.labelWarning);
   803 			this.Controls.Add(this.statusStrip);
   804 			this.Controls.Add(this.tabControl);
   805 			this.Controls.Add(this.panelDisplay);
   806 			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
   807 			this.MinimumSize = new System.Drawing.Size(640, 480);
   808 			this.Name = "MainForm";
   809 			this.Text = "Sharp Display Manager";
   810 			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
   811 			this.Load += new System.EventHandler(this.MainForm_Load);
   812 			this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
   813 			this.Resize += new System.EventHandler(this.MainForm_Resize);
   814 			this.panelDisplay.ResumeLayout(false);
   815 			this.tableLayoutPanel.ResumeLayout(false);
   816 			this.tableLayoutPanel.PerformLayout();
   817 			this.statusStrip.ResumeLayout(false);
   818 			this.statusStrip.PerformLayout();
   819 			this.tabPageClients.ResumeLayout(false);
   820 			this.tabPageDisplay.ResumeLayout(false);
   821 			this.tabPageDisplay.PerformLayout();
   822 			((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).EndInit();
   823 			this.tabControl.ResumeLayout(false);
   824 			this.tabPageDesign.ResumeLayout(false);
   825 			this.tabPageDesign.PerformLayout();
   826 			this.tabPageApp.ResumeLayout(false);
   827 			this.tabPageApp.PerformLayout();
   828 			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).EndInit();
   829 			this.ResumeLayout(false);
   830 			this.PerformLayout();
   831 
   832         }
   833 
   834         #endregion
   835 
   836         private System.Windows.Forms.FontDialog fontDialog;
   837         private System.Windows.Forms.Timer timer;
   838         private System.Windows.Forms.StatusStrip statusStrip;
   839         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelConnect;
   840         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelFps;
   841         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpring;
   842         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelPower;
   843         private System.Windows.Forms.Panel panelDisplay;
   844         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
   845         private MarqueeLabel marqueeLabelTop;
   846         private MarqueeLabel marqueeLabelBottom;
   847         private System.Windows.Forms.TabPage tabPageClients;
   848         private System.Windows.Forms.TreeView treeViewClients;
   849         private System.Windows.Forms.TabPage tabPageDisplay;
   850         private System.Windows.Forms.CheckBox checkBoxFixedPitchFontOnly;
   851         private System.Windows.Forms.Button buttonSuspend;
   852         private System.Windows.Forms.CheckBox checkBoxConnectOnStartup;
   853         private System.Windows.Forms.CheckBox checkBoxShowBorders;
   854         private System.Windows.Forms.TrackBar trackBarBrightness;
   855         private System.Windows.Forms.Button buttonFill;
   856         private System.Windows.Forms.Button buttonClear;
   857         private System.Windows.Forms.Button buttonClose;
   858         private System.Windows.Forms.Button buttonOpen;
   859         private System.Windows.Forms.Button buttonCapture;
   860         private System.Windows.Forms.Button buttonFont;
   861         private System.Windows.Forms.TabControl tabControl;
   862         private System.Windows.Forms.Button buttonCloseClients;
   863         private System.Windows.Forms.Button buttonStartClient;
   864         private System.Windows.Forms.Label labelWarning;
   865         private System.Windows.Forms.TabPage tabPageDesign;
   866         private System.Windows.Forms.Button buttonRemoveColumn;
   867         private System.Windows.Forms.Button buttonAddColumn;
   868         private System.Windows.Forms.Button buttonRemoveRow;
   869         private System.Windows.Forms.Button buttonAddRow;
   870         private System.Windows.Forms.CheckBox checkBoxReverseScreen;
   871         private System.Windows.Forms.Button buttonAlignRight;
   872         private System.Windows.Forms.Button buttonAlignCenter;
   873         private System.Windows.Forms.Button buttonAlignLeft;
   874         private System.Windows.Forms.ComboBox comboBoxDisplayType;
   875         private System.Windows.Forms.MaskedTextBox maskedTextBoxTimerInterval;
   876         private System.Windows.Forms.Label labelTimerInterval;
   877         private System.Windows.Forms.Button buttonPowerOff;
   878         private System.Windows.Forms.Button buttonPowerOn;
   879         private System.Windows.Forms.Button buttonShowClock;
   880         private System.Windows.Forms.Button buttonHideClock;
   881         private System.Windows.Forms.Label labelFontWidth;
   882         private System.Windows.Forms.Label labelFontHeight;
   883         private System.Windows.Forms.CheckBox checkBoxInverseColors;
   884         private System.Windows.Forms.PictureBox pictureBoxDemo;
   885         private System.Windows.Forms.TabPage tabPageApp;
   886         private System.Windows.Forms.Button buttonUpdate;
   887 		private System.Windows.Forms.CheckBox checkBoxAutoStart;
   888 		private System.Windows.Forms.CheckBox checkBoxStartMinimized;
   889 		private System.Windows.Forms.CheckBox checkBoxMinimizeToTray;
   890         private System.Windows.Forms.MaskedTextBox maskedTextBoxMinFontSize;
   891         private System.Windows.Forms.CheckBox checkBoxScaleToFit;
   892         private System.Windows.Forms.Label labelMinFontSize;
   893         private System.Windows.Forms.Label labelScrollLoopSeparator;
   894         private System.Windows.Forms.TextBox textBoxScrollLoopSeparator;
   895 		private System.Windows.Forms.Label labelScrollingSpeed;
   896 		private System.Windows.Forms.MaskedTextBox maskedTextBoxScrollingSpeed;
   897     }
   898 }
   899