This commit is contained in:
lindellian 2020-04-30 14:52:32 -07:00
parent af81fe389e
commit 2ff2ea1e1e
2 changed files with 6 additions and 0 deletions

1
Form1.Designer.cs generated
View File

@ -740,6 +740,7 @@
this.MinimumSize = new System.Drawing.Size(1421, 806);
this.Name = "Form1";
this.Text = "KentYouthDB";
this.Load += new System.EventHandler(this.Form1_Load);
this.topTableLayoutPanel.ResumeLayout(false);
this.topTableLayoutPanel.PerformLayout();
this.mainMenuStrip.ResumeLayout(false);

View File

@ -37,6 +37,10 @@ namespace DBWizard
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
FillComboBoxes();
}
/* Fills program and school combo boxes on the form
* with the static data from the sqlite db.
* input: no input
@ -426,5 +430,6 @@ namespace DBWizard
save_button_Click(save_button, EventArgs.Empty);
}
} //Form1
}