This commit is contained in:
Bobbie Hodgetts
2024-05-09 21:27:51 +01:00
parent b790a7b642
commit 97fff18e7e
82 changed files with 603 additions and 70 deletions

View File

@@ -28,6 +28,7 @@
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
tabControl1 = new TabControl();
tabPage1 = new TabPage();
tabPage3 = new TabPage();
@@ -36,8 +37,10 @@
label1 = new Label();
txtbxOrderSearch = new TextBox();
tabPage2 = new TabPage();
purchaseLineStatusBindingSource = new BindingSource(components);
tabControl1.SuspendLayout();
tabPage3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)purchaseLineStatusBindingSource).BeginInit();
SuspendLayout();
//
// tabControl1
@@ -80,11 +83,15 @@
//
// comboBox1
//
comboBox1.DataSource = purchaseLineStatusBindingSource;
comboBox1.DisplayMember = "PurchaseLineStatusName";
comboBox1.FormattingEnabled = true;
comboBox1.Location = new Point(580, 46);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(214, 23);
comboBox1.TabIndex = 3;
comboBox1.ValueMember = "PurchaseLineStatusId";
comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
//
// dtTmOrderSearch
//
@@ -120,6 +127,11 @@
tabPage2.Text = "FBA Shipments";
tabPage2.UseVisualStyleBackColor = true;
//
// purchaseLineStatusBindingSource
//
purchaseLineStatusBindingSource.DataSource = typeof(Core.Model.Purchase.PurchaseLineStatus);
purchaseLineStatusBindingSource.CurrentChanged += purchaseLineStatusBindingSource_CurrentChanged;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
@@ -132,6 +144,7 @@
tabControl1.ResumeLayout(false);
tabPage3.ResumeLayout(false);
tabPage3.PerformLayout();
((System.ComponentModel.ISupportInitialize)purchaseLineStatusBindingSource).EndInit();
ResumeLayout(false);
}
@@ -145,5 +158,6 @@
private Label label1;
private DateTimePicker dtTmOrderSearch;
private ComboBox comboBox1;
private BindingSource purchaseLineStatusBindingSource;
}
}