This commit is contained in:
2022-07-22 18:44:03 +00:00
parent c9799d26e6
commit 07becaee80
9 changed files with 198 additions and 93 deletions

View File

@@ -32,22 +32,24 @@
this.lblPath = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// lblCompany
//
this.lblCompany.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblCompany.Location = new System.Drawing.Point(12, 9);
this.lblCompany.Location = new System.Drawing.Point(10, 5);
this.lblCompany.Name = "lblCompany";
this.lblCompany.Size = new System.Drawing.Size(613, 24);
this.lblCompany.Size = new System.Drawing.Size(610, 24);
this.lblCompany.TabIndex = 0;
this.lblCompany.Text = "A company";
//
// lblPath
//
this.lblPath.Location = new System.Drawing.Point(12, 33);
this.lblPath.Location = new System.Drawing.Point(10, 37);
this.lblPath.Name = "lblPath";
this.lblPath.Size = new System.Drawing.Size(613, 47);
this.lblPath.Size = new System.Drawing.Size(610, 47);
this.lblPath.TabIndex = 1;
this.lblPath.Text = "path";
//
@@ -55,7 +57,7 @@
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(12, 111);
this.btnCancel.Location = new System.Drawing.Point(13, 115);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 3;
@@ -65,7 +67,7 @@
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(550, 111);
this.btnOK.Location = new System.Drawing.Point(545, 115);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 4;
@@ -73,18 +75,27 @@
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
this.panel1.Controls.Add(this.btnOK);
this.panel1.Controls.Add(this.lblPath);
this.panel1.Controls.Add(this.lblCompany);
this.panel1.Controls.Add(this.btnCancel);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(637, 150);
this.panel1.TabIndex = 5;
//
// ApproveCompanyFile
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(637, 146);
this.ClientSize = new System.Drawing.Size(637, 150);
this.ControlBox = false;
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.lblPath);
this.Controls.Add(this.lblCompany);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "ApproveCompanyFile";
this.ShowInTaskbar = false;
@@ -92,6 +103,7 @@
this.Text = "AyaNova QBI will work with this company file";
this.TopMost = true;
this.Load += new System.EventHandler(this.ApproveCompanyFile_Load);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -102,5 +114,6 @@
private System.Windows.Forms.Label lblPath;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Panel panel1;
}
}