You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

673 lines
34 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class HRDataCorrect
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HRDataCorrect));
  29. this.dgvHRItem = new System.Windows.Forms.DataGridView();
  30. this.cMemberID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.cMemberName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.tsButtons = new System.Windows.Forms.ToolStrip();
  33. this.tsbSearch = new System.Windows.Forms.ToolStripButton();
  34. this.tsbAdd = new System.Windows.Forms.ToolStripButton();
  35. this.tsbEdit = new System.Windows.Forms.ToolStripButton();
  36. this.tsbDelete = new System.Windows.Forms.ToolStripButton();
  37. this.tsbSave = new System.Windows.Forms.ToolStripButton();
  38. this.tsbOK = new System.Windows.Forms.ToolStripButton();
  39. this.tsbCancel = new System.Windows.Forms.ToolStripButton();
  40. this.tsbClean = new System.Windows.Forms.ToolStripButton();
  41. this.tsbExit = new System.Windows.Forms.ToolStripButton();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.label2 = new System.Windows.Forms.Label();
  44. this.dpStart = new System.Windows.Forms.DateTimePicker();
  45. this.dpEnd = new System.Windows.Forms.DateTimePicker();
  46. this.tbPage = new System.Windows.Forms.TabControl();
  47. this.tbPage1 = new System.Windows.Forms.TabPage();
  48. this.btnPickProject = new System.Windows.Forms.Button();
  49. this.txtEventID = new System.Windows.Forms.TextBox();
  50. this.label4 = new System.Windows.Forms.Label();
  51. this.label3 = new System.Windows.Forms.Label();
  52. this.txtDescription = new System.Windows.Forms.TextBox();
  53. this.btnUpdate = new System.Windows.Forms.Button();
  54. this.dtPickEnd = new System.Windows.Forms.DateTimePicker();
  55. this.cbEndDate = new System.Windows.Forms.CheckBox();
  56. this.txtSubject = new System.Windows.Forms.TextBox();
  57. this.cbSubject = new System.Windows.Forms.CheckBox();
  58. this.txtProjectNumber = new System.Windows.Forms.TextBox();
  59. this.cbProjectNumber = new System.Windows.Forms.CheckBox();
  60. this.cbWorkType = new System.Windows.Forms.CheckBox();
  61. this.dgvDetail = new System.Windows.Forms.DataGridView();
  62. this.cSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.cDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.cStartDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. this.cEndDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  66. this.cProjectNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.cWorkType = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.cEventID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.tbPage2 = new System.Windows.Forms.TabPage();
  70. this.btnUpdate1 = new System.Windows.Forms.Button();
  71. this.dgvDetail1 = new System.Windows.Forms.DataGridView();
  72. this.cSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  73. this.cMemberIDDetail = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.cSignTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.cSignOutTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. ((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).BeginInit();
  77. this.tsButtons.SuspendLayout();
  78. this.tbPage.SuspendLayout();
  79. this.tbPage1.SuspendLayout();
  80. ((System.ComponentModel.ISupportInitialize)(this.dgvDetail)).BeginInit();
  81. this.tbPage2.SuspendLayout();
  82. ((System.ComponentModel.ISupportInitialize)(this.dgvDetail1)).BeginInit();
  83. this.SuspendLayout();
  84. //
  85. // dgvHRItem
  86. //
  87. this.dgvHRItem.AllowUserToAddRows = false;
  88. this.dgvHRItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  89. | System.Windows.Forms.AnchorStyles.Left)));
  90. this.dgvHRItem.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  91. this.dgvHRItem.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  92. this.cMemberID,
  93. this.cMemberName});
  94. this.dgvHRItem.Location = new System.Drawing.Point(0, 39);
  95. this.dgvHRItem.Margin = new System.Windows.Forms.Padding(5);
  96. this.dgvHRItem.Name = "dgvHRItem";
  97. this.dgvHRItem.ReadOnly = true;
  98. this.dgvHRItem.RowTemplate.Height = 24;
  99. this.dgvHRItem.Size = new System.Drawing.Size(345, 720);
  100. this.dgvHRItem.TabIndex = 0;
  101. this.dgvHRItem.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHRItem_CellClick);
  102. //
  103. // cMemberID
  104. //
  105. this.cMemberID.DataPropertyName = "MemberID";
  106. this.cMemberID.HeaderText = "人員帳號";
  107. this.cMemberID.Name = "cMemberID";
  108. this.cMemberID.ReadOnly = true;
  109. this.cMemberID.Width = 150;
  110. //
  111. // cMemberName
  112. //
  113. this.cMemberName.DataPropertyName = "MemberName";
  114. this.cMemberName.HeaderText = "人員姓名";
  115. this.cMemberName.Name = "cMemberName";
  116. this.cMemberName.ReadOnly = true;
  117. this.cMemberName.Width = 150;
  118. //
  119. // tsButtons
  120. //
  121. this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
  122. this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  123. this.tsbSearch,
  124. this.tsbAdd,
  125. this.tsbEdit,
  126. this.tsbDelete,
  127. this.tsbSave,
  128. this.tsbOK,
  129. this.tsbCancel,
  130. this.tsbClean,
  131. this.tsbExit});
  132. this.tsButtons.Location = new System.Drawing.Point(0, 0);
  133. this.tsButtons.Name = "tsButtons";
  134. this.tsButtons.Size = new System.Drawing.Size(1907, 32);
  135. this.tsButtons.TabIndex = 4;
  136. this.tsButtons.Text = "功能按鈕表";
  137. //
  138. // tsbSearch
  139. //
  140. this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  141. this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
  142. this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
  143. this.tsbSearch.Name = "tsbSearch";
  144. this.tsbSearch.Size = new System.Drawing.Size(29, 29);
  145. this.tsbSearch.Text = "搜尋";
  146. this.tsbSearch.Visible = false;
  147. this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
  148. //
  149. // tsbAdd
  150. //
  151. this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  152. this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
  153. this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  154. this.tsbAdd.Name = "tsbAdd";
  155. this.tsbAdd.Size = new System.Drawing.Size(29, 29);
  156. this.tsbAdd.Text = "新增";
  157. this.tsbAdd.Visible = false;
  158. this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
  159. //
  160. // tsbEdit
  161. //
  162. this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  163. this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
  164. this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  165. this.tsbEdit.Name = "tsbEdit";
  166. this.tsbEdit.Size = new System.Drawing.Size(29, 29);
  167. this.tsbEdit.Text = "修改";
  168. this.tsbEdit.Visible = false;
  169. this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
  170. //
  171. // tsbDelete
  172. //
  173. this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  174. this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
  175. this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
  176. this.tsbDelete.Name = "tsbDelete";
  177. this.tsbDelete.Size = new System.Drawing.Size(29, 29);
  178. this.tsbDelete.Text = "刪除";
  179. this.tsbDelete.Visible = false;
  180. this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
  181. //
  182. // tsbSave
  183. //
  184. this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  185. this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
  186. this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  187. this.tsbSave.Name = "tsbSave";
  188. this.tsbSave.Size = new System.Drawing.Size(29, 29);
  189. this.tsbSave.Text = "儲存";
  190. this.tsbSave.Visible = false;
  191. this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
  192. //
  193. // tsbOK
  194. //
  195. this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  196. this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
  197. this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
  198. this.tsbOK.Name = "tsbOK";
  199. this.tsbOK.Size = new System.Drawing.Size(29, 29);
  200. this.tsbOK.Text = "確認";
  201. this.tsbOK.Visible = false;
  202. this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
  203. //
  204. // tsbCancel
  205. //
  206. this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  207. this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
  208. this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
  209. this.tsbCancel.Name = "tsbCancel";
  210. this.tsbCancel.Size = new System.Drawing.Size(29, 29);
  211. this.tsbCancel.Text = "取消";
  212. this.tsbCancel.Visible = false;
  213. this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
  214. //
  215. // tsbClean
  216. //
  217. this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  218. this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
  219. this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
  220. this.tsbClean.Name = "tsbClean";
  221. this.tsbClean.Size = new System.Drawing.Size(29, 29);
  222. this.tsbClean.Text = "清除";
  223. this.tsbClean.Visible = false;
  224. this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
  225. //
  226. // tsbExit
  227. //
  228. this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  229. this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
  230. this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
  231. this.tsbExit.Name = "tsbExit";
  232. this.tsbExit.Size = new System.Drawing.Size(29, 29);
  233. this.tsbExit.Text = "離開";
  234. this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
  235. //
  236. // label1
  237. //
  238. this.label1.AutoSize = true;
  239. this.label1.Location = new System.Drawing.Point(372, 39);
  240. this.label1.Name = "label1";
  241. this.label1.Size = new System.Drawing.Size(89, 20);
  242. this.label1.TabIndex = 5;
  243. this.label1.Text = "執行區間:";
  244. //
  245. // label2
  246. //
  247. this.label2.AutoSize = true;
  248. this.label2.Location = new System.Drawing.Point(678, 39);
  249. this.label2.Name = "label2";
  250. this.label2.Size = new System.Drawing.Size(21, 20);
  251. this.label2.TabIndex = 7;
  252. this.label2.Text = "~";
  253. //
  254. // dpStart
  255. //
  256. this.dpStart.CustomFormat = "yyyy-MM-dd";
  257. this.dpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  258. this.dpStart.Location = new System.Drawing.Point(467, 33);
  259. this.dpStart.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
  260. this.dpStart.Name = "dpStart";
  261. this.dpStart.Size = new System.Drawing.Size(200, 29);
  262. this.dpStart.TabIndex = 9;
  263. //
  264. // dpEnd
  265. //
  266. this.dpEnd.CustomFormat = "yyyy-MM-dd";
  267. this.dpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  268. this.dpEnd.Location = new System.Drawing.Point(705, 33);
  269. this.dpEnd.Name = "dpEnd";
  270. this.dpEnd.Size = new System.Drawing.Size(200, 29);
  271. this.dpEnd.TabIndex = 10;
  272. //
  273. // tbPage
  274. //
  275. this.tbPage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  276. | System.Windows.Forms.AnchorStyles.Left)
  277. | System.Windows.Forms.AnchorStyles.Right)));
  278. this.tbPage.Controls.Add(this.tbPage1);
  279. this.tbPage.Controls.Add(this.tbPage2);
  280. this.tbPage.Location = new System.Drawing.Point(353, 78);
  281. this.tbPage.Name = "tbPage";
  282. this.tbPage.SelectedIndex = 0;
  283. this.tbPage.Size = new System.Drawing.Size(1554, 681);
  284. this.tbPage.TabIndex = 11;
  285. //
  286. // tbPage1
  287. //
  288. this.tbPage1.Controls.Add(this.btnPickProject);
  289. this.tbPage1.Controls.Add(this.txtEventID);
  290. this.tbPage1.Controls.Add(this.label4);
  291. this.tbPage1.Controls.Add(this.label3);
  292. this.tbPage1.Controls.Add(this.txtDescription);
  293. this.tbPage1.Controls.Add(this.btnUpdate);
  294. this.tbPage1.Controls.Add(this.dtPickEnd);
  295. this.tbPage1.Controls.Add(this.cbEndDate);
  296. this.tbPage1.Controls.Add(this.txtSubject);
  297. this.tbPage1.Controls.Add(this.cbSubject);
  298. this.tbPage1.Controls.Add(this.txtProjectNumber);
  299. this.tbPage1.Controls.Add(this.cbProjectNumber);
  300. this.tbPage1.Controls.Add(this.cbWorkType);
  301. this.tbPage1.Controls.Add(this.dgvDetail);
  302. this.tbPage1.Location = new System.Drawing.Point(4, 29);
  303. this.tbPage1.Name = "tbPage1";
  304. this.tbPage1.Padding = new System.Windows.Forms.Padding(3);
  305. this.tbPage1.Size = new System.Drawing.Size(1546, 648);
  306. this.tbPage1.TabIndex = 0;
  307. this.tbPage1.Text = "更新工作資料及狀態";
  308. this.tbPage1.UseVisualStyleBackColor = true;
  309. //
  310. // btnPickProject
  311. //
  312. this.btnPickProject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  313. this.btnPickProject.Location = new System.Drawing.Point(424, 600);
  314. this.btnPickProject.Name = "btnPickProject";
  315. this.btnPickProject.Size = new System.Drawing.Size(38, 29);
  316. this.btnPickProject.TabIndex = 12;
  317. this.btnPickProject.Text = "...";
  318. this.btnPickProject.UseVisualStyleBackColor = true;
  319. this.btnPickProject.Click += new System.EventHandler(this.btnPickProject_Click);
  320. //
  321. // txtEventID
  322. //
  323. this.txtEventID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  324. this.txtEventID.Location = new System.Drawing.Point(982, 558);
  325. this.txtEventID.Name = "txtEventID";
  326. this.txtEventID.ReadOnly = true;
  327. this.txtEventID.Size = new System.Drawing.Size(276, 29);
  328. this.txtEventID.TabIndex = 11;
  329. //
  330. // label4
  331. //
  332. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  333. this.label4.AutoSize = true;
  334. this.label4.Location = new System.Drawing.Point(903, 563);
  335. this.label4.Name = "label4";
  336. this.label4.Size = new System.Drawing.Size(73, 20);
  337. this.label4.TabIndex = 10;
  338. this.label4.Text = "事件編號";
  339. //
  340. // label3
  341. //
  342. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  343. this.label3.AutoSize = true;
  344. this.label3.Location = new System.Drawing.Point(935, 606);
  345. this.label3.Name = "label3";
  346. this.label3.Size = new System.Drawing.Size(41, 20);
  347. this.label3.TabIndex = 10;
  348. this.label3.Text = "說明";
  349. //
  350. // txtDescription
  351. //
  352. this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  353. this.txtDescription.Location = new System.Drawing.Point(982, 599);
  354. this.txtDescription.Name = "txtDescription";
  355. this.txtDescription.Size = new System.Drawing.Size(276, 29);
  356. this.txtDescription.TabIndex = 9;
  357. //
  358. // btnUpdate
  359. //
  360. this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  361. this.btnUpdate.Location = new System.Drawing.Point(1274, 599);
  362. this.btnUpdate.Name = "btnUpdate";
  363. this.btnUpdate.Size = new System.Drawing.Size(75, 29);
  364. this.btnUpdate.TabIndex = 8;
  365. this.btnUpdate.Text = "更 正";
  366. this.btnUpdate.UseVisualStyleBackColor = true;
  367. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  368. //
  369. // dtPickEnd
  370. //
  371. this.dtPickEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  372. this.dtPickEnd.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  373. this.dtPickEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  374. this.dtPickEnd.Location = new System.Drawing.Point(649, 558);
  375. this.dtPickEnd.Name = "dtPickEnd";
  376. this.dtPickEnd.Size = new System.Drawing.Size(192, 29);
  377. this.dtPickEnd.TabIndex = 7;
  378. //
  379. // cbEndDate
  380. //
  381. this.cbEndDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  382. this.cbEndDate.AutoSize = true;
  383. this.cbEndDate.Location = new System.Drawing.Point(519, 563);
  384. this.cbEndDate.Name = "cbEndDate";
  385. this.cbEndDate.Size = new System.Drawing.Size(124, 24);
  386. this.cbEndDate.TabIndex = 6;
  387. this.cbEndDate.Text = "變更結束時間";
  388. this.cbEndDate.UseVisualStyleBackColor = true;
  389. //
  390. // txtSubject
  391. //
  392. this.txtSubject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  393. this.txtSubject.Location = new System.Drawing.Point(649, 600);
  394. this.txtSubject.Name = "txtSubject";
  395. this.txtSubject.Size = new System.Drawing.Size(276, 29);
  396. this.txtSubject.TabIndex = 5;
  397. //
  398. // cbSubject
  399. //
  400. this.cbSubject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  401. this.cbSubject.AutoSize = true;
  402. this.cbSubject.Location = new System.Drawing.Point(519, 605);
  403. this.cbSubject.Name = "cbSubject";
  404. this.cbSubject.Size = new System.Drawing.Size(124, 24);
  405. this.cbSubject.TabIndex = 4;
  406. this.cbSubject.Text = "變更事件主旨";
  407. this.cbSubject.UseVisualStyleBackColor = true;
  408. //
  409. // txtProjectNumber
  410. //
  411. this.txtProjectNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  412. this.txtProjectNumber.Location = new System.Drawing.Point(142, 600);
  413. this.txtProjectNumber.Name = "txtProjectNumber";
  414. this.txtProjectNumber.Size = new System.Drawing.Size(276, 29);
  415. this.txtProjectNumber.TabIndex = 3;
  416. //
  417. // cbProjectNumber
  418. //
  419. this.cbProjectNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  420. this.cbProjectNumber.AutoSize = true;
  421. this.cbProjectNumber.Location = new System.Drawing.Point(12, 605);
  422. this.cbProjectNumber.Name = "cbProjectNumber";
  423. this.cbProjectNumber.Size = new System.Drawing.Size(124, 24);
  424. this.cbProjectNumber.TabIndex = 2;
  425. this.cbProjectNumber.Text = "變更專案編號";
  426. this.cbProjectNumber.UseVisualStyleBackColor = true;
  427. //
  428. // cbWorkType
  429. //
  430. this.cbWorkType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  431. this.cbWorkType.AutoSize = true;
  432. this.cbWorkType.Location = new System.Drawing.Point(12, 563);
  433. this.cbWorkType.Name = "cbWorkType";
  434. this.cbWorkType.Size = new System.Drawing.Size(124, 24);
  435. this.cbWorkType.TabIndex = 1;
  436. this.cbWorkType.Text = "變更工作類別";
  437. this.cbWorkType.UseVisualStyleBackColor = true;
  438. //
  439. // dgvDetail
  440. //
  441. this.dgvDetail.AllowUserToAddRows = false;
  442. this.dgvDetail.AllowUserToDeleteRows = false;
  443. this.dgvDetail.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  444. | System.Windows.Forms.AnchorStyles.Left)
  445. | System.Windows.Forms.AnchorStyles.Right)));
  446. this.dgvDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  447. this.dgvDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  448. this.cSubject,
  449. this.cDescription,
  450. this.cStartDate,
  451. this.cEndDate,
  452. this.cProjectNumber,
  453. this.cWorkType,
  454. this.cEventID});
  455. this.dgvDetail.Location = new System.Drawing.Point(3, 6);
  456. this.dgvDetail.Name = "dgvDetail";
  457. this.dgvDetail.RowTemplate.Height = 24;
  458. this.dgvDetail.Size = new System.Drawing.Size(1537, 546);
  459. this.dgvDetail.TabIndex = 0;
  460. this.dgvDetail.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDetail_CellClick);
  461. //
  462. // cSubject
  463. //
  464. this.cSubject.DataPropertyName = "Subject";
  465. this.cSubject.HeaderText = "主旨";
  466. this.cSubject.Name = "cSubject";
  467. this.cSubject.ReadOnly = true;
  468. this.cSubject.Width = 150;
  469. //
  470. // cDescription
  471. //
  472. this.cDescription.DataPropertyName = "Description";
  473. this.cDescription.HeaderText = "說明";
  474. this.cDescription.Name = "cDescription";
  475. this.cDescription.ReadOnly = true;
  476. this.cDescription.Width = 300;
  477. //
  478. // cStartDate
  479. //
  480. this.cStartDate.DataPropertyName = "StartDate";
  481. this.cStartDate.HeaderText = "開始時間";
  482. this.cStartDate.Name = "cStartDate";
  483. this.cStartDate.ReadOnly = true;
  484. this.cStartDate.Width = 200;
  485. //
  486. // cEndDate
  487. //
  488. this.cEndDate.DataPropertyName = "EndDate";
  489. this.cEndDate.HeaderText = "結束時間";
  490. this.cEndDate.Name = "cEndDate";
  491. this.cEndDate.ReadOnly = true;
  492. this.cEndDate.Width = 200;
  493. //
  494. // cProjectNumber
  495. //
  496. this.cProjectNumber.DataPropertyName = "ProjectNumber";
  497. this.cProjectNumber.HeaderText = "專案代碼";
  498. this.cProjectNumber.Name = "cProjectNumber";
  499. this.cProjectNumber.ReadOnly = true;
  500. this.cProjectNumber.Width = 130;
  501. //
  502. // cWorkType
  503. //
  504. this.cWorkType.DataPropertyName = "WorkType";
  505. this.cWorkType.HeaderText = "工作類別";
  506. this.cWorkType.Name = "cWorkType";
  507. this.cWorkType.ReadOnly = true;
  508. //
  509. // cEventID
  510. //
  511. this.cEventID.DataPropertyName = "EventID";
  512. this.cEventID.HeaderText = "事件代碼";
  513. this.cEventID.Name = "cEventID";
  514. this.cEventID.ReadOnly = true;
  515. this.cEventID.Visible = false;
  516. this.cEventID.Width = 300;
  517. //
  518. // tbPage2
  519. //
  520. this.tbPage2.Controls.Add(this.btnUpdate1);
  521. this.tbPage2.Controls.Add(this.dgvDetail1);
  522. this.tbPage2.Location = new System.Drawing.Point(4, 29);
  523. this.tbPage2.Name = "tbPage2";
  524. this.tbPage2.Padding = new System.Windows.Forms.Padding(3);
  525. this.tbPage2.Size = new System.Drawing.Size(1546, 648);
  526. this.tbPage2.TabIndex = 1;
  527. this.tbPage2.Text = "更正加班資料";
  528. this.tbPage2.UseVisualStyleBackColor = true;
  529. //
  530. // btnUpdate1
  531. //
  532. this.btnUpdate1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  533. this.btnUpdate1.Location = new System.Drawing.Point(6, 600);
  534. this.btnUpdate1.Name = "btnUpdate1";
  535. this.btnUpdate1.Size = new System.Drawing.Size(75, 29);
  536. this.btnUpdate1.TabIndex = 9;
  537. this.btnUpdate1.Text = "更 正";
  538. this.btnUpdate1.UseVisualStyleBackColor = true;
  539. this.btnUpdate1.Click += new System.EventHandler(this.btnUpdate1_Click);
  540. //
  541. // dgvDetail1
  542. //
  543. this.dgvDetail1.AllowUserToAddRows = false;
  544. this.dgvDetail1.AllowUserToDeleteRows = false;
  545. this.dgvDetail1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  546. | System.Windows.Forms.AnchorStyles.Left)
  547. | System.Windows.Forms.AnchorStyles.Right)));
  548. this.dgvDetail1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  549. this.dgvDetail1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  550. this.cSelected,
  551. this.cMemberIDDetail,
  552. this.cSignTime,
  553. this.cSignOutTime});
  554. this.dgvDetail1.Location = new System.Drawing.Point(6, 6);
  555. this.dgvDetail1.Name = "dgvDetail1";
  556. this.dgvDetail1.RowTemplate.Height = 24;
  557. this.dgvDetail1.Size = new System.Drawing.Size(1532, 574);
  558. this.dgvDetail1.TabIndex = 0;
  559. //
  560. // cSelected
  561. //
  562. this.cSelected.Frozen = true;
  563. this.cSelected.HeaderText = "選擇";
  564. this.cSelected.Name = "cSelected";
  565. //
  566. // cMemberIDDetail
  567. //
  568. this.cMemberIDDetail.DataPropertyName = "MemberID";
  569. this.cMemberIDDetail.HeaderText = "使用者";
  570. this.cMemberIDDetail.Name = "cMemberIDDetail";
  571. this.cMemberIDDetail.ReadOnly = true;
  572. this.cMemberIDDetail.Width = 150;
  573. //
  574. // cSignTime
  575. //
  576. this.cSignTime.DataPropertyName = "SignTime";
  577. this.cSignTime.HeaderText = "簽到時間";
  578. this.cSignTime.Name = "cSignTime";
  579. this.cSignTime.ReadOnly = true;
  580. this.cSignTime.Width = 250;
  581. //
  582. // cSignOutTime
  583. //
  584. this.cSignOutTime.DataPropertyName = "SignOutTime";
  585. this.cSignOutTime.HeaderText = "簽出時間";
  586. this.cSignOutTime.Name = "cSignOutTime";
  587. this.cSignOutTime.ReadOnly = true;
  588. this.cSignOutTime.Width = 250;
  589. //
  590. // HRDataCorrect
  591. //
  592. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  593. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  594. this.ClientSize = new System.Drawing.Size(1907, 762);
  595. this.Controls.Add(this.tbPage);
  596. this.Controls.Add(this.dpEnd);
  597. this.Controls.Add(this.dpStart);
  598. this.Controls.Add(this.label2);
  599. this.Controls.Add(this.label1);
  600. this.Controls.Add(this.tsButtons);
  601. this.Controls.Add(this.dgvHRItem);
  602. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  603. this.Margin = new System.Windows.Forms.Padding(5);
  604. this.Name = "HRDataCorrect";
  605. this.Text = "人事基本資料檔";
  606. this.Load += new System.EventHandler(this.HRDataCorrect_Load);
  607. ((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).EndInit();
  608. this.tsButtons.ResumeLayout(false);
  609. this.tsButtons.PerformLayout();
  610. this.tbPage.ResumeLayout(false);
  611. this.tbPage1.ResumeLayout(false);
  612. this.tbPage1.PerformLayout();
  613. ((System.ComponentModel.ISupportInitialize)(this.dgvDetail)).EndInit();
  614. this.tbPage2.ResumeLayout(false);
  615. ((System.ComponentModel.ISupportInitialize)(this.dgvDetail1)).EndInit();
  616. this.ResumeLayout(false);
  617. this.PerformLayout();
  618. }
  619. #endregion
  620. private System.Windows.Forms.DataGridView dgvHRItem;
  621. private System.Windows.Forms.ToolStrip tsButtons;
  622. private System.Windows.Forms.ToolStripButton tsbSave;
  623. private System.Windows.Forms.ToolStripButton tsbAdd;
  624. private System.Windows.Forms.ToolStripButton tsbDelete;
  625. private System.Windows.Forms.ToolStripButton tsbSearch;
  626. private System.Windows.Forms.ToolStripButton tsbOK;
  627. private System.Windows.Forms.ToolStripButton tsbEdit;
  628. private System.Windows.Forms.ToolStripButton tsbCancel;
  629. private System.Windows.Forms.ToolStripButton tsbExit;
  630. private System.Windows.Forms.ToolStripButton tsbClean;
  631. private System.Windows.Forms.DataGridViewTextBoxColumn cMemberID;
  632. private System.Windows.Forms.DataGridViewTextBoxColumn cMemberName;
  633. private System.Windows.Forms.Label label1;
  634. private System.Windows.Forms.Label label2;
  635. private System.Windows.Forms.DateTimePicker dpStart;
  636. private System.Windows.Forms.DateTimePicker dpEnd;
  637. private System.Windows.Forms.TabControl tbPage;
  638. private System.Windows.Forms.TabPage tbPage1;
  639. private System.Windows.Forms.DataGridView dgvDetail;
  640. private System.Windows.Forms.TabPage tbPage2;
  641. private System.Windows.Forms.CheckBox cbEndDate;
  642. private System.Windows.Forms.TextBox txtSubject;
  643. private System.Windows.Forms.CheckBox cbSubject;
  644. private System.Windows.Forms.TextBox txtProjectNumber;
  645. private System.Windows.Forms.CheckBox cbProjectNumber;
  646. private System.Windows.Forms.CheckBox cbWorkType;
  647. private System.Windows.Forms.DateTimePicker dtPickEnd;
  648. private System.Windows.Forms.Button btnUpdate;
  649. private System.Windows.Forms.DataGridView dgvDetail1;
  650. private System.Windows.Forms.DataGridViewCheckBoxColumn cSelected;
  651. private System.Windows.Forms.DataGridViewTextBoxColumn cMemberIDDetail;
  652. private System.Windows.Forms.DataGridViewTextBoxColumn cSignTime;
  653. private System.Windows.Forms.DataGridViewTextBoxColumn cSignOutTime;
  654. private System.Windows.Forms.Button btnUpdate1;
  655. private System.Windows.Forms.Label label3;
  656. private System.Windows.Forms.TextBox txtDescription;
  657. private System.Windows.Forms.TextBox txtEventID;
  658. private System.Windows.Forms.Label label4;
  659. private System.Windows.Forms.DataGridViewTextBoxColumn cSubject;
  660. private System.Windows.Forms.DataGridViewTextBoxColumn cDescription;
  661. private System.Windows.Forms.DataGridViewTextBoxColumn cStartDate;
  662. private System.Windows.Forms.DataGridViewTextBoxColumn cEndDate;
  663. private System.Windows.Forms.DataGridViewTextBoxColumn cProjectNumber;
  664. private System.Windows.Forms.DataGridViewTextBoxColumn cWorkType;
  665. private System.Windows.Forms.DataGridViewTextBoxColumn cEventID;
  666. private System.Windows.Forms.Button btnPickProject;
  667. }
  668. }