Form2.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. namespace WindowsFormsApp22222
  2. {
  3. partial class Form2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.comboBox1 = new System.Windows.Forms.ComboBox();
  35. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  36. this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  37. this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
  38. this.rewqDataSet = new WindowsFormsApp22222.rewqDataSet();
  39. this.officesBindingSource = new System.Windows.Forms.BindingSource(this.components);
  40. this.officesTableAdapter = new WindowsFormsApp22222.rewqDataSetTableAdapters.OfficesTableAdapter();
  41. this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  42. this.usersTableAdapter = new WindowsFormsApp22222.rewqDataSetTableAdapters.UsersTableAdapter();
  43. this.iDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.roleIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.emailDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.firstNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.lastNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  49. this.officeIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  50. this.birthdateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.activeDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  52. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  53. this.toolStrip1.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.rewqDataSet)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
  57. this.SuspendLayout();
  58. //
  59. // dataGridView1
  60. //
  61. this.dataGridView1.AutoGenerateColumns = false;
  62. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  63. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  64. this.iDDataGridViewTextBoxColumn,
  65. this.roleIDDataGridViewTextBoxColumn,
  66. this.emailDataGridViewTextBoxColumn,
  67. this.passwordDataGridViewTextBoxColumn,
  68. this.firstNameDataGridViewTextBoxColumn,
  69. this.lastNameDataGridViewTextBoxColumn,
  70. this.officeIDDataGridViewTextBoxColumn,
  71. this.birthdateDataGridViewTextBoxColumn,
  72. this.activeDataGridViewCheckBoxColumn});
  73. this.dataGridView1.DataSource = this.usersBindingSource;
  74. this.dataGridView1.Location = new System.Drawing.Point(0, 108);
  75. this.dataGridView1.Name = "dataGridView1";
  76. this.dataGridView1.Size = new System.Drawing.Size(841, 150);
  77. this.dataGridView1.TabIndex = 0;
  78. //
  79. // button1
  80. //
  81. this.button1.Location = new System.Drawing.Point(15, 323);
  82. this.button1.Name = "button1";
  83. this.button1.Size = new System.Drawing.Size(101, 23);
  84. this.button1.TabIndex = 1;
  85. this.button1.Text = "Change Role";
  86. this.button1.UseVisualStyleBackColor = true;
  87. this.button1.Click += new System.EventHandler(this.button1_Click);
  88. //
  89. // button2
  90. //
  91. this.button2.Location = new System.Drawing.Point(193, 323);
  92. this.button2.Name = "button2";
  93. this.button2.Size = new System.Drawing.Size(127, 23);
  94. this.button2.TabIndex = 2;
  95. this.button2.Text = "Enable/Disable Login";
  96. this.button2.UseVisualStyleBackColor = true;
  97. this.button2.Click += new System.EventHandler(this.button2_Click);
  98. //
  99. // label1
  100. //
  101. this.label1.AutoSize = true;
  102. this.label1.Location = new System.Drawing.Point(12, 44);
  103. this.label1.Name = "label1";
  104. this.label1.Size = new System.Drawing.Size(41, 13);
  105. this.label1.TabIndex = 3;
  106. this.label1.Text = "Office :";
  107. this.label1.Click += new System.EventHandler(this.label1_Click);
  108. //
  109. // comboBox1
  110. //
  111. this.comboBox1.DataSource = this.officesBindingSource;
  112. this.comboBox1.DisplayMember = "Title";
  113. this.comboBox1.FormattingEnabled = true;
  114. this.comboBox1.Location = new System.Drawing.Point(56, 36);
  115. this.comboBox1.Name = "comboBox1";
  116. this.comboBox1.Size = new System.Drawing.Size(264, 21);
  117. this.comboBox1.TabIndex = 4;
  118. //
  119. // toolStrip1
  120. //
  121. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  122. this.toolStripButton1,
  123. this.toolStripButton2});
  124. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  125. this.toolStrip1.Name = "toolStrip1";
  126. this.toolStrip1.Size = new System.Drawing.Size(853, 25);
  127. this.toolStrip1.TabIndex = 5;
  128. this.toolStrip1.Text = "toolStrip1";
  129. //
  130. // toolStripButton1
  131. //
  132. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  133. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  134. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  135. this.toolStripButton1.Name = "toolStripButton1";
  136. this.toolStripButton1.Size = new System.Drawing.Size(58, 22);
  137. this.toolStripButton1.Text = "Add user";
  138. this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
  139. //
  140. // toolStripButton2
  141. //
  142. this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  143. this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
  144. this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  145. this.toolStripButton2.Name = "toolStripButton2";
  146. this.toolStripButton2.Size = new System.Drawing.Size(29, 22);
  147. this.toolStripButton2.Text = "Exit";
  148. this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
  149. //
  150. // rewqDataSet
  151. //
  152. this.rewqDataSet.DataSetName = "rewqDataSet";
  153. this.rewqDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  154. //
  155. // officesBindingSource
  156. //
  157. this.officesBindingSource.DataMember = "Offices";
  158. this.officesBindingSource.DataSource = this.rewqDataSet;
  159. //
  160. // officesTableAdapter
  161. //
  162. this.officesTableAdapter.ClearBeforeFill = true;
  163. //
  164. // usersBindingSource
  165. //
  166. this.usersBindingSource.DataMember = "Users";
  167. this.usersBindingSource.DataSource = this.rewqDataSet;
  168. //
  169. // usersTableAdapter
  170. //
  171. this.usersTableAdapter.ClearBeforeFill = true;
  172. //
  173. // iDDataGridViewTextBoxColumn
  174. //
  175. this.iDDataGridViewTextBoxColumn.DataPropertyName = "ID";
  176. this.iDDataGridViewTextBoxColumn.HeaderText = "ID";
  177. this.iDDataGridViewTextBoxColumn.Name = "iDDataGridViewTextBoxColumn";
  178. //
  179. // roleIDDataGridViewTextBoxColumn
  180. //
  181. this.roleIDDataGridViewTextBoxColumn.DataPropertyName = "RoleID";
  182. this.roleIDDataGridViewTextBoxColumn.HeaderText = "RoleID";
  183. this.roleIDDataGridViewTextBoxColumn.Name = "roleIDDataGridViewTextBoxColumn";
  184. //
  185. // emailDataGridViewTextBoxColumn
  186. //
  187. this.emailDataGridViewTextBoxColumn.DataPropertyName = "Email";
  188. this.emailDataGridViewTextBoxColumn.HeaderText = "Email";
  189. this.emailDataGridViewTextBoxColumn.Name = "emailDataGridViewTextBoxColumn";
  190. //
  191. // passwordDataGridViewTextBoxColumn
  192. //
  193. this.passwordDataGridViewTextBoxColumn.DataPropertyName = "Password";
  194. this.passwordDataGridViewTextBoxColumn.HeaderText = "Password";
  195. this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
  196. //
  197. // firstNameDataGridViewTextBoxColumn
  198. //
  199. this.firstNameDataGridViewTextBoxColumn.DataPropertyName = "FirstName";
  200. this.firstNameDataGridViewTextBoxColumn.HeaderText = "FirstName";
  201. this.firstNameDataGridViewTextBoxColumn.Name = "firstNameDataGridViewTextBoxColumn";
  202. //
  203. // lastNameDataGridViewTextBoxColumn
  204. //
  205. this.lastNameDataGridViewTextBoxColumn.DataPropertyName = "LastName";
  206. this.lastNameDataGridViewTextBoxColumn.HeaderText = "LastName";
  207. this.lastNameDataGridViewTextBoxColumn.Name = "lastNameDataGridViewTextBoxColumn";
  208. //
  209. // officeIDDataGridViewTextBoxColumn
  210. //
  211. this.officeIDDataGridViewTextBoxColumn.DataPropertyName = "OfficeID";
  212. this.officeIDDataGridViewTextBoxColumn.HeaderText = "OfficeID";
  213. this.officeIDDataGridViewTextBoxColumn.Name = "officeIDDataGridViewTextBoxColumn";
  214. //
  215. // birthdateDataGridViewTextBoxColumn
  216. //
  217. this.birthdateDataGridViewTextBoxColumn.DataPropertyName = "Birthdate";
  218. this.birthdateDataGridViewTextBoxColumn.HeaderText = "Birthdate";
  219. this.birthdateDataGridViewTextBoxColumn.Name = "birthdateDataGridViewTextBoxColumn";
  220. //
  221. // activeDataGridViewCheckBoxColumn
  222. //
  223. this.activeDataGridViewCheckBoxColumn.DataPropertyName = "Active";
  224. this.activeDataGridViewCheckBoxColumn.HeaderText = "Active";
  225. this.activeDataGridViewCheckBoxColumn.Name = "activeDataGridViewCheckBoxColumn";
  226. //
  227. // Form2
  228. //
  229. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  230. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  231. this.ClientSize = new System.Drawing.Size(853, 450);
  232. this.Controls.Add(this.toolStrip1);
  233. this.Controls.Add(this.comboBox1);
  234. this.Controls.Add(this.label1);
  235. this.Controls.Add(this.button2);
  236. this.Controls.Add(this.button1);
  237. this.Controls.Add(this.dataGridView1);
  238. this.Name = "Form2";
  239. this.Text = "Form2";
  240. this.Load += new System.EventHandler(this.Form2_Load);
  241. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  242. this.toolStrip1.ResumeLayout(false);
  243. this.toolStrip1.PerformLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.rewqDataSet)).EndInit();
  245. ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).EndInit();
  246. ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
  247. this.ResumeLayout(false);
  248. this.PerformLayout();
  249. }
  250. #endregion
  251. private System.Windows.Forms.DataGridView dataGridView1;
  252. private System.Windows.Forms.Button button1;
  253. private System.Windows.Forms.Button button2;
  254. private System.Windows.Forms.Label label1;
  255. private System.Windows.Forms.ComboBox comboBox1;
  256. private System.Windows.Forms.ToolStrip toolStrip1;
  257. private System.Windows.Forms.ToolStripButton toolStripButton1;
  258. private System.Windows.Forms.ToolStripButton toolStripButton2;
  259. private rewqDataSet rewqDataSet;
  260. private System.Windows.Forms.BindingSource officesBindingSource;
  261. private rewqDataSetTableAdapters.OfficesTableAdapter officesTableAdapter;
  262. private System.Windows.Forms.BindingSource usersBindingSource;
  263. private rewqDataSetTableAdapters.UsersTableAdapter usersTableAdapter;
  264. private System.Windows.Forms.DataGridViewTextBoxColumn iDDataGridViewTextBoxColumn;
  265. private System.Windows.Forms.DataGridViewTextBoxColumn roleIDDataGridViewTextBoxColumn;
  266. private System.Windows.Forms.DataGridViewTextBoxColumn emailDataGridViewTextBoxColumn;
  267. private System.Windows.Forms.DataGridViewTextBoxColumn passwordDataGridViewTextBoxColumn;
  268. private System.Windows.Forms.DataGridViewTextBoxColumn firstNameDataGridViewTextBoxColumn;
  269. private System.Windows.Forms.DataGridViewTextBoxColumn lastNameDataGridViewTextBoxColumn;
  270. private System.Windows.Forms.DataGridViewTextBoxColumn officeIDDataGridViewTextBoxColumn;
  271. private System.Windows.Forms.DataGridViewTextBoxColumn birthdateDataGridViewTextBoxColumn;
  272. private System.Windows.Forms.DataGridViewCheckBoxColumn activeDataGridViewCheckBoxColumn;
  273. }
  274. }