479 lines
22 KiB
C#
479 lines
22 KiB
C#
namespace SimpleTest
|
|
{
|
|
partial class frmUser
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.Windows.Forms.Label cfgNameLabel;
|
|
System.Windows.Forms.Label courtesyTitleLabel;
|
|
System.Windows.Forms.Label firstNameLabel;
|
|
System.Windows.Forms.Label lastNameLabel;
|
|
System.Windows.Forms.Label middleNameLabel;
|
|
System.Windows.Forms.Label phoneNumberLabel;
|
|
System.Windows.Forms.Label suffixLabel;
|
|
System.Windows.Forms.Label uidLabel;
|
|
System.Windows.Forms.Label useridLabel;
|
|
System.Windows.Forms.Label userLoginLabel;
|
|
System.Windows.Forms.Label userNameLabel;
|
|
System.Windows.Forms.Label configLabel;
|
|
this.userBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.configTextBox = new System.Windows.Forms.TextBox();
|
|
this.cfgNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.courtesyTitleTextBox = new System.Windows.Forms.TextBox();
|
|
this.firstNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.lastNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.middleNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.phoneNumberTextBox = new System.Windows.Forms.TextBox();
|
|
this.suffixTextBox = new System.Windows.Forms.TextBox();
|
|
this.useridTextBox = new System.Windows.Forms.TextBox();
|
|
this.userLoginTextBox = new System.Windows.Forms.TextBox();
|
|
this.userNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.uidTextBox = new System.Windows.Forms.TextBox();
|
|
this.userMembershipsBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.userMembershipsDataGridView = new System.Windows.Forms.DataGridView();
|
|
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
cfgNameLabel = new System.Windows.Forms.Label();
|
|
courtesyTitleLabel = new System.Windows.Forms.Label();
|
|
firstNameLabel = new System.Windows.Forms.Label();
|
|
lastNameLabel = new System.Windows.Forms.Label();
|
|
middleNameLabel = new System.Windows.Forms.Label();
|
|
phoneNumberLabel = new System.Windows.Forms.Label();
|
|
suffixLabel = new System.Windows.Forms.Label();
|
|
uidLabel = new System.Windows.Forms.Label();
|
|
useridLabel = new System.Windows.Forms.Label();
|
|
userLoginLabel = new System.Windows.Forms.Label();
|
|
userNameLabel = new System.Windows.Forms.Label();
|
|
configLabel = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.userBindingSource)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.userMembershipsBindingSource)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.userMembershipsDataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// cfgNameLabel
|
|
//
|
|
cfgNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
cfgNameLabel.AutoSize = true;
|
|
cfgNameLabel.Location = new System.Drawing.Point(418, 69);
|
|
cfgNameLabel.Name = "cfgNameLabel";
|
|
cfgNameLabel.Size = new System.Drawing.Size(74, 17);
|
|
cfgNameLabel.TabIndex = 29;
|
|
cfgNameLabel.Text = "Cfg Name:";
|
|
//
|
|
// courtesyTitleLabel
|
|
//
|
|
courtesyTitleLabel.AutoSize = true;
|
|
courtesyTitleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
courtesyTitleLabel.Location = new System.Drawing.Point(52, 37);
|
|
courtesyTitleLabel.Name = "courtesyTitleLabel";
|
|
courtesyTitleLabel.Size = new System.Drawing.Size(35, 17);
|
|
courtesyTitleLabel.TabIndex = 31;
|
|
courtesyTitleLabel.Text = "Title";
|
|
//
|
|
// firstNameLabel
|
|
//
|
|
firstNameLabel.AutoSize = true;
|
|
firstNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
firstNameLabel.Location = new System.Drawing.Point(94, 37);
|
|
firstNameLabel.Name = "firstNameLabel";
|
|
firstNameLabel.Size = new System.Drawing.Size(35, 17);
|
|
firstNameLabel.TabIndex = 33;
|
|
firstNameLabel.Text = "First";
|
|
//
|
|
// lastNameLabel
|
|
//
|
|
lastNameLabel.AutoSize = true;
|
|
lastNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
lastNameLabel.Location = new System.Drawing.Point(258, 37);
|
|
lastNameLabel.Name = "lastNameLabel";
|
|
lastNameLabel.Size = new System.Drawing.Size(35, 17);
|
|
lastNameLabel.TabIndex = 35;
|
|
lastNameLabel.Text = "Last";
|
|
//
|
|
// middleNameLabel
|
|
//
|
|
middleNameLabel.AutoSize = true;
|
|
middleNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
middleNameLabel.Location = new System.Drawing.Point(173, 37);
|
|
middleNameLabel.Name = "middleNameLabel";
|
|
middleNameLabel.Size = new System.Drawing.Size(49, 17);
|
|
middleNameLabel.TabIndex = 37;
|
|
middleNameLabel.Text = "Middle";
|
|
//
|
|
// phoneNumberLabel
|
|
//
|
|
phoneNumberLabel.AutoSize = true;
|
|
phoneNumberLabel.Location = new System.Drawing.Point(10, 57);
|
|
phoneNumberLabel.Name = "phoneNumberLabel";
|
|
phoneNumberLabel.Size = new System.Drawing.Size(53, 17);
|
|
phoneNumberLabel.TabIndex = 39;
|
|
phoneNumberLabel.Text = "Phone:";
|
|
//
|
|
// suffixLabel
|
|
//
|
|
suffixLabel.AutoSize = true;
|
|
suffixLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
suffixLabel.Location = new System.Drawing.Point(353, 36);
|
|
suffixLabel.Name = "suffixLabel";
|
|
suffixLabel.Size = new System.Drawing.Size(42, 17);
|
|
suffixLabel.TabIndex = 41;
|
|
suffixLabel.Text = "Suffix";
|
|
//
|
|
// uidLabel
|
|
//
|
|
uidLabel.AutoSize = true;
|
|
uidLabel.Location = new System.Drawing.Point(13, 17);
|
|
uidLabel.Name = "uidLabel";
|
|
uidLabel.Size = new System.Drawing.Size(49, 17);
|
|
uidLabel.TabIndex = 43;
|
|
uidLabel.Text = "Name:";
|
|
//
|
|
// useridLabel
|
|
//
|
|
useridLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
useridLabel.AutoSize = true;
|
|
useridLabel.Location = new System.Drawing.Point(420, 99);
|
|
useridLabel.Name = "useridLabel";
|
|
useridLabel.Size = new System.Drawing.Size(53, 17);
|
|
useridLabel.TabIndex = 44;
|
|
useridLabel.Text = "Userid:";
|
|
//
|
|
// userLoginLabel
|
|
//
|
|
userLoginLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
userLoginLabel.AutoSize = true;
|
|
userLoginLabel.Location = new System.Drawing.Point(420, 127);
|
|
userLoginLabel.Name = "userLoginLabel";
|
|
userLoginLabel.Size = new System.Drawing.Size(81, 17);
|
|
userLoginLabel.TabIndex = 46;
|
|
userLoginLabel.Text = "User Login:";
|
|
//
|
|
// userNameLabel
|
|
//
|
|
userNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
userNameLabel.AutoSize = true;
|
|
userNameLabel.Location = new System.Drawing.Point(418, 41);
|
|
userNameLabel.Name = "userNameLabel";
|
|
userNameLabel.Size = new System.Drawing.Size(83, 17);
|
|
userNameLabel.TabIndex = 48;
|
|
userNameLabel.Text = "User Name:";
|
|
//
|
|
// configLabel
|
|
//
|
|
configLabel.AutoSize = true;
|
|
configLabel.Location = new System.Drawing.Point(13, 88);
|
|
configLabel.Name = "configLabel";
|
|
configLabel.Size = new System.Drawing.Size(52, 17);
|
|
configLabel.TabIndex = 50;
|
|
configLabel.Text = "Config:";
|
|
//
|
|
// userBindingSource
|
|
//
|
|
this.userBindingSource.DataSource = typeof(Volian.Object.Library.User);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.btnCancel);
|
|
this.panel1.Controls.Add(this.btnSave);
|
|
this.panel1.Controls.Add(configLabel);
|
|
this.panel1.Controls.Add(this.configTextBox);
|
|
this.panel1.Controls.Add(cfgNameLabel);
|
|
this.panel1.Controls.Add(this.cfgNameTextBox);
|
|
this.panel1.Controls.Add(courtesyTitleLabel);
|
|
this.panel1.Controls.Add(this.courtesyTitleTextBox);
|
|
this.panel1.Controls.Add(firstNameLabel);
|
|
this.panel1.Controls.Add(this.firstNameTextBox);
|
|
this.panel1.Controls.Add(lastNameLabel);
|
|
this.panel1.Controls.Add(this.lastNameTextBox);
|
|
this.panel1.Controls.Add(middleNameLabel);
|
|
this.panel1.Controls.Add(this.middleNameTextBox);
|
|
this.panel1.Controls.Add(phoneNumberLabel);
|
|
this.panel1.Controls.Add(this.phoneNumberTextBox);
|
|
this.panel1.Controls.Add(suffixLabel);
|
|
this.panel1.Controls.Add(this.suffixTextBox);
|
|
this.panel1.Controls.Add(uidLabel);
|
|
this.panel1.Controls.Add(useridLabel);
|
|
this.panel1.Controls.Add(this.useridTextBox);
|
|
this.panel1.Controls.Add(userLoginLabel);
|
|
this.panel1.Controls.Add(this.userLoginTextBox);
|
|
this.panel1.Controls.Add(userNameLabel);
|
|
this.panel1.Controls.Add(this.userNameTextBox);
|
|
this.panel1.Controls.Add(this.uidTextBox);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(721, 158);
|
|
this.panel1.TabIndex = 29;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.Location = new System.Drawing.Point(634, 38);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 53;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnSave.Location = new System.Drawing.Point(634, 10);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(75, 23);
|
|
this.btnSave.TabIndex = 52;
|
|
this.btnSave.Text = "Save";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|
//
|
|
// configTextBox
|
|
//
|
|
this.configTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "Config", true));
|
|
this.configTextBox.Location = new System.Drawing.Point(71, 85);
|
|
this.configTextBox.Multiline = true;
|
|
this.configTextBox.Name = "configTextBox";
|
|
this.configTextBox.Size = new System.Drawing.Size(335, 65);
|
|
this.configTextBox.TabIndex = 51;
|
|
//
|
|
// cfgNameTextBox
|
|
//
|
|
this.cfgNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cfgNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "CfgName", true));
|
|
this.cfgNameTextBox.Location = new System.Drawing.Point(507, 66);
|
|
this.cfgNameTextBox.Name = "cfgNameTextBox";
|
|
this.cfgNameTextBox.Size = new System.Drawing.Size(83, 22);
|
|
this.cfgNameTextBox.TabIndex = 30;
|
|
//
|
|
// courtesyTitleTextBox
|
|
//
|
|
this.courtesyTitleTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "CourtesyTitle", true));
|
|
this.courtesyTitleTextBox.Location = new System.Drawing.Point(55, 12);
|
|
this.courtesyTitleTextBox.Name = "courtesyTitleTextBox";
|
|
this.courtesyTitleTextBox.Size = new System.Drawing.Size(36, 22);
|
|
this.courtesyTitleTextBox.TabIndex = 32;
|
|
//
|
|
// firstNameTextBox
|
|
//
|
|
this.firstNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "FirstName", true));
|
|
this.firstNameTextBox.Location = new System.Drawing.Point(97, 12);
|
|
this.firstNameTextBox.Name = "firstNameTextBox";
|
|
this.firstNameTextBox.Size = new System.Drawing.Size(73, 22);
|
|
this.firstNameTextBox.TabIndex = 34;
|
|
//
|
|
// lastNameTextBox
|
|
//
|
|
this.lastNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "LastName", true));
|
|
this.lastNameTextBox.Location = new System.Drawing.Point(261, 12);
|
|
this.lastNameTextBox.Name = "lastNameTextBox";
|
|
this.lastNameTextBox.Size = new System.Drawing.Size(89, 22);
|
|
this.lastNameTextBox.TabIndex = 36;
|
|
//
|
|
// middleNameTextBox
|
|
//
|
|
this.middleNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "MiddleName", true));
|
|
this.middleNameTextBox.Location = new System.Drawing.Point(176, 12);
|
|
this.middleNameTextBox.Name = "middleNameTextBox";
|
|
this.middleNameTextBox.Size = new System.Drawing.Size(79, 22);
|
|
this.middleNameTextBox.TabIndex = 38;
|
|
//
|
|
// phoneNumberTextBox
|
|
//
|
|
this.phoneNumberTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "PhoneNumber", true));
|
|
this.phoneNumberTextBox.Location = new System.Drawing.Point(71, 57);
|
|
this.phoneNumberTextBox.Name = "phoneNumberTextBox";
|
|
this.phoneNumberTextBox.Size = new System.Drawing.Size(145, 22);
|
|
this.phoneNumberTextBox.TabIndex = 40;
|
|
//
|
|
// suffixTextBox
|
|
//
|
|
this.suffixTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "Suffix", true));
|
|
this.suffixTextBox.Location = new System.Drawing.Point(356, 11);
|
|
this.suffixTextBox.Name = "suffixTextBox";
|
|
this.suffixTextBox.Size = new System.Drawing.Size(50, 22);
|
|
this.suffixTextBox.TabIndex = 42;
|
|
//
|
|
// useridTextBox
|
|
//
|
|
this.useridTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.useridTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "Userid", true));
|
|
this.useridTextBox.Location = new System.Drawing.Point(507, 94);
|
|
this.useridTextBox.Name = "useridTextBox";
|
|
this.useridTextBox.Size = new System.Drawing.Size(83, 22);
|
|
this.useridTextBox.TabIndex = 45;
|
|
//
|
|
// userLoginTextBox
|
|
//
|
|
this.userLoginTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.userLoginTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "UserLogin", true));
|
|
this.userLoginTextBox.Location = new System.Drawing.Point(507, 124);
|
|
this.userLoginTextBox.Name = "userLoginTextBox";
|
|
this.userLoginTextBox.Size = new System.Drawing.Size(83, 22);
|
|
this.userLoginTextBox.TabIndex = 47;
|
|
//
|
|
// userNameTextBox
|
|
//
|
|
this.userNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.userNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "UserName", true));
|
|
this.userNameTextBox.Location = new System.Drawing.Point(507, 36);
|
|
this.userNameTextBox.Name = "userNameTextBox";
|
|
this.userNameTextBox.Size = new System.Drawing.Size(83, 22);
|
|
this.userNameTextBox.TabIndex = 49;
|
|
//
|
|
// uidTextBox
|
|
//
|
|
this.uidTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.uidTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "Uid", true));
|
|
this.uidTextBox.Enabled = false;
|
|
this.uidTextBox.Location = new System.Drawing.Point(547, 11);
|
|
this.uidTextBox.Name = "uidTextBox";
|
|
this.uidTextBox.Size = new System.Drawing.Size(40, 22);
|
|
this.uidTextBox.TabIndex = 23;
|
|
//
|
|
// userMembershipsBindingSource
|
|
//
|
|
this.userMembershipsBindingSource.AllowNew = false;
|
|
this.userMembershipsBindingSource.DataMember = "UserMemberships";
|
|
this.userMembershipsBindingSource.DataSource = this.userBindingSource;
|
|
//
|
|
// userMembershipsDataGridView
|
|
//
|
|
this.userMembershipsDataGridView.AutoGenerateColumns = false;
|
|
this.userMembershipsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.dataGridViewTextBoxColumn3,
|
|
this.dataGridViewTextBoxColumn11,
|
|
this.dataGridViewTextBoxColumn7,
|
|
this.dataGridViewTextBoxColumn5,
|
|
this.dataGridViewTextBoxColumn6});
|
|
this.userMembershipsDataGridView.DataSource = this.userMembershipsBindingSource;
|
|
this.userMembershipsDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.userMembershipsDataGridView.Location = new System.Drawing.Point(0, 196);
|
|
this.userMembershipsDataGridView.Name = "userMembershipsDataGridView";
|
|
this.userMembershipsDataGridView.RowTemplate.Height = 24;
|
|
this.userMembershipsDataGridView.Size = new System.Drawing.Size(721, 223);
|
|
this.userMembershipsDataGridView.TabIndex = 29;
|
|
//
|
|
// dataGridViewTextBoxColumn3
|
|
//
|
|
this.dataGridViewTextBoxColumn3.DataPropertyName = "Ugid";
|
|
this.dataGridViewTextBoxColumn3.HeaderText = "Ugid";
|
|
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
|
|
this.dataGridViewTextBoxColumn3.ReadOnly = true;
|
|
this.dataGridViewTextBoxColumn3.Visible = false;
|
|
//
|
|
// dataGridViewTextBoxColumn11
|
|
//
|
|
this.dataGridViewTextBoxColumn11.DataPropertyName = "Gid";
|
|
this.dataGridViewTextBoxColumn11.HeaderText = "Gid";
|
|
this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
|
|
this.dataGridViewTextBoxColumn11.Visible = false;
|
|
//
|
|
// dataGridViewTextBoxColumn7
|
|
//
|
|
this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.dataGridViewTextBoxColumn7.DataPropertyName = "Group_GroupName";
|
|
this.dataGridViewTextBoxColumn7.HeaderText = "Group";
|
|
this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
|
|
this.dataGridViewTextBoxColumn7.ReadOnly = true;
|
|
//
|
|
// dataGridViewTextBoxColumn5
|
|
//
|
|
this.dataGridViewTextBoxColumn5.DataPropertyName = "StartDate";
|
|
this.dataGridViewTextBoxColumn5.HeaderText = "Start";
|
|
this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
|
|
//
|
|
// dataGridViewTextBoxColumn6
|
|
//
|
|
this.dataGridViewTextBoxColumn6.DataPropertyName = "EndDate";
|
|
this.dataGridViewTextBoxColumn6.HeaderText = "End";
|
|
this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel2.Location = new System.Drawing.Point(0, 158);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(721, 38);
|
|
this.panel2.TabIndex = 30;
|
|
//
|
|
// frmUser
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(721, 419);
|
|
this.Controls.Add(this.userMembershipsDataGridView);
|
|
this.Controls.Add(this.panel2);
|
|
this.Controls.Add(this.panel1);
|
|
this.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.userBindingSource, "FullName", true));
|
|
this.Name = "frmUser";
|
|
this.Text = "frmUser";
|
|
((System.ComponentModel.ISupportInitialize)(this.userBindingSource)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.userMembershipsBindingSource)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.userMembershipsDataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.BindingSource userBindingSource;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.TextBox cfgNameTextBox;
|
|
private System.Windows.Forms.TextBox courtesyTitleTextBox;
|
|
private System.Windows.Forms.TextBox firstNameTextBox;
|
|
private System.Windows.Forms.TextBox lastNameTextBox;
|
|
private System.Windows.Forms.TextBox middleNameTextBox;
|
|
private System.Windows.Forms.TextBox phoneNumberTextBox;
|
|
private System.Windows.Forms.TextBox suffixTextBox;
|
|
private System.Windows.Forms.TextBox useridTextBox;
|
|
private System.Windows.Forms.TextBox userLoginTextBox;
|
|
private System.Windows.Forms.TextBox userNameTextBox;
|
|
private System.Windows.Forms.TextBox uidTextBox;
|
|
private System.Windows.Forms.TextBox configTextBox;
|
|
private System.Windows.Forms.BindingSource userMembershipsBindingSource;
|
|
private System.Windows.Forms.DataGridView userMembershipsDataGridView;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnSave;
|
|
}
|
|
} |