GUI/MainForm.Designer.cs
changeset 86 b4f0f206173d
parent 83 3fdadd4a830f
child 111 2b8a8cf92c3a
     1.1 --- a/GUI/MainForm.Designer.cs	Sat Mar 27 19:55:09 2010 +0000
     1.2 +++ b/GUI/MainForm.Designer.cs	Fri Apr 02 16:05:07 2010 +0000
     1.3 @@ -110,6 +110,7 @@
     1.4        this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     1.5        this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     1.6        this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     1.7 +      this.timer = new System.Windows.Forms.Timer(this.components);
     1.8        this.columnsContextMenuStrip.SuspendLayout();
     1.9        this.menuStrip.SuspendLayout();
    1.10        this.splitContainer.Panel1.SuspendLayout();
    1.11 @@ -314,14 +315,14 @@
    1.12        // saveReportToolStripMenuItem
    1.13        // 
    1.14        this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
    1.15 -      this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
    1.16 +      this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
    1.17        this.saveReportToolStripMenuItem.Text = "Save Report...";
    1.18        this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
    1.19        // 
    1.20        // exitToolStripMenuItem
    1.21        // 
    1.22        this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
    1.23 -      this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
    1.24 +      this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
    1.25        this.exitToolStripMenuItem.Text = "Exit";
    1.26        this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
    1.27        // 
    1.28 @@ -558,6 +559,11 @@
    1.29        this.saveFileDialog.RestoreDirectory = true;
    1.30        this.saveFileDialog.Title = "Save Report As";
    1.31        // 
    1.32 +      // timer
    1.33 +      // 
    1.34 +      this.timer.Interval = 1000;
    1.35 +      this.timer.Tick += new System.EventHandler(this.timer_Tick);
    1.36 +      // 
    1.37        // MainForm
    1.38        // 
    1.39        this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
    1.40 @@ -634,6 +640,7 @@
    1.41      private System.Windows.Forms.ToolStripMenuItem flowsMenuItem;
    1.42      private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
    1.43      private System.Windows.Forms.SaveFileDialog saveFileDialog;
    1.44 +    private System.Windows.Forms.Timer timer;
    1.45    }
    1.46  }
    1.47