Subversion Repositories Code-Repo

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 Kevin 1
namespace SWAT_Office_App
2
{
63 Kevin 3
    partial class Add_User_Account_Form
9 Kevin 4
    {
5
        /// <summary>
6
        /// Required designer variable.
7
        /// </summary>
8
        private System.ComponentModel.IContainer components = null;
9
 
10
        /// <summary>
11
        /// Clean up any resources being used.
12
        /// </summary>
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
        protected override void Dispose(bool disposing)
15
        {
16
            if (disposing && (components != null))
17
            {
18
                components.Dispose();
19
            }
20
            base.Dispose(disposing);
21
        }
22
 
23
        #region Windows Form Designer generated code
24
 
25
        /// <summary>
26
        /// Required method for Designer support - do not modify
27
        /// the contents of this method with the code editor.
28
        /// </summary>
29
        private void InitializeComponent()
30
        {
63 Kevin 31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Add_User_Account_Form));
9 Kevin 32
            this.btn_Add = new System.Windows.Forms.Button();
33
            this.btn_Cancel = new System.Windows.Forms.Button();
34
            this.txt_Password = new System.Windows.Forms.TextBox();
35
            this.txt_Username = new System.Windows.Forms.TextBox();
36
            this.lbl_Username = new System.Windows.Forms.Label();
37
            this.lbl_Password = new System.Windows.Forms.Label();
38
            this.chk_Share = new System.Windows.Forms.CheckBox();
39
            this.SuspendLayout();
40
            // 
41
            // btn_Add
42
            // 
43
            this.btn_Add.Location = new System.Drawing.Point(98, 56);
44
            this.btn_Add.Name = "btn_Add";
45
            this.btn_Add.Size = new System.Drawing.Size(60, 24);
46
            this.btn_Add.TabIndex = 4;
47
            this.btn_Add.Text = "&Add User";
48
            this.btn_Add.UseVisualStyleBackColor = true;
49
            this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
50
            // 
51
            // btn_Cancel
52
            // 
53
            this.btn_Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
54
            this.btn_Cancel.Location = new System.Drawing.Point(166, 56);
55
            this.btn_Cancel.Name = "btn_Cancel";
56
            this.btn_Cancel.Size = new System.Drawing.Size(60, 24);
57
            this.btn_Cancel.TabIndex = 5;
58
            this.btn_Cancel.Text = "Cancel";
59
            this.btn_Cancel.UseVisualStyleBackColor = true;
60
            this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
61
            // 
62
            // txt_Password
63
            // 
64
            this.txt_Password.Location = new System.Drawing.Point(124, 27);
65
            this.txt_Password.MaxLength = 13;
66
            this.txt_Password.Name = "txt_Password";
67
            this.txt_Password.Size = new System.Drawing.Size(100, 20);
68
            this.txt_Password.TabIndex = 2;
69
            this.txt_Password.UseSystemPasswordChar = true;
70
            // 
71
            // txt_Username
72
            // 
73
            this.txt_Username.Location = new System.Drawing.Point(12, 27);
74
            this.txt_Username.MaxLength = 16;
75
            this.txt_Username.Name = "txt_Username";
76
            this.txt_Username.Size = new System.Drawing.Size(100, 20);
77
            this.txt_Username.TabIndex = 1;
78
            // 
79
            // lbl_Username
80
            // 
81
            this.lbl_Username.AutoSize = true;
82
            this.lbl_Username.Location = new System.Drawing.Point(12, 9);
83
            this.lbl_Username.Name = "lbl_Username";
84
            this.lbl_Username.Size = new System.Drawing.Size(99, 13);
85
            this.lbl_Username.TabIndex = 4;
86
            this.lbl_Username.Text = "Username (Max 16)";
87
            // 
88
            // lbl_Password
89
            // 
90
            this.lbl_Password.AutoSize = true;
91
            this.lbl_Password.Location = new System.Drawing.Point(121, 9);
92
            this.lbl_Password.Name = "lbl_Password";
93
            this.lbl_Password.Size = new System.Drawing.Size(97, 13);
94
            this.lbl_Password.TabIndex = 5;
95
            this.lbl_Password.Text = "Password (Max 13)";
96
            // 
97
            // chk_Share
98
            // 
99
            this.chk_Share.AutoSize = true;
100
            this.chk_Share.Checked = true;
101
            this.chk_Share.CheckState = System.Windows.Forms.CheckState.Checked;
102
            this.chk_Share.Location = new System.Drawing.Point(10, 60);
103
            this.chk_Share.Name = "chk_Share";
104
            this.chk_Share.Size = new System.Drawing.Size(88, 17);
105
            this.chk_Share.TabIndex = 3;
106
            this.chk_Share.Text = "Create &Share";
107
            this.chk_Share.UseVisualStyleBackColor = true;
108
            // 
109
            // AddUserAccount_Form
110
            // 
111
            this.AcceptButton = this.btn_Add;
112
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
113
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
114
            this.CancelButton = this.btn_Cancel;
115
            this.ClientSize = new System.Drawing.Size(236, 89);
116
            this.Controls.Add(this.btn_Add);
117
            this.Controls.Add(this.chk_Share);
118
            this.Controls.Add(this.lbl_Password);
119
            this.Controls.Add(this.lbl_Username);
120
            this.Controls.Add(this.txt_Username);
121
            this.Controls.Add(this.txt_Password);
122
            this.Controls.Add(this.btn_Cancel);
123
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
124
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
125
            this.Name = "AddUserAccount_Form";
126
            this.ShowInTaskbar = false;
127
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
128
            this.Text = "Add User Account";
129
            this.ResumeLayout(false);
130
            this.PerformLayout();
131
 
132
        }
133
 
134
        #endregion
135
 
136
        private System.Windows.Forms.Button btn_Add;
137
        private System.Windows.Forms.Button btn_Cancel;
138
        private System.Windows.Forms.TextBox txt_Password;
139
        private System.Windows.Forms.TextBox txt_Username;
140
        private System.Windows.Forms.Label lbl_Username;
141
        private System.Windows.Forms.Label lbl_Password;
142
        private System.Windows.Forms.CheckBox chk_Share;
143
    }
144
}