C2017-003: Support SQL Server for storing of Referenced Object data

This commit is contained in:
2020-01-09 15:39:17 +00:00
parent 7fbc9e358d
commit de58331ffb
19 changed files with 5088 additions and 1230 deletions

View File

@@ -32,6 +32,9 @@ namespace VEPROMS
this.ppBtnOk = new System.Windows.Forms.Button();
this.ppBtnCancel = new System.Windows.Forms.Button();
this.ppPnlRODb = new DevComponents.DotNetBar.PanelEx();
this.ppBtnTestSQL = new System.Windows.Forms.Button();
this.ppTxtSQL = new System.Windows.Forms.TextBox();
this.ppLblSQL = new System.Windows.Forms.Label();
this.ppTxtExt = new System.Windows.Forms.TextBox();
this.ppTxtPath = new System.Windows.Forms.TextBox();
this.ppLblGraphicFileExtLoc = new System.Windows.Forms.Label();
@@ -71,6 +74,9 @@ namespace VEPROMS
//
this.ppPnlRODb.CanvasColor = System.Drawing.SystemColors.Control;
this.ppPnlRODb.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
this.ppPnlRODb.Controls.Add(this.ppBtnTestSQL);
this.ppPnlRODb.Controls.Add(this.ppTxtSQL);
this.ppPnlRODb.Controls.Add(this.ppLblSQL);
this.ppPnlRODb.Controls.Add(this.ppTxtExt);
this.ppPnlRODb.Controls.Add(this.ppTxtPath);
this.ppPnlRODb.Controls.Add(this.ppLblGraphicFileExtLoc);
@@ -92,6 +98,33 @@ namespace VEPROMS
this.ppPnlRODb.Style.GradientAngle = 90;
this.ppPnlRODb.TabIndex = 3;
//
// ppBtnTestSQL
//
this.ppBtnTestSQL.Location = new System.Drawing.Point(542, 110);
this.ppBtnTestSQL.Name = "ppBtnTestSQL";
this.ppBtnTestSQL.Size = new System.Drawing.Size(82, 46);
this.ppBtnTestSQL.TabIndex = 44;
this.ppBtnTestSQL.Text = "Test Connect";
this.ppBtnTestSQL.UseVisualStyleBackColor = true;
this.ppBtnTestSQL.Click += new System.EventHandler(this.ppBtnTestSQL_Click);
//
// ppTxtSQL
//
this.ppTxtSQL.Location = new System.Drawing.Point(129, 156);
this.ppTxtSQL.Name = "ppTxtSQL";
this.ppTxtSQL.Size = new System.Drawing.Size(507, 22);
this.ppTxtSQL.TabIndex = 43;
this.ppTxtSQL.TextChanged += new System.EventHandler(this.ppTxtSQL_TextChanged);
//
// ppLblSQL
//
this.ppLblSQL.AutoSize = true;
this.ppLblSQL.Location = new System.Drawing.Point(30, 156);
this.ppLblSQL.Name = "ppLblSQL";
this.ppLblSQL.Size = new System.Drawing.Size(92, 17);
this.ppLblSQL.TabIndex = 42;
this.ppLblSQL.Text = "SQL Connect";
//
// ppTxtExt
//
this.ppTxtExt.Enabled = false;
@@ -203,5 +236,8 @@ namespace VEPROMS
private System.Windows.Forms.Label ppLblExt;
private System.Windows.Forms.TextBox ppTxtPath;
private System.Windows.Forms.TextBox ppTxtExt;
private System.Windows.Forms.Button ppBtnTestSQL;
private System.Windows.Forms.TextBox ppTxtSQL;
private System.Windows.Forms.Label ppLblSQL;
}
}