Now the SQLITE database is operationnal and is fed with driver infos
This commit is contained in:
Generated
+24
-11
@@ -30,8 +30,9 @@
|
||||
{
|
||||
this.btnSettings = new System.Windows.Forms.Button();
|
||||
this.tbxResult = new System.Windows.Forms.TextBox();
|
||||
this.btnUpdate = new System.Windows.Forms.Button();
|
||||
this.btnStartDecoding = new System.Windows.Forms.Button();
|
||||
this.pbxResult = new System.Windows.Forms.PictureBox();
|
||||
this.btnStopUpdating = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbxResult)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
@@ -54,15 +55,15 @@
|
||||
this.tbxResult.Size = new System.Drawing.Size(310, 249);
|
||||
this.tbxResult.TabIndex = 1;
|
||||
//
|
||||
// btnUpdate
|
||||
// btnStartDecoding
|
||||
//
|
||||
this.btnUpdate.Location = new System.Drawing.Point(120, 12);
|
||||
this.btnUpdate.Name = "btnUpdate";
|
||||
this.btnUpdate.Size = new System.Drawing.Size(102, 53);
|
||||
this.btnUpdate.TabIndex = 2;
|
||||
this.btnUpdate.Text = "Update";
|
||||
this.btnUpdate.UseVisualStyleBackColor = true;
|
||||
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
|
||||
this.btnStartDecoding.Location = new System.Drawing.Point(120, 12);
|
||||
this.btnStartDecoding.Name = "btnStartDecoding";
|
||||
this.btnStartDecoding.Size = new System.Drawing.Size(102, 53);
|
||||
this.btnStartDecoding.TabIndex = 2;
|
||||
this.btnStartDecoding.Text = "Start";
|
||||
this.btnStartDecoding.UseVisualStyleBackColor = true;
|
||||
this.btnStartDecoding.Click += new System.EventHandler(this.btnUpdate_Click);
|
||||
//
|
||||
// pbxResult
|
||||
//
|
||||
@@ -73,13 +74,24 @@
|
||||
this.pbxResult.TabIndex = 3;
|
||||
this.pbxResult.TabStop = false;
|
||||
//
|
||||
// btnStopUpdating
|
||||
//
|
||||
this.btnStopUpdating.Location = new System.Drawing.Point(228, 12);
|
||||
this.btnStopUpdating.Name = "btnStopUpdating";
|
||||
this.btnStopUpdating.Size = new System.Drawing.Size(102, 53);
|
||||
this.btnStopUpdating.TabIndex = 4;
|
||||
this.btnStopUpdating.Text = "Stop";
|
||||
this.btnStopUpdating.UseVisualStyleBackColor = true;
|
||||
this.btnStopUpdating.Click += new System.EventHandler(this.btnStopUpdating_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 335);
|
||||
this.Controls.Add(this.btnStopUpdating);
|
||||
this.Controls.Add(this.pbxResult);
|
||||
this.Controls.Add(this.btnUpdate);
|
||||
this.Controls.Add(this.btnStartDecoding);
|
||||
this.Controls.Add(this.tbxResult);
|
||||
this.Controls.Add(this.btnSettings);
|
||||
this.Name = "Form1";
|
||||
@@ -96,8 +108,9 @@
|
||||
|
||||
private System.Windows.Forms.Button btnSettings;
|
||||
private System.Windows.Forms.TextBox tbxResult;
|
||||
private System.Windows.Forms.Button btnUpdate;
|
||||
private System.Windows.Forms.Button btnStartDecoding;
|
||||
private System.Windows.Forms.PictureBox pbxResult;
|
||||
private System.Windows.Forms.Button btnStopUpdating;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user