410 lines
21 KiB
C#
410 lines
21 KiB
C#
namespace GenesisCordonelInterface.UI
|
|
{
|
|
partial class FrmRegisterStore
|
|
{
|
|
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.cbComSlot = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnReadRegister = new System.Windows.Forms.Button();
|
|
this.registerGridView = new System.Windows.Forms.DataGridView();
|
|
this.btnConnect = new System.Windows.Forms.Button();
|
|
this.lblState = new System.Windows.Forms.Label();
|
|
this.timProgress = new System.Windows.Forms.Timer(this.components);
|
|
this.btnGetPCbID = new System.Windows.Forms.Button();
|
|
this.pnlBussy = new System.Windows.Forms.Panel();
|
|
this.lblProgress = new System.Windows.Forms.Label();
|
|
this.lblAction = new System.Windows.Forms.Label();
|
|
this.probarBusy = new System.Windows.Forms.ProgressBar();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.btnReadFwVersions = new System.Windows.Forms.Button();
|
|
this.btnCalibrationRestore = new System.Windows.Forms.Button();
|
|
this.btnBatteryIdle = new System.Windows.Forms.Button();
|
|
this.btnSetDefaultPulse = new System.Windows.Forms.Button();
|
|
this.btnStoreAll = new System.Windows.Forms.Button();
|
|
this.btnRegisterToFile = new System.Windows.Forms.Button();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.btnBatLife = new System.Windows.Forms.Button();
|
|
this.btnRadioPressure = new System.Windows.Forms.Button();
|
|
this.nundCalResultID = new System.Windows.Forms.NumericUpDown();
|
|
this.lblGtbVersion = new System.Windows.Forms.Label();
|
|
this.lblConfigVersion = new System.Windows.Forms.Label();
|
|
this.btnFileToRegister = new System.Windows.Forms.Button();
|
|
this.cbxUseOfflinePwds = new System.Windows.Forms.CheckBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.registerGridView)).BeginInit();
|
|
this.pnlBussy.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.nundCalResultID)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// cbComSlot
|
|
//
|
|
this.cbComSlot.FormattingEnabled = true;
|
|
this.cbComSlot.Location = new System.Drawing.Point(44, 91);
|
|
this.cbComSlot.Name = "cbComSlot";
|
|
this.cbComSlot.Size = new System.Drawing.Size(58, 21);
|
|
this.cbComSlot.TabIndex = 0;
|
|
this.cbComSlot.Text = "1";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(10, 94);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(28, 13);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "Slot:";
|
|
this.label1.Click += new System.EventHandler(this.label1_Click);
|
|
//
|
|
// btnRead
|
|
//
|
|
this.btnReadRegister.Location = new System.Drawing.Point(251, 123);
|
|
this.btnReadRegister.Name = "btnReadRegister";
|
|
this.btnReadRegister.Size = new System.Drawing.Size(110, 30);
|
|
this.btnReadRegister.TabIndex = 2;
|
|
this.btnReadRegister.Text = "Read Meter";
|
|
this.btnReadRegister.UseVisualStyleBackColor = true;
|
|
this.btnReadRegister.Click += new System.EventHandler(this.btnRead_Click);
|
|
//
|
|
// registerGridView
|
|
//
|
|
this.registerGridView.AllowUserToAddRows = false;
|
|
this.registerGridView.AllowUserToDeleteRows = false;
|
|
this.registerGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.registerGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.registerGridView.Location = new System.Drawing.Point(8, 171);
|
|
this.registerGridView.Name = "registerGridView";
|
|
this.registerGridView.Size = new System.Drawing.Size(778, 370);
|
|
this.registerGridView.TabIndex = 3;
|
|
this.registerGridView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.registerGridView_CellClick);
|
|
this.registerGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.registerGridView_CellEndEdit);
|
|
//
|
|
// btnConnect
|
|
//
|
|
this.btnConnect.Location = new System.Drawing.Point(125, 87);
|
|
this.btnConnect.Name = "btnConnect";
|
|
this.btnConnect.Size = new System.Drawing.Size(110, 30);
|
|
this.btnConnect.TabIndex = 4;
|
|
this.btnConnect.Text = "Connect";
|
|
this.btnConnect.UseVisualStyleBackColor = true;
|
|
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
|
|
//
|
|
// lblState
|
|
//
|
|
this.lblState.AutoSize = true;
|
|
this.lblState.Location = new System.Drawing.Point(12, 132);
|
|
this.lblState.Name = "lblState";
|
|
this.lblState.Size = new System.Drawing.Size(78, 13);
|
|
this.lblState.TabIndex = 5;
|
|
this.lblState.Text = "Not connected";
|
|
this.lblState.Click += new System.EventHandler(this.lblState_Click);
|
|
//
|
|
// timProgress
|
|
//
|
|
this.timProgress.Tick += new System.EventHandler(this.TimeProgress_tick);
|
|
//
|
|
// btnGetPCbID
|
|
//
|
|
this.btnGetPCbID.Location = new System.Drawing.Point(399, 16);
|
|
this.btnGetPCbID.Name = "btnGetPCbID";
|
|
this.btnGetPCbID.Size = new System.Drawing.Size(110, 30);
|
|
this.btnGetPCbID.TabIndex = 11;
|
|
this.btnGetPCbID.Text = "Get PCB ID";
|
|
this.btnGetPCbID.UseVisualStyleBackColor = true;
|
|
this.btnGetPCbID.Click += new System.EventHandler(this.btnGetPCbID_Click);
|
|
//
|
|
// pnlBussy
|
|
//
|
|
this.pnlBussy.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.pnlBussy.BackColor = System.Drawing.Color.Transparent;
|
|
this.pnlBussy.Controls.Add(this.lblProgress);
|
|
this.pnlBussy.Controls.Add(this.lblAction);
|
|
this.pnlBussy.Controls.Add(this.probarBusy);
|
|
this.pnlBussy.Controls.Add(this.label3);
|
|
this.pnlBussy.Location = new System.Drawing.Point(8, 171);
|
|
this.pnlBussy.Name = "pnlBussy";
|
|
this.pnlBussy.Size = new System.Drawing.Size(803, 398);
|
|
this.pnlBussy.TabIndex = 51;
|
|
this.pnlBussy.Visible = false;
|
|
//
|
|
// lblProgress
|
|
//
|
|
this.lblProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lblProgress.AutoSize = true;
|
|
this.lblProgress.Location = new System.Drawing.Point(240, 334);
|
|
this.lblProgress.Name = "lblProgress";
|
|
this.lblProgress.Size = new System.Drawing.Size(0, 13);
|
|
this.lblProgress.TabIndex = 3;
|
|
//
|
|
// lblAction
|
|
//
|
|
this.lblAction.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lblAction.AutoSize = true;
|
|
this.lblAction.Location = new System.Drawing.Point(240, 312);
|
|
this.lblAction.Name = "lblAction";
|
|
this.lblAction.Size = new System.Drawing.Size(0, 13);
|
|
this.lblAction.TabIndex = 2;
|
|
//
|
|
// probarBusy
|
|
//
|
|
this.probarBusy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.probarBusy.Location = new System.Drawing.Point(12, 286);
|
|
this.probarBusy.Name = "probarBusy";
|
|
this.probarBusy.Size = new System.Drawing.Size(779, 23);
|
|
this.probarBusy.TabIndex = 1;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(240, 270);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(64, 13);
|
|
this.label3.TabIndex = 0;
|
|
this.label3.Text = "Please wait!";
|
|
//
|
|
// btnReadFwVersions
|
|
//
|
|
this.btnReadFwVersions.Location = new System.Drawing.Point(399, 51);
|
|
this.btnReadFwVersions.Name = "btnReadFwVersions";
|
|
this.btnReadFwVersions.Size = new System.Drawing.Size(110, 30);
|
|
this.btnReadFwVersions.TabIndex = 52;
|
|
this.btnReadFwVersions.Text = "Read FW Versions";
|
|
this.btnReadFwVersions.UseVisualStyleBackColor = true;
|
|
this.btnReadFwVersions.Click += new System.EventHandler(this.btnReadFwVersions_Click);
|
|
//
|
|
// btnCalibrationRestore
|
|
//
|
|
this.btnCalibrationRestore.Location = new System.Drawing.Point(560, 14);
|
|
this.btnCalibrationRestore.Name = "btnCalibrationRestore";
|
|
this.btnCalibrationRestore.Size = new System.Drawing.Size(110, 30);
|
|
this.btnCalibrationRestore.TabIndex = 58;
|
|
this.btnCalibrationRestore.Text = "CalibrationRestore";
|
|
this.btnCalibrationRestore.UseVisualStyleBackColor = true;
|
|
this.btnCalibrationRestore.Visible = false;
|
|
this.btnCalibrationRestore.Click += new System.EventHandler(this.btnCalibrationRestore_Click);
|
|
//
|
|
// btnBatteryIdle
|
|
//
|
|
this.btnBatteryIdle.Location = new System.Drawing.Point(399, 87);
|
|
this.btnBatteryIdle.Name = "btnBatteryIdle";
|
|
this.btnBatteryIdle.Size = new System.Drawing.Size(110, 30);
|
|
this.btnBatteryIdle.TabIndex = 60;
|
|
this.btnBatteryIdle.Text = "Battery Idle";
|
|
this.btnBatteryIdle.UseVisualStyleBackColor = true;
|
|
this.btnBatteryIdle.Visible = false;
|
|
this.btnBatteryIdle.Click += new System.EventHandler(this.btnBatteryIdle_Click);
|
|
//
|
|
// btnSetDefaultPulse
|
|
//
|
|
this.btnSetDefaultPulse.Location = new System.Drawing.Point(560, 85);
|
|
this.btnSetDefaultPulse.Name = "btnSetDefaultPulse";
|
|
this.btnSetDefaultPulse.Size = new System.Drawing.Size(110, 30);
|
|
this.btnSetDefaultPulse.TabIndex = 61;
|
|
this.btnSetDefaultPulse.Text = "Set default Pulse";
|
|
this.btnSetDefaultPulse.UseVisualStyleBackColor = true;
|
|
this.btnSetDefaultPulse.Click += new System.EventHandler(this.btnSetDefaultPulse_Click);
|
|
//
|
|
// btnStoreAll
|
|
//
|
|
this.btnStoreAll.Location = new System.Drawing.Point(251, 16);
|
|
this.btnStoreAll.Name = "btnStoreAll";
|
|
this.btnStoreAll.Size = new System.Drawing.Size(110, 28);
|
|
this.btnStoreAll.TabIndex = 62;
|
|
this.btnStoreAll.Text = "Store All";
|
|
this.btnStoreAll.UseVisualStyleBackColor = true;
|
|
this.btnStoreAll.Click += new System.EventHandler(this.btnStoreAll_Click);
|
|
//
|
|
// btnRegisterToFile
|
|
//
|
|
this.btnRegisterToFile.Location = new System.Drawing.Point(251, 50);
|
|
this.btnRegisterToFile.Name = "btnRegisterToFile";
|
|
this.btnRegisterToFile.Size = new System.Drawing.Size(110, 30);
|
|
this.btnRegisterToFile.TabIndex = 63;
|
|
this.btnRegisterToFile.Text = "RegisterToFile";
|
|
this.btnRegisterToFile.UseVisualStyleBackColor = true;
|
|
this.btnRegisterToFile.Click += new System.EventHandler(this.btnRegisterToFile_Click);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Interval = 5000;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// btnBatLife
|
|
//
|
|
this.btnBatLife.Location = new System.Drawing.Point(399, 123);
|
|
this.btnBatLife.Name = "btnBatLife";
|
|
this.btnBatLife.Size = new System.Drawing.Size(110, 30);
|
|
this.btnBatLife.TabIndex = 71;
|
|
this.btnBatLife.Text = "Lifetime";
|
|
this.btnBatLife.UseVisualStyleBackColor = true;
|
|
this.btnBatLife.Click += new System.EventHandler(this.btnBatLife_Click);
|
|
//
|
|
// btnRadioPressure
|
|
//
|
|
this.btnRadioPressure.Location = new System.Drawing.Point(560, 123);
|
|
this.btnRadioPressure.Name = "btnRadioPressure";
|
|
this.btnRadioPressure.Size = new System.Drawing.Size(110, 30);
|
|
this.btnRadioPressure.TabIndex = 72;
|
|
this.btnRadioPressure.Text = "Activate Radio";
|
|
this.btnRadioPressure.UseVisualStyleBackColor = true;
|
|
this.btnRadioPressure.Click += new System.EventHandler(this.btnRadioPressure_Click);
|
|
//
|
|
// nundCalResultID
|
|
//
|
|
this.nundCalResultID.Location = new System.Drawing.Point(562, 58);
|
|
this.nundCalResultID.Maximum = new decimal(new int[] {
|
|
999999,
|
|
0,
|
|
0,
|
|
0});
|
|
this.nundCalResultID.Name = "nundCalResultID";
|
|
this.nundCalResultID.Size = new System.Drawing.Size(110, 20);
|
|
this.nundCalResultID.TabIndex = 73;
|
|
this.nundCalResultID.Visible = false;
|
|
//
|
|
// lblGtbVersion
|
|
//
|
|
this.lblGtbVersion.AutoSize = true;
|
|
this.lblGtbVersion.Location = new System.Drawing.Point(10, 10);
|
|
this.lblGtbVersion.Name = "lblGtbVersion";
|
|
this.lblGtbVersion.Size = new System.Drawing.Size(79, 13);
|
|
this.lblGtbVersion.TabIndex = 75;
|
|
this.lblGtbVersion.Text = "GTB Version: ?";
|
|
//
|
|
// lblConfigVersion
|
|
//
|
|
this.lblConfigVersion.AutoSize = true;
|
|
this.lblConfigVersion.Location = new System.Drawing.Point(10, 33);
|
|
this.lblConfigVersion.Name = "lblConfigVersion";
|
|
this.lblConfigVersion.Size = new System.Drawing.Size(119, 13);
|
|
this.lblConfigVersion.TabIndex = 76;
|
|
this.lblConfigVersion.Text = "Configuration Version: ?";
|
|
//
|
|
// btnFileToRegister
|
|
//
|
|
this.btnFileToRegister.Location = new System.Drawing.Point(251, 87);
|
|
this.btnFileToRegister.Name = "btnFileToRegister";
|
|
this.btnFileToRegister.Size = new System.Drawing.Size(110, 30);
|
|
this.btnFileToRegister.TabIndex = 77;
|
|
this.btnFileToRegister.Text = "FileToRegister";
|
|
this.btnFileToRegister.UseVisualStyleBackColor = true;
|
|
this.btnFileToRegister.Click += new System.EventHandler(this.btnFileToRegister_Click);
|
|
//
|
|
// cbxUseOfflinePwds
|
|
//
|
|
this.cbxUseOfflinePwds.AutoSize = true;
|
|
this.cbxUseOfflinePwds.Location = new System.Drawing.Point(12, 59);
|
|
this.cbxUseOfflinePwds.Name = "cbxUseOfflinePwds";
|
|
this.cbxUseOfflinePwds.Size = new System.Drawing.Size(132, 17);
|
|
this.cbxUseOfflinePwds.TabIndex = 78;
|
|
this.cbxUseOfflinePwds.Text = "Use Offline Passwords";
|
|
this.cbxUseOfflinePwds.UseVisualStyleBackColor = true;
|
|
this.cbxUseOfflinePwds.CheckedChanged += new System.EventHandler(this.cbxUseOfflinePwds_CheckedChanged);
|
|
//
|
|
// FrmRegisterStore
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(803, 553);
|
|
this.Controls.Add(this.cbxUseOfflinePwds);
|
|
this.Controls.Add(this.btnFileToRegister);
|
|
this.Controls.Add(this.lblConfigVersion);
|
|
this.Controls.Add(this.lblGtbVersion);
|
|
this.Controls.Add(this.nundCalResultID);
|
|
this.Controls.Add(this.btnRadioPressure);
|
|
this.Controls.Add(this.btnBatLife);
|
|
this.Controls.Add(this.btnRegisterToFile);
|
|
this.Controls.Add(this.btnStoreAll);
|
|
this.Controls.Add(this.btnSetDefaultPulse);
|
|
this.Controls.Add(this.btnBatteryIdle);
|
|
this.Controls.Add(this.btnCalibrationRestore);
|
|
this.Controls.Add(this.btnReadFwVersions);
|
|
this.Controls.Add(this.pnlBussy);
|
|
this.Controls.Add(this.btnGetPCbID);
|
|
this.Controls.Add(this.lblState);
|
|
this.Controls.Add(this.btnConnect);
|
|
this.Controls.Add(this.registerGridView);
|
|
this.Controls.Add(this.btnReadRegister);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.cbComSlot);
|
|
this.Name = "FrmRegisterStore";
|
|
this.Text = "frmRegisterStore";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmRegisterStore_FormClosing);
|
|
this.Load += new System.EventHandler(this.frmRegisterStore_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.registerGridView)).EndInit();
|
|
this.pnlBussy.ResumeLayout(false);
|
|
this.pnlBussy.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.nundCalResultID)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox cbComSlot;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnReadRegister;
|
|
private System.Windows.Forms.DataGridView registerGridView;
|
|
private System.Windows.Forms.Button btnConnect;
|
|
private System.Windows.Forms.Label lblState;
|
|
private System.Windows.Forms.Timer timProgress;
|
|
private System.Windows.Forms.Button btnGetPCbID;
|
|
private System.Windows.Forms.Panel pnlBussy;
|
|
private System.Windows.Forms.Label lblProgress;
|
|
private System.Windows.Forms.Label lblAction;
|
|
private System.Windows.Forms.ProgressBar probarBusy;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Button btnReadFwVersions;
|
|
private System.Windows.Forms.Button btnCalibrationRestore;
|
|
private System.Windows.Forms.Button btnBatteryIdle;
|
|
private System.Windows.Forms.Button btnSetDefaultPulse;
|
|
private System.Windows.Forms.Button btnStoreAll;
|
|
private System.Windows.Forms.Button btnRegisterToFile;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.Button btnBatLife;
|
|
private System.Windows.Forms.Button btnRadioPressure;
|
|
private System.Windows.Forms.NumericUpDown nundCalResultID;
|
|
private System.Windows.Forms.Label lblGtbVersion;
|
|
private System.Windows.Forms.Label lblConfigVersion;
|
|
private System.Windows.Forms.Button btnFileToRegister;
|
|
private System.Windows.Forms.CheckBox cbxUseOfflinePwds;
|
|
}
|
|
} |