Added a form to manage 'profiles' and of course, added the database code to handle such things.

This commit is contained in:
Admin
2020-11-08 21:31:15 -06:00
parent 7b9744670f
commit f59076d38a
135 changed files with 25578 additions and 7 deletions
+28 -7
View File
@@ -31,6 +31,8 @@
this.MainMenu = new System.Windows.Forms.MenuStrip();
this.FileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.ManageProfilesFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.FileManagerFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainMenu.SuspendLayout();
this.SuspendLayout();
//
@@ -42,14 +44,17 @@
this.FileMainMenu});
this.MainMenu.Location = new System.Drawing.Point(0, 0);
this.MainMenu.Name = "MainMenu";
this.MainMenu.Size = new System.Drawing.Size(800, 36);
this.MainMenu.Size = new System.Drawing.Size(800, 33);
this.MainMenu.TabIndex = 0;
this.MainMenu.Text = "menuStrip1";
//
// FileMainMenu
//
this.FileMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ManageProfilesFileMainMenu,
this.FileManagerFileMainMenu});
this.FileMainMenu.Name = "FileMainMenu";
this.FileMainMenu.Size = new System.Drawing.Size(54, 32);
this.FileMainMenu.Size = new System.Drawing.Size(54, 29);
this.FileMainMenu.Text = "&File";
//
// MainLayoutPanel
@@ -58,23 +63,37 @@
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 36);
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 33);
this.MainLayoutPanel.Name = "MainLayoutPanel";
this.MainLayoutPanel.RowCount = 2;
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Size = new System.Drawing.Size(800, 856);
this.MainLayoutPanel.Size = new System.Drawing.Size(800, 791);
this.MainLayoutPanel.TabIndex = 1;
//
// Form1
// ManageProfilesFileMainMenu
//
this.ManageProfilesFileMainMenu.Name = "ManageProfilesFileMainMenu";
this.ManageProfilesFileMainMenu.Size = new System.Drawing.Size(270, 34);
this.ManageProfilesFileMainMenu.Text = "Manage &Profiles";
this.ManageProfilesFileMainMenu.Click += new System.EventHandler(this.ManageProfilesFileMainMenu_Click);
//
// FileManagerFileMainMenu
//
this.FileManagerFileMainMenu.Name = "FileManagerFileMainMenu";
this.FileManagerFileMainMenu.Size = new System.Drawing.Size(270, 34);
this.FileManagerFileMainMenu.Text = "&File Manager";
this.FileManagerFileMainMenu.Click += new System.EventHandler(this.FileManagerFileMainMenu_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 892);
this.ClientSize = new System.Drawing.Size(800, 824);
this.Controls.Add(this.MainLayoutPanel);
this.Controls.Add(this.MainMenu);
this.MainMenuStrip = this.MainMenu;
this.Name = "Form1";
this.Name = "MainForm";
this.Text = "Form1";
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
@@ -88,6 +107,8 @@
private System.Windows.Forms.MenuStrip MainMenu;
private System.Windows.Forms.ToolStripMenuItem FileMainMenu;
private System.Windows.Forms.TableLayoutPanel MainLayoutPanel;
private System.Windows.Forms.ToolStripMenuItem ManageProfilesFileMainMenu;
private System.Windows.Forms.ToolStripMenuItem FileManagerFileMainMenu;
}
}