Added code on form main form load so that the welcome form pops up by default.
This commit is contained in:
parent
8915ffa04e
commit
4647d70c79
@ -16,7 +16,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new frmInfo());
|
||||
Application.Run(new frmRefill());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
34
Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs
generated
34
Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs
generated
@ -35,13 +35,13 @@
|
||||
this.mnuAddUpdatePrescription = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuAddUpdateRemoveRefill = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindow = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindowArrangeIcons = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindowCascade = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindowHorizontal = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindowVertical = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuWindowCloseAll = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
@ -73,6 +73,7 @@
|
||||
this.mnuView.Name = "mnuView";
|
||||
this.mnuView.Size = new System.Drawing.Size(286, 22);
|
||||
this.mnuView.Text = "View Patient/Prescription/Physician Info";
|
||||
this.mnuView.Click += new System.EventHandler(this.mnuView_Click);
|
||||
//
|
||||
// mnuAddUpdatePatientPhysician
|
||||
//
|
||||
@ -104,20 +105,6 @@
|
||||
this.mnuWindow.Size = new System.Drawing.Size(63, 20);
|
||||
this.mnuWindow.Text = "Window";
|
||||
//
|
||||
// mnuHelp
|
||||
//
|
||||
this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.mnuHelpAbout});
|
||||
this.mnuHelp.Name = "mnuHelp";
|
||||
this.mnuHelp.Size = new System.Drawing.Size(44, 20);
|
||||
this.mnuHelp.Text = "Help";
|
||||
//
|
||||
// mnuHelpAbout
|
||||
//
|
||||
this.mnuHelpAbout.Name = "mnuHelpAbout";
|
||||
this.mnuHelpAbout.Size = new System.Drawing.Size(180, 22);
|
||||
this.mnuHelpAbout.Text = "About";
|
||||
//
|
||||
// mnuWindowArrangeIcons
|
||||
//
|
||||
this.mnuWindowArrangeIcons.Name = "mnuWindowArrangeIcons";
|
||||
@ -148,6 +135,20 @@
|
||||
this.mnuWindowCloseAll.Size = new System.Drawing.Size(180, 22);
|
||||
this.mnuWindowCloseAll.Text = "Close All";
|
||||
//
|
||||
// mnuHelp
|
||||
//
|
||||
this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.mnuHelpAbout});
|
||||
this.mnuHelp.Name = "mnuHelp";
|
||||
this.mnuHelp.Size = new System.Drawing.Size(44, 20);
|
||||
this.mnuHelp.Text = "Help";
|
||||
//
|
||||
// mnuHelpAbout
|
||||
//
|
||||
this.mnuHelpAbout.Name = "mnuHelpAbout";
|
||||
this.mnuHelpAbout.Size = new System.Drawing.Size(107, 22);
|
||||
this.mnuHelpAbout.Text = "About";
|
||||
//
|
||||
// frmMain
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
@ -158,6 +159,7 @@
|
||||
this.MainMenuStrip = this.menuStrip1;
|
||||
this.Name = "frmMain";
|
||||
this.Text = "frmMain";
|
||||
this.Load += new System.EventHandler(this.frmMain_Load);
|
||||
this.menuStrip1.ResumeLayout(false);
|
||||
this.menuStrip1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
@ -16,5 +16,20 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void frmMain_Load(object sender, EventArgs e)
|
||||
{
|
||||
frmWelcome formWelcome = new frmWelcome();
|
||||
|
||||
formWelcome.MdiParent = this;
|
||||
formWelcome.StartPosition = FormStartPosition.CenterScreen;
|
||||
formWelcome.Show();
|
||||
formWelcome.Focus();
|
||||
}
|
||||
|
||||
private void mnuView_Click(object sender, EventArgs e)
|
||||
{
|
||||
frmInfo formInfo = new frmInfo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
411
Louis'-Pharmacy_CNSA212-FP/frmRefill.Designer.cs
generated
411
Louis'-Pharmacy_CNSA212-FP/frmRefill.Designer.cs
generated
@ -33,54 +33,54 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRefill));
|
||||
this.tabControl1 = new System.Windows.Forms.TabControl();
|
||||
this.tbAddRefill = new System.Windows.Forms.TabPage();
|
||||
this.tbUpdateRefill = new System.Windows.Forms.TabPage();
|
||||
this.tbDeleteRefill = new System.Windows.Forms.TabPage();
|
||||
this.finalProjectOfficialPharmacyDataSet = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSet();
|
||||
this.rEFILLSBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.rEFILLSTableAdapter = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.REFILLSTableAdapter();
|
||||
this.tableAdapterManager = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.TableAdapterManager();
|
||||
this.rEFILLSBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
|
||||
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
|
||||
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
|
||||
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.rEFILLSBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.rEFILLSDataGridView = new System.Windows.Forms.DataGridView();
|
||||
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.rEFILLSBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.finalProjectOfficialPharmacyDataSet = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSet();
|
||||
this.tbUpdateRefill = new System.Windows.Forms.TabPage();
|
||||
this.rEFILLSDataGridView1 = new System.Windows.Forms.DataGridView();
|
||||
this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.tbDeleteRefill = new System.Windows.Forms.TabPage();
|
||||
this.rEFILLSDataGridView2 = new System.Windows.Forms.DataGridView();
|
||||
this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.rEFILLSTableAdapter = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.REFILLSTableAdapter();
|
||||
this.tableAdapterManager = new Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.TableAdapterManager();
|
||||
this.rEFILLSBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
|
||||
this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
|
||||
this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
|
||||
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.rEFILLSBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.tbAddRefill.SuspendLayout();
|
||||
this.tbUpdateRefill.SuspendLayout();
|
||||
this.tbDeleteRefill.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.finalProjectOfficialPharmacyDataSet)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSBindingSource)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.finalProjectOfficialPharmacyDataSet)).BeginInit();
|
||||
this.tbUpdateRefill.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView1)).BeginInit();
|
||||
this.tbDeleteRefill.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSBindingNavigator)).BeginInit();
|
||||
this.rEFILLSBindingNavigator.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView2)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tabControl1
|
||||
@ -106,176 +106,6 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.tbAddRefill.Text = "Add Refill";
|
||||
this.tbAddRefill.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// tbUpdateRefill
|
||||
//
|
||||
this.tbUpdateRefill.AutoScroll = true;
|
||||
this.tbUpdateRefill.Controls.Add(this.rEFILLSDataGridView1);
|
||||
this.tbUpdateRefill.Location = new System.Drawing.Point(4, 22);
|
||||
this.tbUpdateRefill.Name = "tbUpdateRefill";
|
||||
this.tbUpdateRefill.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tbUpdateRefill.Size = new System.Drawing.Size(572, 296);
|
||||
this.tbUpdateRefill.TabIndex = 1;
|
||||
this.tbUpdateRefill.Text = "Update Refill";
|
||||
this.tbUpdateRefill.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// tbDeleteRefill
|
||||
//
|
||||
this.tbDeleteRefill.AutoScroll = true;
|
||||
this.tbDeleteRefill.Controls.Add(this.rEFILLSDataGridView2);
|
||||
this.tbDeleteRefill.Location = new System.Drawing.Point(4, 22);
|
||||
this.tbDeleteRefill.Name = "tbDeleteRefill";
|
||||
this.tbDeleteRefill.Size = new System.Drawing.Size(572, 296);
|
||||
this.tbDeleteRefill.TabIndex = 2;
|
||||
this.tbDeleteRefill.Text = "Delete Refill";
|
||||
this.tbDeleteRefill.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// finalProjectOfficialPharmacyDataSet
|
||||
//
|
||||
this.finalProjectOfficialPharmacyDataSet.DataSetName = "FinalProjectOfficialPharmacyDataSet";
|
||||
this.finalProjectOfficialPharmacyDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
||||
//
|
||||
// rEFILLSBindingSource
|
||||
//
|
||||
this.rEFILLSBindingSource.DataMember = "REFILLS";
|
||||
this.rEFILLSBindingSource.DataSource = this.finalProjectOfficialPharmacyDataSet;
|
||||
//
|
||||
// rEFILLSTableAdapter
|
||||
//
|
||||
this.rEFILLSTableAdapter.ClearBeforeFill = true;
|
||||
//
|
||||
// tableAdapterManager
|
||||
//
|
||||
this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
|
||||
this.tableAdapterManager.MEDICATIONSTableAdapter = null;
|
||||
this.tableAdapterManager.PATIENTTableAdapter = null;
|
||||
this.tableAdapterManager.PHYSICIANTableAdapter = null;
|
||||
this.tableAdapterManager.REFILLSTableAdapter = this.rEFILLSTableAdapter;
|
||||
this.tableAdapterManager.UpdateOrder = Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
|
||||
//
|
||||
// rEFILLSBindingNavigator
|
||||
//
|
||||
this.rEFILLSBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
|
||||
this.rEFILLSBindingNavigator.BindingSource = this.rEFILLSBindingSource;
|
||||
this.rEFILLSBindingNavigator.CountItem = this.bindingNavigatorCountItem;
|
||||
this.rEFILLSBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
|
||||
this.rEFILLSBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.bindingNavigatorMoveFirstItem,
|
||||
this.bindingNavigatorMovePreviousItem,
|
||||
this.bindingNavigatorSeparator,
|
||||
this.bindingNavigatorPositionItem,
|
||||
this.bindingNavigatorCountItem,
|
||||
this.bindingNavigatorSeparator1,
|
||||
this.bindingNavigatorMoveNextItem,
|
||||
this.bindingNavigatorMoveLastItem,
|
||||
this.bindingNavigatorSeparator2,
|
||||
this.bindingNavigatorAddNewItem,
|
||||
this.bindingNavigatorDeleteItem,
|
||||
this.rEFILLSBindingNavigatorSaveItem});
|
||||
this.rEFILLSBindingNavigator.Location = new System.Drawing.Point(0, 0);
|
||||
this.rEFILLSBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
|
||||
this.rEFILLSBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
|
||||
this.rEFILLSBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
|
||||
this.rEFILLSBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
|
||||
this.rEFILLSBindingNavigator.Name = "rEFILLSBindingNavigator";
|
||||
this.rEFILLSBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
|
||||
this.rEFILLSBindingNavigator.Size = new System.Drawing.Size(631, 25);
|
||||
this.rEFILLSBindingNavigator.TabIndex = 1;
|
||||
this.rEFILLSBindingNavigator.Text = "bindingNavigator1";
|
||||
//
|
||||
// bindingNavigatorMoveFirstItem
|
||||
//
|
||||
this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
|
||||
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
|
||||
this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMoveFirstItem.Text = "Move first";
|
||||
//
|
||||
// bindingNavigatorMovePreviousItem
|
||||
//
|
||||
this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
|
||||
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
|
||||
this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMovePreviousItem.Text = "Move previous";
|
||||
//
|
||||
// bindingNavigatorSeparator
|
||||
//
|
||||
this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
|
||||
this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// bindingNavigatorPositionItem
|
||||
//
|
||||
this.bindingNavigatorPositionItem.AccessibleName = "Position";
|
||||
this.bindingNavigatorPositionItem.AutoSize = false;
|
||||
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
|
||||
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
|
||||
this.bindingNavigatorPositionItem.Text = "0";
|
||||
this.bindingNavigatorPositionItem.ToolTipText = "Current position";
|
||||
//
|
||||
// bindingNavigatorCountItem
|
||||
//
|
||||
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
|
||||
this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 15);
|
||||
this.bindingNavigatorCountItem.Text = "of {0}";
|
||||
this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
|
||||
//
|
||||
// bindingNavigatorSeparator1
|
||||
//
|
||||
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator";
|
||||
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 6);
|
||||
//
|
||||
// bindingNavigatorMoveNextItem
|
||||
//
|
||||
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
|
||||
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
|
||||
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 20);
|
||||
this.bindingNavigatorMoveNextItem.Text = "Move next";
|
||||
//
|
||||
// bindingNavigatorMoveLastItem
|
||||
//
|
||||
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
|
||||
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
|
||||
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 20);
|
||||
this.bindingNavigatorMoveLastItem.Text = "Move last";
|
||||
//
|
||||
// bindingNavigatorSeparator2
|
||||
//
|
||||
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator";
|
||||
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 6);
|
||||
//
|
||||
// bindingNavigatorAddNewItem
|
||||
//
|
||||
this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
|
||||
this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
|
||||
this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorAddNewItem.Text = "Add new";
|
||||
//
|
||||
// bindingNavigatorDeleteItem
|
||||
//
|
||||
this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
|
||||
this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
|
||||
this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 20);
|
||||
this.bindingNavigatorDeleteItem.Text = "Delete";
|
||||
//
|
||||
// rEFILLSBindingNavigatorSaveItem
|
||||
//
|
||||
this.rEFILLSBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.rEFILLSBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("rEFILLSBindingNavigatorSaveItem.Image")));
|
||||
this.rEFILLSBindingNavigatorSaveItem.Name = "rEFILLSBindingNavigatorSaveItem";
|
||||
this.rEFILLSBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 23);
|
||||
this.rEFILLSBindingNavigatorSaveItem.Text = "Save Data";
|
||||
this.rEFILLSBindingNavigatorSaveItem.Click += new System.EventHandler(this.rEFILLSBindingNavigatorSaveItem_Click);
|
||||
//
|
||||
// rEFILLSDataGridView
|
||||
//
|
||||
this.rEFILLSDataGridView.AllowUserToDeleteRows = false;
|
||||
@ -290,7 +120,6 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.rEFILLSDataGridView.DataSource = this.rEFILLSBindingSource;
|
||||
this.rEFILLSDataGridView.Location = new System.Drawing.Point(6, 6);
|
||||
this.rEFILLSDataGridView.Name = "rEFILLSDataGridView";
|
||||
this.rEFILLSDataGridView.ReadOnly = true;
|
||||
this.rEFILLSDataGridView.Size = new System.Drawing.Size(556, 304);
|
||||
this.rEFILLSDataGridView.TabIndex = 0;
|
||||
//
|
||||
@ -299,35 +128,52 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.dataGridViewTextBoxColumn1.DataPropertyName = "Refill_id";
|
||||
this.dataGridViewTextBoxColumn1.HeaderText = "Refill_id";
|
||||
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
|
||||
this.dataGridViewTextBoxColumn1.ReadOnly = true;
|
||||
//
|
||||
// dataGridViewTextBoxColumn2
|
||||
//
|
||||
this.dataGridViewTextBoxColumn2.DataPropertyName = "Numrefill";
|
||||
this.dataGridViewTextBoxColumn2.HeaderText = "Numrefill";
|
||||
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
|
||||
this.dataGridViewTextBoxColumn2.ReadOnly = true;
|
||||
//
|
||||
// dataGridViewTextBoxColumn3
|
||||
//
|
||||
this.dataGridViewTextBoxColumn3.DataPropertyName = "StartDate";
|
||||
this.dataGridViewTextBoxColumn3.HeaderText = "StartDate";
|
||||
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
|
||||
this.dataGridViewTextBoxColumn3.ReadOnly = true;
|
||||
//
|
||||
// dataGridViewTextBoxColumn4
|
||||
//
|
||||
this.dataGridViewTextBoxColumn4.DataPropertyName = "EndDate";
|
||||
this.dataGridViewTextBoxColumn4.HeaderText = "EndDate";
|
||||
this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
|
||||
this.dataGridViewTextBoxColumn4.ReadOnly = true;
|
||||
//
|
||||
// dataGridViewTextBoxColumn5
|
||||
//
|
||||
this.dataGridViewTextBoxColumn5.DataPropertyName = "NotesAndComments";
|
||||
this.dataGridViewTextBoxColumn5.HeaderText = "NotesAndComments";
|
||||
this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
|
||||
this.dataGridViewTextBoxColumn5.ReadOnly = true;
|
||||
//
|
||||
// rEFILLSBindingSource
|
||||
//
|
||||
this.rEFILLSBindingSource.DataMember = "REFILLS";
|
||||
this.rEFILLSBindingSource.DataSource = this.finalProjectOfficialPharmacyDataSet;
|
||||
//
|
||||
// finalProjectOfficialPharmacyDataSet
|
||||
//
|
||||
this.finalProjectOfficialPharmacyDataSet.DataSetName = "FinalProjectOfficialPharmacyDataSet";
|
||||
this.finalProjectOfficialPharmacyDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
||||
//
|
||||
// tbUpdateRefill
|
||||
//
|
||||
this.tbUpdateRefill.AutoScroll = true;
|
||||
this.tbUpdateRefill.Controls.Add(this.rEFILLSDataGridView1);
|
||||
this.tbUpdateRefill.Location = new System.Drawing.Point(4, 22);
|
||||
this.tbUpdateRefill.Name = "tbUpdateRefill";
|
||||
this.tbUpdateRefill.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tbUpdateRefill.Size = new System.Drawing.Size(572, 296);
|
||||
this.tbUpdateRefill.TabIndex = 1;
|
||||
this.tbUpdateRefill.Text = "Update Refill";
|
||||
this.tbUpdateRefill.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// rEFILLSDataGridView1
|
||||
//
|
||||
@ -377,6 +223,17 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.dataGridViewTextBoxColumn10.HeaderText = "NotesAndComments";
|
||||
this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
|
||||
//
|
||||
// tbDeleteRefill
|
||||
//
|
||||
this.tbDeleteRefill.AutoScroll = true;
|
||||
this.tbDeleteRefill.Controls.Add(this.rEFILLSDataGridView2);
|
||||
this.tbDeleteRefill.Location = new System.Drawing.Point(4, 22);
|
||||
this.tbDeleteRefill.Name = "tbDeleteRefill";
|
||||
this.tbDeleteRefill.Size = new System.Drawing.Size(572, 296);
|
||||
this.tbDeleteRefill.TabIndex = 2;
|
||||
this.tbDeleteRefill.Text = "Delete Refill";
|
||||
this.tbDeleteRefill.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// rEFILLSDataGridView2
|
||||
//
|
||||
this.rEFILLSDataGridView2.AllowUserToAddRows = false;
|
||||
@ -430,6 +287,144 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
|
||||
this.dataGridViewTextBoxColumn15.ReadOnly = true;
|
||||
//
|
||||
// rEFILLSTableAdapter
|
||||
//
|
||||
this.rEFILLSTableAdapter.ClearBeforeFill = true;
|
||||
//
|
||||
// tableAdapterManager
|
||||
//
|
||||
this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
|
||||
this.tableAdapterManager.MEDICATIONSTableAdapter = null;
|
||||
this.tableAdapterManager.PATIENTTableAdapter = null;
|
||||
this.tableAdapterManager.PHYSICIANTableAdapter = null;
|
||||
this.tableAdapterManager.REFILLSTableAdapter = this.rEFILLSTableAdapter;
|
||||
this.tableAdapterManager.UpdateOrder = Louis__Pharmacy_CNSA212_FP.FinalProjectOfficialPharmacyDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
|
||||
//
|
||||
// rEFILLSBindingNavigator
|
||||
//
|
||||
this.rEFILLSBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
|
||||
this.rEFILLSBindingNavigator.BindingSource = this.rEFILLSBindingSource;
|
||||
this.rEFILLSBindingNavigator.CountItem = this.bindingNavigatorCountItem;
|
||||
this.rEFILLSBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
|
||||
this.rEFILLSBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.bindingNavigatorMoveFirstItem,
|
||||
this.bindingNavigatorMovePreviousItem,
|
||||
this.bindingNavigatorSeparator,
|
||||
this.bindingNavigatorPositionItem,
|
||||
this.bindingNavigatorCountItem,
|
||||
this.bindingNavigatorSeparator1,
|
||||
this.bindingNavigatorMoveNextItem,
|
||||
this.bindingNavigatorMoveLastItem,
|
||||
this.bindingNavigatorSeparator2,
|
||||
this.bindingNavigatorAddNewItem,
|
||||
this.bindingNavigatorDeleteItem,
|
||||
this.rEFILLSBindingNavigatorSaveItem});
|
||||
this.rEFILLSBindingNavigator.Location = new System.Drawing.Point(0, 0);
|
||||
this.rEFILLSBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
|
||||
this.rEFILLSBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
|
||||
this.rEFILLSBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
|
||||
this.rEFILLSBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
|
||||
this.rEFILLSBindingNavigator.Name = "rEFILLSBindingNavigator";
|
||||
this.rEFILLSBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
|
||||
this.rEFILLSBindingNavigator.Size = new System.Drawing.Size(631, 25);
|
||||
this.rEFILLSBindingNavigator.TabIndex = 1;
|
||||
this.rEFILLSBindingNavigator.Text = "bindingNavigator1";
|
||||
//
|
||||
// bindingNavigatorAddNewItem
|
||||
//
|
||||
this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
|
||||
this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
|
||||
this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorAddNewItem.Text = "Add new";
|
||||
//
|
||||
// bindingNavigatorCountItem
|
||||
//
|
||||
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
|
||||
this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
|
||||
this.bindingNavigatorCountItem.Text = "of {0}";
|
||||
this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
|
||||
//
|
||||
// bindingNavigatorDeleteItem
|
||||
//
|
||||
this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
|
||||
this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
|
||||
this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorDeleteItem.Text = "Delete";
|
||||
//
|
||||
// bindingNavigatorMoveFirstItem
|
||||
//
|
||||
this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
|
||||
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
|
||||
this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMoveFirstItem.Text = "Move first";
|
||||
//
|
||||
// bindingNavigatorMovePreviousItem
|
||||
//
|
||||
this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
|
||||
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
|
||||
this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMovePreviousItem.Text = "Move previous";
|
||||
//
|
||||
// bindingNavigatorSeparator
|
||||
//
|
||||
this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
|
||||
this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// bindingNavigatorPositionItem
|
||||
//
|
||||
this.bindingNavigatorPositionItem.AccessibleName = "Position";
|
||||
this.bindingNavigatorPositionItem.AutoSize = false;
|
||||
this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("Segoe UI", 9F);
|
||||
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
|
||||
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
|
||||
this.bindingNavigatorPositionItem.Text = "0";
|
||||
this.bindingNavigatorPositionItem.ToolTipText = "Current position";
|
||||
//
|
||||
// bindingNavigatorSeparator1
|
||||
//
|
||||
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
|
||||
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// bindingNavigatorMoveNextItem
|
||||
//
|
||||
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
|
||||
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
|
||||
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMoveNextItem.Text = "Move next";
|
||||
//
|
||||
// bindingNavigatorMoveLastItem
|
||||
//
|
||||
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
|
||||
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
|
||||
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
|
||||
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.bindingNavigatorMoveLastItem.Text = "Move last";
|
||||
//
|
||||
// bindingNavigatorSeparator2
|
||||
//
|
||||
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
|
||||
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// rEFILLSBindingNavigatorSaveItem
|
||||
//
|
||||
this.rEFILLSBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.rEFILLSBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("rEFILLSBindingNavigatorSaveItem.Image")));
|
||||
this.rEFILLSBindingNavigatorSaveItem.Name = "rEFILLSBindingNavigatorSaveItem";
|
||||
this.rEFILLSBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
|
||||
this.rEFILLSBindingNavigatorSaveItem.Text = "Save Data";
|
||||
this.rEFILLSBindingNavigatorSaveItem.Click += new System.EventHandler(this.rEFILLSBindingNavigatorSaveItem_Click);
|
||||
//
|
||||
// frmRefill
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
@ -438,22 +433,22 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.Controls.Add(this.rEFILLSBindingNavigator);
|
||||
this.Controls.Add(this.tabControl1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.Name = "frmRefill";
|
||||
this.Text = "Louis\' Pharmacy - Prescription Refill";
|
||||
this.Load += new System.EventHandler(this.frmRefill_Load);
|
||||
this.tabControl1.ResumeLayout(false);
|
||||
this.tbAddRefill.ResumeLayout(false);
|
||||
this.tbUpdateRefill.ResumeLayout(false);
|
||||
this.tbDeleteRefill.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.finalProjectOfficialPharmacyDataSet)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSBindingSource)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.finalProjectOfficialPharmacyDataSet)).EndInit();
|
||||
this.tbUpdateRefill.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView1)).EndInit();
|
||||
this.tbDeleteRefill.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSBindingNavigator)).EndInit();
|
||||
this.rEFILLSBindingNavigator.ResumeLayout(false);
|
||||
this.rEFILLSBindingNavigator.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rEFILLSDataGridView2)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
|
@ -120,8 +120,8 @@
|
||||
<metadata name="rEFILLSBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>262, 17</value>
|
||||
</metadata>
|
||||
<metadata name="rEFILLSBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>262, 17</value>
|
||||
<metadata name="finalProjectOfficialPharmacyDataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="finalProjectOfficialPharmacyDataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
@ -138,74 +138,73 @@
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="bindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFKSURBVDhPYxi84O4C9v+35nH+vzqH6//FGbz/ocLEg+tA
|
||||
jX8eNf7/87Dh/8nJAqQbcH46L9yAgz0ipBtwfJIgUHPd/z8Pqv7vaBcnbMClmTz/z07l+38SqPFIv9D/
|
||||
fd0iQM3l///eK/q/vkHm/6oauf9LKxX/zy9V/j+rSBXTwFNAf/55WA/UVAvElf//3CsB4rz/f+9m/v97
|
||||
J/n/39tx///djADikP+TcjQxDTjUKwx27t/7pUCNBUCN2UCNqUCNCf//3YoGagz7/+9G0P9/1/3+d6Xp
|
||||
Yhqws13i/5Zmqf/rwM6V/7+kQvH/31sxQI3h/6fmafyfkKX1vztD9397qv7/5kRDwmEyG+hPkHP/3Qj4
|
||||
35OhQ1gDOgD5898NfyD2+9+arE+6Ad3pumD/gnB9nBHpBrQkGfxviDf8XxNr/L8y2oR0A+gEGBgAJCPY
|
||||
nnX8iGkAAAAASUVORK5CYII=
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
|
||||
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
|
||||
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
|
||||
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
|
||||
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFvSURBVDhPtZBNKMNhHMd3Vd5K7eKCWjkgk7yEZDKksciE
|
||||
yMwkBw6LhHZxcCDlQg64SA4kJeVE4jRv89qaWn8tUtoF/7g8H2Ootb+x4nt56nm+38/v+/xUfyJcJ9Bt
|
||||
BMcOH1eRiZV5RGcVwqyHrfWwELweWJoJ9rC2AL0mRLse0VEBcxOKkLeGwlwGIz2h75w6ApC6bERjAdia
|
||||
gkxiyIow5cKkPWxDFYvTiMrUdxDDVnCfwVh/AOo/P2zhhccFzcWBLxmzEPV50Nfyu/Cn2N/1V85DGNKh
|
||||
Rhth+EaCxkLISUDWxvOgjYXa7F/Wv7kGUz4UJeKzGODi6H25d2l+yPLsDwu8v4NWHY8lSbhL0/HtbX8F
|
||||
GLXh1MQgnxwoQ3h5hkEL6JI5TlPj21gNMd6WZyC1VSN7r0Mh7G4i56pxpkQhdTWA/KQ4aUcTh+x0KACm
|
||||
RpBSo3HrM0G6Uq7pl2zvhvNDBcClE8YH4HDv2/A/SKV6BYojAxyEJtLJAAAAAElFTkSuQmCC
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEqSURBVDhPYxg8oHDW8/9NC57/z5z4+D9UCAOEtz/AKceQ
|
||||
O/PZ/1VH3v/HpSi++8H/4IZruA3ImPL0/8J9H7Aqiu95+H/p/v///asv4DYgoefJ/2lb3mMoimi/D9ac
|
||||
Oev/f6/SE7gNiOx69L939QcURaGt98CaW9cBbe/8+98l/wBuAwKbH/6vm/8Orii45e7/RXv//+8Aas6Y
|
||||
8/O/Xd3P//YZ23Eb4FF1/3/+tDcoiuyKb/9Pn/P7v3/Xt/86he/+WySsx22Afend/9mTX2Mo0k85/9+k
|
||||
6MV/laxP/40jl+E2wCLvzv/U/tdYFRkknfgvm/b1v27wPNwGGGbd/h/W8hKnIv3Uy/81fKfhNkAn7cZ/
|
||||
v+qHeBWpeEzAbYBT7pX/IAV4FQ1CwMAAAPB2wKul5ZpwAAAAAElFTkSuQmCC
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAC2SURBVDhPYxg6ILz9wX8ok3QQ3/3gf3DDNfIMiO95+H/p
|
||||
/v///asvkG5ARPt9sObMWf//e5WeIM2A0NZ7YM2t64C2d/7975J/gHgDglvu/l+09///DqDmjDk//9vV
|
||||
/fxvn7GdNBfYFd/+nz7n93//rm//dQrf/bdIWE96GOinnP9vUvTiv0rWp//GkctINwAEDJJO/JdN+/pf
|
||||
N3geeQaAgH7q5f8avtPINwAEVDwmUGbAYAUMDADQFGCYBLpQVQAAAABJRU5ErkJggg==
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACjSURBVDhPYxh8oHDW8/9QJnkgd+az/wnd98g3JGPK0//z
|
||||
9v/+n9B1hzxDEnqe/J+979f/zq1//7uVXibdkMiuR/+nbPv1v2Tp3/8J0//+t8k9S5ohgc0P/7eufQ/W
|
||||
bFzy5b909LX/xpHLiDfEo+r+/5K57+CaFV16SHOBfend/4Etz8jTDAIWeXf+2xRcIU8zCBhm3SZfMwjo
|
||||
pN0gX/NQBAwMAKB+X6AHNEI4AAAAAElFTkSuQmCC
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||
oAc0QjgAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEsSURBVDhPYxhcoHDW8/9QJgYAyTUteP4/c+JjnGoYcmc+
|
||||
+5/QfQ+rApDcqiPv/4e3P8BtQMaUp//n7f/9P6HrDoYikNzCfR/+Bzdcw21AQs+T/7P3/frfufXvf7fS
|
||||
yygKQXLTtrz/7199AbcBkV2P/k/Z9ut/ydK//xOm//1vk3sWrhgk17v6w3+v0hO4DQhsfvi/de17sGbj
|
||||
ki//paOv/TeOXAbWAJKrm//uv0v+AdwGeFTd/18y9x1cs6JLD1wxSC5/2pv/9hnbcRtgX3r3f2DLMwzN
|
||||
IACSy578+r9FwnrcBljk3flvU3AFQzMIgORS+1/DvYQVGGbdxqoZBEByYS0v/+sGz8NtgE7aDZySIDm/
|
||||
6of/NXyn4TYAH3DKvfJfxWMCGEOFBgVgYAAAvtG/s7kMTpwAAAAASUVORK5CYII=
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="rEFILLSBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABMSURBVDhPY6AK+Pbt239SMVQrBIAFgufA8Yf3H+EYWQxE
|
||||
x0zYh2kIKQaAMMwQqHbSDQBhog1AxshqaGsAMXjUgEFpADkYqp0SwMAAAPRDDFPA2mtzAAAAAElFTkSu
|
||||
QmCC
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
|
||||
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
Loading…
Reference in New Issue
Block a user