| | |
| | | private void InitializeComponent() |
| | | { |
| | | this.components = new System.ComponentModel.Container(); |
| | | System.Windows.Forms.Timer timer1; |
| | | this.btnReadData = new System.Windows.Forms.Button(); |
| | | this.timer1 = new System.Windows.Forms.Timer(this.components); |
| | | timer1 = new System.Windows.Forms.Timer(this.components); |
| | | this.SuspendLayout(); |
| | | // |
| | | // timer1 |
| | | // |
| | | timer1.Enabled = true; |
| | | timer1.Interval = 5000; |
| | | timer1.Tick += new System.EventHandler(this.timer1_Tick); |
| | | // |
| | | // btnReadData |
| | | // |
| | |
| | | this.btnReadData.UseVisualStyleBackColor = true; |
| | | this.btnReadData.Click += new System.EventHandler(this.btnReadData_Click); |
| | | // |
| | | // timer1 |
| | | // |
| | | this.timer1.Enabled = true; |
| | | this.timer1.Interval = 60000; |
| | | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); |
| | | // |
| | | // Form1 |
| | | // |
| | | this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F); |
| | |
| | | this.Controls.Add(this.btnReadData); |
| | | this.Name = "Form1"; |
| | | this.Text = "Form1"; |
| | | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); |
| | | this.ResumeLayout(false); |
| | | |
| | | } |
| | |
| | | #endregion |
| | | |
| | | private System.Windows.Forms.Button btnReadData; |
| | | private System.Windows.Forms.Timer timer1; |
| | | } |
| | | } |
| | | |