F_PC_0104_1.Designer.cs 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. namespace Dongke.IBOSS.PRD.Client.PCModule
  2. {
  3. partial class F_PC_0104_1
  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(F_PC_0104_1));
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  46. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  47. this.tsbtnAdd = new System.Windows.Forms.ToolStripButton();
  48. this.tsbtnEdit = new System.Windows.Forms.ToolStripButton();
  49. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  50. this.tsbtnDisable = new System.Windows.Forms.ToolStripButton();
  51. this.tsbtnStart = new System.Windows.Forms.ToolStripButton();
  52. this.tsbtnManager = new System.Windows.Forms.ToolStripButton();
  53. this.tsbtnQueryRecord = new System.Windows.Forms.ToolStripButton();
  54. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  55. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  56. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  57. this.dgvGroutingLine = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  58. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  59. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  60. this.txtEndUsedDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  61. this.c_Label12 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  62. this.txtEndUsedDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  63. this.cbEndTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  64. this.txtRemarks = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  65. this.lblRemarks = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  66. this.txtBeginUsedDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  67. this.c_Label11 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  68. this.txtBeginUsedDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  69. this.cbStartTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  70. this.txtGroutingLineName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  71. this.lblGroutingLineName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  72. this.txtGroutingLineCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  73. this.lblGroutingLineCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  74. this.lblGMouldStatus = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  75. this.txtGroutingLineNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  76. this.lblGroutingLineNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  77. this.lblFloorNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  78. this.txtBuildingNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  79. this.lblBuildingNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  80. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  81. this.cbWorkShop = new Dongke.IBOSS.PRD.Basics.BaseControls.DKListBoxComboBox();
  82. this.lblWorkShop = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  83. this.scbGoods = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoods();
  84. this.lblGoods = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  85. this.goodscodeText = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  86. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  87. this.TestFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ValidCheckedBoxList();
  88. this.lblGMouldType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  89. this.scbGMouldType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGMouldType();
  90. this.chkDisable = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  91. this.chkEnable = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  92. this.lstcbxGMouldStatus = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ComboBox();
  93. this.txtFloorNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DGV_Digital();
  94. this.txtGroutingUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  95. this.lblGroutingUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  96. this.dgvGroutingLineDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  97. this.GroutingLineDetailID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  98. this.GroutingLineIDM = new System.Windows.Forms.DataGridViewTextBoxColumn();
  99. this.GroutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  100. this.MouldBarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.MouldID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.MouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  103. this.GoodsID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.GOODSCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.GoodsName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.GoodsSpecification = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.StandardGroutingCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.GroutingCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  109. this.GMouldStatusM = new System.Windows.Forms.DataGridViewTextBoxColumn();
  110. this.TESTMOULDFLAG = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  111. this.BeginUsedDateM = new System.Windows.Forms.DataGridViewTextBoxColumn();
  112. this.EndUsedDate2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.Remarks1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.RecordRemarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.splLine = new System.Windows.Forms.SplitContainer();
  116. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  117. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  118. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  119. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  125. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  126. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  127. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  128. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  129. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  130. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.GroutingLineID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.GroutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  143. this.UserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.staffCodeList = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.goosCodeList = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.goosNameList = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.workshop = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.ValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  149. this.BuildingNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.FloorNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.GroutingLineNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.MouldQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.GMouldTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  154. this.HIGHPRESSUREFLAG = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  155. this.monitorcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  156. this.BeginUsedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  157. this.EndUsedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  158. this.GMOULDSTATUSNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  159. this.valueflag2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  160. this.TESTFLAGNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  161. this.Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  162. this.GMouldStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
  163. this.tsrOperate.SuspendLayout();
  164. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).BeginInit();
  165. this.gbxCondition.SuspendLayout();
  166. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLineDetail)).BeginInit();
  167. ((System.ComponentModel.ISupportInitialize)(this.splLine)).BeginInit();
  168. this.splLine.Panel1.SuspendLayout();
  169. this.splLine.Panel2.SuspendLayout();
  170. this.splLine.SuspendLayout();
  171. this.SuspendLayout();
  172. //
  173. // tsrOperate
  174. //
  175. this.tsrOperate.AutoSize = false;
  176. this.tsrOperate.BackColor = System.Drawing.SystemColors.Control;
  177. this.tsrOperate.BackgroundImage = global::Dongke.IBOSS.PRD.Client.PCModule.Properties.Resources.functionbackground;
  178. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  179. this.tsrOperate.ImageScalingSize = new System.Drawing.Size(20, 20);
  180. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  181. this.tsbtnAdd,
  182. this.tsbtnEdit,
  183. this.toolStripSeparator1,
  184. this.tsbtnDisable,
  185. this.tsbtnStart,
  186. this.tsbtnManager,
  187. this.tsbtnQueryRecord,
  188. this.toolStripSeparator3,
  189. this.tsbtnAdaptive,
  190. this.tsbtnClose});
  191. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  192. this.tsrOperate.Name = "tsrOperate";
  193. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  194. this.tsrOperate.ShowItemToolTips = false;
  195. this.tsrOperate.Size = new System.Drawing.Size(1216, 35);
  196. this.tsrOperate.TabIndex = 0;
  197. //
  198. // tsbtnAdd
  199. //
  200. this.tsbtnAdd.AutoSize = false;
  201. this.tsbtnAdd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  202. this.tsbtnAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  203. this.tsbtnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  204. this.tsbtnAdd.Name = "tsbtnAdd";
  205. this.tsbtnAdd.Size = new System.Drawing.Size(60, 25);
  206. this.tsbtnAdd.Text = "新建(&N)";
  207. this.tsbtnAdd.Click += new System.EventHandler(this.tsbtnAdd_Click);
  208. //
  209. // tsbtnEdit
  210. //
  211. this.tsbtnEdit.AutoSize = false;
  212. this.tsbtnEdit.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  213. this.tsbtnEdit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  214. this.tsbtnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  215. this.tsbtnEdit.Name = "tsbtnEdit";
  216. this.tsbtnEdit.Size = new System.Drawing.Size(60, 25);
  217. this.tsbtnEdit.Text = "编辑(&E)";
  218. this.tsbtnEdit.Click += new System.EventHandler(this.tsbtnEdit_Click);
  219. //
  220. // toolStripSeparator1
  221. //
  222. this.toolStripSeparator1.AutoSize = false;
  223. this.toolStripSeparator1.Name = "toolStripSeparator1";
  224. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
  225. //
  226. // tsbtnDisable
  227. //
  228. this.tsbtnDisable.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  229. this.tsbtnDisable.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnDisable.Image")));
  230. this.tsbtnDisable.ImageTransparentColor = System.Drawing.Color.Magenta;
  231. this.tsbtnDisable.Name = "tsbtnDisable";
  232. this.tsbtnDisable.Size = new System.Drawing.Size(51, 32);
  233. this.tsbtnDisable.Text = "停用(&S)";
  234. this.tsbtnDisable.Click += new System.EventHandler(this.tsbtnDisable_Click);
  235. //
  236. // tsbtnStart
  237. //
  238. this.tsbtnStart.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  239. this.tsbtnStart.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnStart.Image")));
  240. this.tsbtnStart.ImageTransparentColor = System.Drawing.Color.Magenta;
  241. this.tsbtnStart.Name = "tsbtnStart";
  242. this.tsbtnStart.Size = new System.Drawing.Size(51, 32);
  243. this.tsbtnStart.Text = "启用(&B)";
  244. this.tsbtnStart.Click += new System.EventHandler(this.tsbtnStart_Click);
  245. //
  246. // tsbtnManager
  247. //
  248. this.tsbtnManager.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  249. this.tsbtnManager.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnManager.Image")));
  250. this.tsbtnManager.ImageTransparentColor = System.Drawing.Color.Magenta;
  251. this.tsbtnManager.Name = "tsbtnManager";
  252. this.tsbtnManager.Size = new System.Drawing.Size(75, 32);
  253. this.tsbtnManager.Text = "模具管理(&M)";
  254. this.tsbtnManager.Click += new System.EventHandler(this.tsbtnManager_Click);
  255. //
  256. // tsbtnQueryRecord
  257. //
  258. this.tsbtnQueryRecord.AutoSize = false;
  259. this.tsbtnQueryRecord.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  260. this.tsbtnQueryRecord.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  261. this.tsbtnQueryRecord.ImageTransparentColor = System.Drawing.Color.Magenta;
  262. this.tsbtnQueryRecord.Name = "tsbtnQueryRecord";
  263. this.tsbtnQueryRecord.Size = new System.Drawing.Size(80, 25);
  264. this.tsbtnQueryRecord.Text = "模具履历(&L)";
  265. this.tsbtnQueryRecord.Click += new System.EventHandler(this.tsbtnQueryRecord_Click);
  266. //
  267. // toolStripSeparator3
  268. //
  269. this.toolStripSeparator3.AutoSize = false;
  270. this.toolStripSeparator3.Name = "toolStripSeparator3";
  271. this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
  272. //
  273. // tsbtnAdaptive
  274. //
  275. this.tsbtnAdaptive.AutoSize = false;
  276. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  277. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  278. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  279. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  280. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  281. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  282. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  283. //
  284. // tsbtnClose
  285. //
  286. this.tsbtnClose.AutoSize = false;
  287. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  288. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  289. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  290. this.tsbtnClose.Name = "tsbtnClose";
  291. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  292. this.tsbtnClose.Text = "关闭(&X)";
  293. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  294. //
  295. // dgvGroutingLine
  296. //
  297. this.dgvGroutingLine.AllowUserToAddRows = false;
  298. this.dgvGroutingLine.AllowUserToDeleteRows = false;
  299. this.dgvGroutingLine.AllowUserToModifyRows = true;
  300. this.dgvGroutingLine.AllowUserToOrderColumns = true;
  301. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  302. this.dgvGroutingLine.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  303. this.dgvGroutingLine.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  304. this.dgvGroutingLine.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  305. this.dgvGroutingLine.CellHeight = 23;
  306. this.dgvGroutingLine.ChildNodeColumnName = null;
  307. this.dgvGroutingLine.ChildNodeColumnText = null;
  308. this.dgvGroutingLine.ColumnDeep = 1;
  309. this.dgvGroutingLine.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  310. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  311. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  312. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  313. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  314. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  315. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  316. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  317. this.dgvGroutingLine.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  318. this.dgvGroutingLine.ColumnHeadersHeight = 29;
  319. this.dgvGroutingLine.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  320. this.dgvGroutingLine.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  321. this.GroutingLineID,
  322. this.GroutingLineCode,
  323. this.GroutingLineName,
  324. this.UserCode,
  325. this.staffCodeList,
  326. this.goosCodeList,
  327. this.goosNameList,
  328. this.workshop,
  329. this.ValueFlag,
  330. this.BuildingNo,
  331. this.FloorNo,
  332. this.GroutingLineNo,
  333. this.MouldQuantity,
  334. this.GMouldTypeName,
  335. this.HIGHPRESSUREFLAG,
  336. this.monitorcode,
  337. this.BeginUsedDate,
  338. this.EndUsedDate,
  339. this.GMOULDSTATUSNAME,
  340. this.valueflag2,
  341. this.TESTFLAGNAME,
  342. this.Remarks,
  343. this.GMouldStatus});
  344. this.dgvGroutingLine.ColumnTreeView = null;
  345. this.dgvGroutingLine.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
  346. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  347. dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window;
  348. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  349. dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText;
  350. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  351. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  352. dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  353. this.dgvGroutingLine.DefaultCellStyle = dataGridViewCellStyle5;
  354. this.dgvGroutingLine.Dock = System.Windows.Forms.DockStyle.Fill;
  355. this.dgvGroutingLine.DynamicColumnName = "";
  356. this.dgvGroutingLine.EnableHeadersVisualStyles = false;
  357. this.dgvGroutingLine.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  358. this.dgvGroutingLine.FormatQuantityColumns = null;
  359. this.dgvGroutingLine.HorizontalMergeColumn = null;
  360. this.dgvGroutingLine.IsAutoCountSum = true;
  361. this.dgvGroutingLine.IsAutoResizeColumns = false;
  362. this.dgvGroutingLine.IsClickF12 = false;
  363. this.dgvGroutingLine.IsOpenMergeCellFlag = false;
  364. this.dgvGroutingLine.IsSubTotalFlag = false;
  365. this.dgvGroutingLine.IsTopDeep = false;
  366. this.dgvGroutingLine.Location = new System.Drawing.Point(0, 0);
  367. this.dgvGroutingLine.MergeColumnNames = null;
  368. this.dgvGroutingLine.MergeDetailColumnNames = null;
  369. this.dgvGroutingLine.MergeDetailOnlyColumn = null;
  370. this.dgvGroutingLine.MergeOnlyColumn = null;
  371. this.dgvGroutingLine.MultiSelect = false;
  372. this.dgvGroutingLine.Name = "dgvGroutingLine";
  373. this.dgvGroutingLine.ReadOnly = true;
  374. this.dgvGroutingLine.RefreshAtHscroll = false;
  375. this.dgvGroutingLine.RowHeadersWidth = 50;
  376. this.dgvGroutingLine.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  377. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  378. this.dgvGroutingLine.RowsDefaultCellStyle = dataGridViewCellStyle6;
  379. this.dgvGroutingLine.RowTemplate.Height = 21;
  380. this.dgvGroutingLine.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  381. this.dgvGroutingLine.ShowEditingIcon = false;
  382. this.dgvGroutingLine.Size = new System.Drawing.Size(1204, 197);
  383. this.dgvGroutingLine.SortOrderColumnName = null;
  384. this.dgvGroutingLine.TabIndex = 0;
  385. this.dgvGroutingLine.Tag = true;
  386. this.dgvGroutingLine.TotalSumColumns = null;
  387. this.dgvGroutingLine.ViewRowFilter = "";
  388. this.dgvGroutingLine.VirtualMode = true;
  389. this.dgvGroutingLine.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvGroutingLine_ColumnHeaderMouseClick);
  390. this.dgvGroutingLine.SelectionChanged += new System.EventHandler(this.dgvGroutingLine_SelectionChanged);
  391. //
  392. // btnClearCondition
  393. //
  394. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  395. this.btnClearCondition.BackColor = System.Drawing.Color.Gray;
  396. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  397. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  398. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  399. this.btnClearCondition.Location = new System.Drawing.Point(1102, 93);
  400. this.btnClearCondition.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  401. this.btnClearCondition.Name = "btnClearCondition";
  402. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  403. this.btnClearCondition.TabIndex = 28;
  404. this.btnClearCondition.Text = "清空条件(&C)";
  405. this.btnClearCondition.UseVisualStyleBackColor = false;
  406. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  407. //
  408. // btnSearch
  409. //
  410. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  411. this.btnSearch.BackColor = System.Drawing.Color.Gray;
  412. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  413. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  414. this.btnSearch.ForeColor = System.Drawing.Color.White;
  415. this.btnSearch.Location = new System.Drawing.Point(1011, 93);
  416. this.btnSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  417. this.btnSearch.Name = "btnSearch";
  418. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  419. this.btnSearch.TabIndex = 27;
  420. this.btnSearch.Text = "查询(&Q)";
  421. this.btnSearch.UseVisualStyleBackColor = false;
  422. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  423. //
  424. // txtEndUsedDateEnd
  425. //
  426. this.txtEndUsedDateEnd.CustomFormat = "yyyy-MM-dd";
  427. this.txtEndUsedDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  428. this.txtEndUsedDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  429. this.txtEndUsedDateEnd.Location = new System.Drawing.Point(803, 47);
  430. this.txtEndUsedDateEnd.Name = "txtEndUsedDateEnd";
  431. this.txtEndUsedDateEnd.Size = new System.Drawing.Size(105, 21);
  432. this.txtEndUsedDateEnd.TabIndex = 18;
  433. //
  434. // c_Label12
  435. //
  436. this.c_Label12.AutoSize = true;
  437. this.c_Label12.BackColor = System.Drawing.Color.Transparent;
  438. this.c_Label12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  439. this.c_Label12.ForeColor = System.Drawing.SystemColors.ControlText;
  440. this.c_Label12.Location = new System.Drawing.Point(780, 50);
  441. this.c_Label12.Name = "c_Label12";
  442. this.c_Label12.Size = new System.Drawing.Size(17, 12);
  443. this.c_Label12.TabIndex = 17;
  444. this.c_Label12.Text = "至";
  445. //
  446. // txtEndUsedDateStart
  447. //
  448. this.txtEndUsedDateStart.CustomFormat = "yyyy-MM-dd";
  449. this.txtEndUsedDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  450. this.txtEndUsedDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  451. this.txtEndUsedDateStart.Location = new System.Drawing.Point(671, 47);
  452. this.txtEndUsedDateStart.Name = "txtEndUsedDateStart";
  453. this.txtEndUsedDateStart.Size = new System.Drawing.Size(103, 21);
  454. this.txtEndUsedDateStart.TabIndex = 16;
  455. //
  456. // cbEndTime
  457. //
  458. this.cbEndTime.AutoSize = true;
  459. this.cbEndTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  460. this.cbEndTime.Location = new System.Drawing.Point(596, 49);
  461. this.cbEndTime.Name = "cbEndTime";
  462. this.cbEndTime.Size = new System.Drawing.Size(72, 16);
  463. this.cbEndTime.TabIndex = 15;
  464. this.cbEndTime.Text = "结束日期";
  465. this.cbEndTime.UseVisualStyleBackColor = true;
  466. this.cbEndTime.CheckedChanged += new System.EventHandler(this.cbEndTime_CheckedChanged);
  467. //
  468. // txtRemarks
  469. //
  470. this.txtRemarks.BackColor = System.Drawing.SystemColors.Window;
  471. this.txtRemarks.BackgroundColor = System.Drawing.SystemColors.Window;
  472. this.txtRemarks.ErrorMessage = "";
  473. this.txtRemarks.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  474. this.txtRemarks.Location = new System.Drawing.Point(77, 74);
  475. this.txtRemarks.MaxLength = 500;
  476. this.txtRemarks.Name = "txtRemarks";
  477. this.txtRemarks.Size = new System.Drawing.Size(317, 21);
  478. this.txtRemarks.TabIndex = 20;
  479. //
  480. // lblRemarks
  481. //
  482. this.lblRemarks.AutoSize = true;
  483. this.lblRemarks.BackColor = System.Drawing.Color.Transparent;
  484. this.lblRemarks.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  485. this.lblRemarks.ForeColor = System.Drawing.SystemColors.ControlText;
  486. this.lblRemarks.Location = new System.Drawing.Point(42, 75);
  487. this.lblRemarks.Name = "lblRemarks";
  488. this.lblRemarks.Size = new System.Drawing.Size(29, 12);
  489. this.lblRemarks.TabIndex = 19;
  490. this.lblRemarks.Text = "备注";
  491. //
  492. // txtBeginUsedDateEnd
  493. //
  494. this.txtBeginUsedDateEnd.CustomFormat = "yyyy-MM-dd";
  495. this.txtBeginUsedDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  496. this.txtBeginUsedDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  497. this.txtBeginUsedDateEnd.Location = new System.Drawing.Point(803, 20);
  498. this.txtBeginUsedDateEnd.Name = "txtBeginUsedDateEnd";
  499. this.txtBeginUsedDateEnd.Size = new System.Drawing.Size(105, 21);
  500. this.txtBeginUsedDateEnd.TabIndex = 9;
  501. //
  502. // c_Label11
  503. //
  504. this.c_Label11.AutoSize = true;
  505. this.c_Label11.BackColor = System.Drawing.Color.Transparent;
  506. this.c_Label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  507. this.c_Label11.ForeColor = System.Drawing.SystemColors.ControlText;
  508. this.c_Label11.Location = new System.Drawing.Point(780, 24);
  509. this.c_Label11.Name = "c_Label11";
  510. this.c_Label11.Size = new System.Drawing.Size(17, 12);
  511. this.c_Label11.TabIndex = 8;
  512. this.c_Label11.Text = "至";
  513. //
  514. // txtBeginUsedDateStart
  515. //
  516. this.txtBeginUsedDateStart.CustomFormat = "yyyy-MM-dd";
  517. this.txtBeginUsedDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  518. this.txtBeginUsedDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  519. this.txtBeginUsedDateStart.Location = new System.Drawing.Point(671, 20);
  520. this.txtBeginUsedDateStart.Name = "txtBeginUsedDateStart";
  521. this.txtBeginUsedDateStart.Size = new System.Drawing.Size(103, 21);
  522. this.txtBeginUsedDateStart.TabIndex = 7;
  523. //
  524. // cbStartTime
  525. //
  526. this.cbStartTime.AutoSize = true;
  527. this.cbStartTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  528. this.cbStartTime.Location = new System.Drawing.Point(596, 22);
  529. this.cbStartTime.Name = "cbStartTime";
  530. this.cbStartTime.Size = new System.Drawing.Size(72, 16);
  531. this.cbStartTime.TabIndex = 6;
  532. this.cbStartTime.Text = "开始日期";
  533. this.cbStartTime.UseVisualStyleBackColor = true;
  534. this.cbStartTime.CheckedChanged += new System.EventHandler(this.cbStartTime_CheckedChanged);
  535. //
  536. // txtGroutingLineName
  537. //
  538. this.txtGroutingLineName.BackColor = System.Drawing.SystemColors.Window;
  539. this.txtGroutingLineName.BackgroundColor = System.Drawing.SystemColors.Window;
  540. this.txtGroutingLineName.ErrorMessage = "";
  541. this.txtGroutingLineName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  542. this.txtGroutingLineName.Location = new System.Drawing.Point(274, 47);
  543. this.txtGroutingLineName.MaxLength = 50;
  544. this.txtGroutingLineName.Name = "txtGroutingLineName";
  545. this.txtGroutingLineName.Size = new System.Drawing.Size(120, 21);
  546. this.txtGroutingLineName.TabIndex = 13;
  547. //
  548. // lblGroutingLineName
  549. //
  550. this.lblGroutingLineName.AutoSize = true;
  551. this.lblGroutingLineName.BackColor = System.Drawing.Color.Transparent;
  552. this.lblGroutingLineName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  553. this.lblGroutingLineName.ForeColor = System.Drawing.SystemColors.ControlText;
  554. this.lblGroutingLineName.Location = new System.Drawing.Point(203, 50);
  555. this.lblGroutingLineName.Name = "lblGroutingLineName";
  556. this.lblGroutingLineName.Size = new System.Drawing.Size(65, 12);
  557. this.lblGroutingLineName.TabIndex = 12;
  558. this.lblGroutingLineName.Text = "成型线名称";
  559. //
  560. // txtGroutingLineCode
  561. //
  562. this.txtGroutingLineCode.BackColor = System.Drawing.SystemColors.Window;
  563. this.txtGroutingLineCode.BackgroundColor = System.Drawing.SystemColors.Window;
  564. this.txtGroutingLineCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  565. this.txtGroutingLineCode.ErrorMessage = "";
  566. this.txtGroutingLineCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  567. this.txtGroutingLineCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  568. this.txtGroutingLineCode.Location = new System.Drawing.Point(77, 47);
  569. this.txtGroutingLineCode.MaxLength = 30;
  570. this.txtGroutingLineCode.Name = "txtGroutingLineCode";
  571. this.txtGroutingLineCode.Size = new System.Drawing.Size(120, 21);
  572. this.txtGroutingLineCode.TabIndex = 11;
  573. this.txtGroutingLineCode.TextValue = "";
  574. //
  575. // lblGroutingLineCode
  576. //
  577. this.lblGroutingLineCode.AutoSize = true;
  578. this.lblGroutingLineCode.BackColor = System.Drawing.Color.Transparent;
  579. this.lblGroutingLineCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  580. this.lblGroutingLineCode.ForeColor = System.Drawing.SystemColors.ControlText;
  581. this.lblGroutingLineCode.Location = new System.Drawing.Point(6, 50);
  582. this.lblGroutingLineCode.Name = "lblGroutingLineCode";
  583. this.lblGroutingLineCode.Size = new System.Drawing.Size(65, 12);
  584. this.lblGroutingLineCode.TabIndex = 10;
  585. this.lblGroutingLineCode.Text = "成型线编码";
  586. //
  587. // lblGMouldStatus
  588. //
  589. this.lblGMouldStatus.AutoSize = true;
  590. this.lblGMouldStatus.BackColor = System.Drawing.Color.Transparent;
  591. this.lblGMouldStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  592. this.lblGMouldStatus.ForeColor = System.Drawing.SystemColors.ControlText;
  593. this.lblGMouldStatus.Location = new System.Drawing.Point(400, 78);
  594. this.lblGMouldStatus.Name = "lblGMouldStatus";
  595. this.lblGMouldStatus.Size = new System.Drawing.Size(65, 12);
  596. this.lblGMouldStatus.TabIndex = 21;
  597. this.lblGMouldStatus.Text = "成型线状态";
  598. //
  599. // txtGroutingLineNo
  600. //
  601. this.txtGroutingLineNo.BackColor = System.Drawing.SystemColors.Window;
  602. this.txtGroutingLineNo.BackgroundColor = System.Drawing.SystemColors.Window;
  603. this.txtGroutingLineNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  604. this.txtGroutingLineNo.ErrorMessage = "";
  605. this.txtGroutingLineNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  606. this.txtGroutingLineNo.Location = new System.Drawing.Point(471, 20);
  607. this.txtGroutingLineNo.MaxLength = 10;
  608. this.txtGroutingLineNo.Name = "txtGroutingLineNo";
  609. this.txtGroutingLineNo.Size = new System.Drawing.Size(120, 21);
  610. this.txtGroutingLineNo.TabIndex = 5;
  611. //
  612. // lblGroutingLineNo
  613. //
  614. this.lblGroutingLineNo.AutoSize = true;
  615. this.lblGroutingLineNo.BackColor = System.Drawing.Color.Transparent;
  616. this.lblGroutingLineNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  617. this.lblGroutingLineNo.ForeColor = System.Drawing.SystemColors.ControlText;
  618. this.lblGroutingLineNo.Location = new System.Drawing.Point(436, 23);
  619. this.lblGroutingLineNo.Name = "lblGroutingLineNo";
  620. this.lblGroutingLineNo.Size = new System.Drawing.Size(29, 12);
  621. this.lblGroutingLineNo.TabIndex = 4;
  622. this.lblGroutingLineNo.Text = "工段";
  623. //
  624. // lblFloorNo
  625. //
  626. this.lblFloorNo.AutoSize = true;
  627. this.lblFloorNo.BackColor = System.Drawing.Color.Transparent;
  628. this.lblFloorNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  629. this.lblFloorNo.ForeColor = System.Drawing.SystemColors.ControlText;
  630. this.lblFloorNo.Location = new System.Drawing.Point(239, 23);
  631. this.lblFloorNo.Name = "lblFloorNo";
  632. this.lblFloorNo.Size = new System.Drawing.Size(29, 12);
  633. this.lblFloorNo.TabIndex = 2;
  634. this.lblFloorNo.Text = "楼层";
  635. //
  636. // txtBuildingNo
  637. //
  638. this.txtBuildingNo.BackColor = System.Drawing.SystemColors.Window;
  639. this.txtBuildingNo.BackgroundColor = System.Drawing.SystemColors.Window;
  640. this.txtBuildingNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  641. this.txtBuildingNo.ErrorMessage = "";
  642. this.txtBuildingNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  643. this.txtBuildingNo.Location = new System.Drawing.Point(77, 20);
  644. this.txtBuildingNo.MaxLength = 10;
  645. this.txtBuildingNo.Name = "txtBuildingNo";
  646. this.txtBuildingNo.Size = new System.Drawing.Size(120, 21);
  647. this.txtBuildingNo.TabIndex = 1;
  648. //
  649. // lblBuildingNo
  650. //
  651. this.lblBuildingNo.AutoSize = true;
  652. this.lblBuildingNo.BackColor = System.Drawing.Color.Transparent;
  653. this.lblBuildingNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  654. this.lblBuildingNo.ForeColor = System.Drawing.SystemColors.ControlText;
  655. this.lblBuildingNo.Location = new System.Drawing.Point(42, 23);
  656. this.lblBuildingNo.Name = "lblBuildingNo";
  657. this.lblBuildingNo.Size = new System.Drawing.Size(29, 12);
  658. this.lblBuildingNo.TabIndex = 0;
  659. this.lblBuildingNo.Text = "楼号";
  660. //
  661. // gbxCondition
  662. //
  663. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  664. | System.Windows.Forms.AnchorStyles.Right)));
  665. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  666. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  667. this.gbxCondition.Controls.Add(this.cbWorkShop);
  668. this.gbxCondition.Controls.Add(this.lblWorkShop);
  669. this.gbxCondition.Controls.Add(this.scbGoods);
  670. this.gbxCondition.Controls.Add(this.lblGoods);
  671. this.gbxCondition.Controls.Add(this.goodscodeText);
  672. this.gbxCondition.Controls.Add(this.c_Label1);
  673. this.gbxCondition.Controls.Add(this.TestFlag);
  674. this.gbxCondition.Controls.Add(this.btnSearch);
  675. this.gbxCondition.Controls.Add(this.lblGMouldType);
  676. this.gbxCondition.Controls.Add(this.scbGMouldType);
  677. this.gbxCondition.Controls.Add(this.chkDisable);
  678. this.gbxCondition.Controls.Add(this.chkEnable);
  679. this.gbxCondition.Controls.Add(this.lstcbxGMouldStatus);
  680. this.gbxCondition.Controls.Add(this.txtFloorNo);
  681. this.gbxCondition.Controls.Add(this.lblBuildingNo);
  682. this.gbxCondition.Controls.Add(this.lblGroutingLineCode);
  683. this.gbxCondition.Controls.Add(this.btnClearCondition);
  684. this.gbxCondition.Controls.Add(this.txtBuildingNo);
  685. this.gbxCondition.Controls.Add(this.txtGroutingUserCode);
  686. this.gbxCondition.Controls.Add(this.txtGroutingLineCode);
  687. this.gbxCondition.Controls.Add(this.txtEndUsedDateEnd);
  688. this.gbxCondition.Controls.Add(this.c_Label12);
  689. this.gbxCondition.Controls.Add(this.txtEndUsedDateStart);
  690. this.gbxCondition.Controls.Add(this.lblFloorNo);
  691. this.gbxCondition.Controls.Add(this.cbEndTime);
  692. this.gbxCondition.Controls.Add(this.lblGroutingUserCode);
  693. this.gbxCondition.Controls.Add(this.lblGroutingLineNo);
  694. this.gbxCondition.Controls.Add(this.txtGroutingLineNo);
  695. this.gbxCondition.Controls.Add(this.txtBeginUsedDateEnd);
  696. this.gbxCondition.Controls.Add(this.txtRemarks);
  697. this.gbxCondition.Controls.Add(this.c_Label11);
  698. this.gbxCondition.Controls.Add(this.lblRemarks);
  699. this.gbxCondition.Controls.Add(this.txtBeginUsedDateStart);
  700. this.gbxCondition.Controls.Add(this.lblGMouldStatus);
  701. this.gbxCondition.Controls.Add(this.cbStartTime);
  702. this.gbxCondition.Controls.Add(this.lblGroutingLineName);
  703. this.gbxCondition.Controls.Add(this.txtGroutingLineName);
  704. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  705. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  706. this.gbxCondition.IsMustInput = false;
  707. this.gbxCondition.Location = new System.Drawing.Point(0, 38);
  708. this.gbxCondition.Name = "gbxCondition";
  709. this.gbxCondition.OriginalHeight = -1;
  710. this.gbxCondition.Size = new System.Drawing.Size(1204, 130);
  711. this.gbxCondition.TabIndex = 1;
  712. this.gbxCondition.TabStop = false;
  713. this.gbxCondition.Text = "查询条件 ▼";
  714. //
  715. // cbWorkShop
  716. //
  717. this.cbWorkShop.BackColor = System.Drawing.SystemColors.Window;
  718. this.cbWorkShop.BackgroundColor = System.Drawing.SystemColors.Window;
  719. this.cbWorkShop.DataSource = null;
  720. this.cbWorkShop.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  721. this.cbWorkShop.FormattingEnabled = true;
  722. //
  723. //
  724. //
  725. this.cbWorkShop.ListBox.Dock = System.Windows.Forms.DockStyle.Fill;
  726. this.cbWorkShop.ListBox.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  727. this.cbWorkShop.ListBox.Location = new System.Drawing.Point(0, 0);
  728. this.cbWorkShop.ListBox.Name = "";
  729. this.cbWorkShop.ListBox.Size = new System.Drawing.Size(118, 136);
  730. this.cbWorkShop.ListBox.TabIndex = 0;
  731. this.cbWorkShop.Location = new System.Drawing.Point(472, 101);
  732. this.cbWorkShop.Name = "cbWorkShop";
  733. this.cbWorkShop.Size = new System.Drawing.Size(120, 20);
  734. this.cbWorkShop.TabIndex = 119;
  735. //
  736. // lblWorkShop
  737. //
  738. this.lblWorkShop.AutoSize = true;
  739. this.lblWorkShop.BackColor = System.Drawing.Color.Transparent;
  740. this.lblWorkShop.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  741. this.lblWorkShop.ForeColor = System.Drawing.SystemColors.ControlText;
  742. this.lblWorkShop.Location = new System.Drawing.Point(432, 104);
  743. this.lblWorkShop.Name = "lblWorkShop";
  744. this.lblWorkShop.Size = new System.Drawing.Size(29, 12);
  745. this.lblWorkShop.TabIndex = 118;
  746. this.lblWorkShop.Text = "车间";
  747. //
  748. // scbGoods
  749. //
  750. this.scbGoods.CheckedData = null;
  751. this.scbGoods.Location = new System.Drawing.Point(274, 101);
  752. this.scbGoods.MultiSelect = true;
  753. this.scbGoods.Name = "scbGoods";
  754. this.scbGoods.Size = new System.Drawing.Size(120, 21);
  755. this.scbGoods.TabIndex = 59;
  756. //
  757. // lblGoods
  758. //
  759. this.lblGoods.AutoSize = true;
  760. this.lblGoods.BackColor = System.Drawing.Color.Transparent;
  761. this.lblGoods.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  762. this.lblGoods.ForeColor = System.Drawing.SystemColors.ControlText;
  763. this.lblGoods.Location = new System.Drawing.Point(215, 104);
  764. this.lblGoods.Name = "lblGoods";
  765. this.lblGoods.Size = new System.Drawing.Size(53, 12);
  766. this.lblGoods.TabIndex = 58;
  767. this.lblGoods.Text = "产品名称";
  768. //
  769. // goodscodeText
  770. //
  771. this.goodscodeText.BackColor = System.Drawing.SystemColors.Window;
  772. this.goodscodeText.BackgroundColor = System.Drawing.SystemColors.Window;
  773. this.goodscodeText.ErrorMessage = "";
  774. this.goodscodeText.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  775. this.goodscodeText.Location = new System.Drawing.Point(77, 101);
  776. this.goodscodeText.MaxLength = 15;
  777. this.goodscodeText.Name = "goodscodeText";
  778. this.goodscodeText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  779. this.goodscodeText.Size = new System.Drawing.Size(120, 21);
  780. this.goodscodeText.TabIndex = 57;
  781. //
  782. // c_Label1
  783. //
  784. this.c_Label1.AutoSize = true;
  785. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  786. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  787. this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  788. this.c_Label1.Location = new System.Drawing.Point(16, 104);
  789. this.c_Label1.Name = "c_Label1";
  790. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  791. this.c_Label1.TabIndex = 56;
  792. this.c_Label1.Text = "产品编码";
  793. //
  794. // TestFlag
  795. //
  796. this.TestFlag.BackColor = System.Drawing.SystemColors.Window;
  797. this.TestFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TestFlag.BackgroundImage")));
  798. this.TestFlag.CheckedListBoxMinSize = new System.Drawing.Size(0, 0);
  799. this.TestFlag.DataSource = null;
  800. this.TestFlag.DisplayMember = "TestFlagName";
  801. this.TestFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  802. this.TestFlag.LablePositionValue = Dongke.IBOSS.PRD.Basics.BaseControls.CheckedBoxListEx.LablePosition.Left;
  803. this.TestFlag.Location = new System.Drawing.Point(914, 19);
  804. this.TestFlag.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  805. this.TestFlag.Name = "TestFlag";
  806. this.TestFlag.SelectedIndex = -1;
  807. this.TestFlag.SelectedValues = new object[0];
  808. this.TestFlag.Size = new System.Drawing.Size(196, 46);
  809. this.TestFlag.TabIndex = 31;
  810. this.TestFlag.Title = "成型线类别";
  811. this.TestFlag.TitleAlign = System.Drawing.ContentAlignment.TopLeft;
  812. this.TestFlag.ValueMember = "TestFlag";
  813. //
  814. // lblGMouldType
  815. //
  816. this.lblGMouldType.AutoSize = true;
  817. this.lblGMouldType.BackColor = System.Drawing.Color.Transparent;
  818. this.lblGMouldType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  819. this.lblGMouldType.ForeColor = System.Drawing.SystemColors.ControlText;
  820. this.lblGMouldType.Location = new System.Drawing.Point(400, 50);
  821. this.lblGMouldType.Name = "lblGMouldType";
  822. this.lblGMouldType.Size = new System.Drawing.Size(65, 12);
  823. this.lblGMouldType.TabIndex = 30;
  824. this.lblGMouldType.Text = "成型线类型";
  825. //
  826. // scbGMouldType
  827. //
  828. this.scbGMouldType.CheckedData = null;
  829. this.scbGMouldType.Location = new System.Drawing.Point(471, 47);
  830. this.scbGMouldType.Name = "scbGMouldType";
  831. this.scbGMouldType.Size = new System.Drawing.Size(121, 21);
  832. this.scbGMouldType.TabIndex = 29;
  833. //
  834. // chkDisable
  835. //
  836. this.chkDisable.AutoSize = true;
  837. this.chkDisable.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  838. this.chkDisable.Location = new System.Drawing.Point(860, 76);
  839. this.chkDisable.Name = "chkDisable";
  840. this.chkDisable.Size = new System.Drawing.Size(48, 16);
  841. this.chkDisable.TabIndex = 26;
  842. this.chkDisable.Text = "无效";
  843. this.chkDisable.UseVisualStyleBackColor = true;
  844. //
  845. // chkEnable
  846. //
  847. this.chkEnable.AutoSize = true;
  848. this.chkEnable.Checked = true;
  849. this.chkEnable.CheckState = System.Windows.Forms.CheckState.Checked;
  850. this.chkEnable.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  851. this.chkEnable.Location = new System.Drawing.Point(803, 76);
  852. this.chkEnable.Name = "chkEnable";
  853. this.chkEnable.Size = new System.Drawing.Size(48, 16);
  854. this.chkEnable.TabIndex = 25;
  855. this.chkEnable.Text = "有效";
  856. this.chkEnable.UseVisualStyleBackColor = true;
  857. //
  858. // lstcbxGMouldStatus
  859. //
  860. this.lstcbxGMouldStatus.BackColor = System.Drawing.SystemColors.Window;
  861. this.lstcbxGMouldStatus.BackgroundColor = System.Drawing.SystemColors.Window;
  862. this.lstcbxGMouldStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  863. this.lstcbxGMouldStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  864. this.lstcbxGMouldStatus.FormattingEnabled = true;
  865. this.lstcbxGMouldStatus.Location = new System.Drawing.Point(471, 74);
  866. this.lstcbxGMouldStatus.Name = "lstcbxGMouldStatus";
  867. this.lstcbxGMouldStatus.Size = new System.Drawing.Size(121, 20);
  868. this.lstcbxGMouldStatus.TabIndex = 22;
  869. //
  870. // txtFloorNo
  871. //
  872. this.txtFloorNo.BackColor = System.Drawing.SystemColors.Window;
  873. this.txtFloorNo.BackgroundColor = System.Drawing.SystemColors.Window;
  874. this.txtFloorNo.EditingControlFormattedValue = "";
  875. this.txtFloorNo.ErrorMessage = "";
  876. this.txtFloorNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  877. this.txtFloorNo.ImeMode = System.Windows.Forms.ImeMode.Off;
  878. this.txtFloorNo.Location = new System.Drawing.Point(274, 21);
  879. this.txtFloorNo.MaxValue = new decimal(new int[] {
  880. 99,
  881. 0,
  882. 0,
  883. 0});
  884. this.txtFloorNo.MinValue = new decimal(new int[] {
  885. 1,
  886. 0,
  887. 0,
  888. 0});
  889. this.txtFloorNo.Name = "txtFloorNo";
  890. this.txtFloorNo.Number = new System.Drawing.Point(2, 0);
  891. this.txtFloorNo.ShowDecimal = false;
  892. this.txtFloorNo.Size = new System.Drawing.Size(120, 21);
  893. this.txtFloorNo.TabIndex = 3;
  894. this.txtFloorNo.TextValue = "";
  895. //
  896. // txtGroutingUserCode
  897. //
  898. this.txtGroutingUserCode.BackColor = System.Drawing.SystemColors.Window;
  899. this.txtGroutingUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  900. this.txtGroutingUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  901. this.txtGroutingUserCode.ErrorMessage = "";
  902. this.txtGroutingUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  903. this.txtGroutingUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  904. this.txtGroutingUserCode.Location = new System.Drawing.Point(657, 74);
  905. this.txtGroutingUserCode.MaxLength = 20;
  906. this.txtGroutingUserCode.Name = "txtGroutingUserCode";
  907. this.txtGroutingUserCode.Size = new System.Drawing.Size(120, 21);
  908. this.txtGroutingUserCode.TabIndex = 24;
  909. this.txtGroutingUserCode.TextValue = "";
  910. //
  911. // lblGroutingUserCode
  912. //
  913. this.lblGroutingUserCode.AutoSize = true;
  914. this.lblGroutingUserCode.BackColor = System.Drawing.Color.Transparent;
  915. this.lblGroutingUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  916. this.lblGroutingUserCode.ForeColor = System.Drawing.SystemColors.ControlText;
  917. this.lblGroutingUserCode.Location = new System.Drawing.Point(598, 78);
  918. this.lblGroutingUserCode.Name = "lblGroutingUserCode";
  919. this.lblGroutingUserCode.Size = new System.Drawing.Size(53, 12);
  920. this.lblGroutingUserCode.TabIndex = 23;
  921. this.lblGroutingUserCode.Text = "成型工号";
  922. //
  923. // dgvGroutingLineDetail
  924. //
  925. this.dgvGroutingLineDetail.AllowUserToAddRows = false;
  926. this.dgvGroutingLineDetail.AllowUserToDeleteRows = false;
  927. this.dgvGroutingLineDetail.AllowUserToModifyRows = true;
  928. this.dgvGroutingLineDetail.AllowUserToOrderColumns = true;
  929. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  930. this.dgvGroutingLineDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle7;
  931. this.dgvGroutingLineDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  932. this.dgvGroutingLineDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  933. this.dgvGroutingLineDetail.CellHeight = 23;
  934. this.dgvGroutingLineDetail.ChildNodeColumnName = null;
  935. this.dgvGroutingLineDetail.ChildNodeColumnText = null;
  936. this.dgvGroutingLineDetail.ColumnDeep = 1;
  937. this.dgvGroutingLineDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  938. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  939. dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  940. dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  941. dataGridViewCellStyle8.ForeColor = System.Drawing.Color.White;
  942. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  943. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  944. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  945. this.dgvGroutingLineDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
  946. this.dgvGroutingLineDetail.ColumnHeadersHeight = 29;
  947. this.dgvGroutingLineDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  948. this.dgvGroutingLineDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  949. this.GroutingLineDetailID,
  950. this.GroutingLineIDM,
  951. this.GroutingMouldCode,
  952. this.MouldBarcode,
  953. this.MouldID,
  954. this.MouldCode,
  955. this.GoodsID,
  956. this.GOODSCODE,
  957. this.GoodsName,
  958. this.GoodsSpecification,
  959. this.StandardGroutingCount,
  960. this.GroutingCount,
  961. this.GMouldStatusM,
  962. this.TESTMOULDFLAG,
  963. this.BeginUsedDateM,
  964. this.EndUsedDate2,
  965. this.Remarks1,
  966. this.RecordRemarks});
  967. this.dgvGroutingLineDetail.ColumnTreeView = null;
  968. this.dgvGroutingLineDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
  969. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  970. dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
  971. dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  972. dataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.ControlText;
  973. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  974. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  975. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  976. this.dgvGroutingLineDetail.DefaultCellStyle = dataGridViewCellStyle13;
  977. this.dgvGroutingLineDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  978. this.dgvGroutingLineDetail.DynamicColumnName = "";
  979. this.dgvGroutingLineDetail.EnableHeadersVisualStyles = false;
  980. this.dgvGroutingLineDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  981. this.dgvGroutingLineDetail.FormatQuantityColumns = null;
  982. this.dgvGroutingLineDetail.HorizontalMergeColumn = null;
  983. this.dgvGroutingLineDetail.IsAutoCountSum = true;
  984. this.dgvGroutingLineDetail.IsAutoResizeColumns = false;
  985. this.dgvGroutingLineDetail.IsClickF12 = false;
  986. this.dgvGroutingLineDetail.IsOpenMergeCellFlag = false;
  987. this.dgvGroutingLineDetail.IsSubTotalFlag = false;
  988. this.dgvGroutingLineDetail.IsTopDeep = false;
  989. this.dgvGroutingLineDetail.Location = new System.Drawing.Point(0, 0);
  990. this.dgvGroutingLineDetail.MergeColumnNames = null;
  991. this.dgvGroutingLineDetail.MergeDetailColumnNames = null;
  992. this.dgvGroutingLineDetail.MergeDetailOnlyColumn = null;
  993. this.dgvGroutingLineDetail.MergeOnlyColumn = null;
  994. this.dgvGroutingLineDetail.MultiSelect = false;
  995. this.dgvGroutingLineDetail.Name = "dgvGroutingLineDetail";
  996. this.dgvGroutingLineDetail.ReadOnly = true;
  997. this.dgvGroutingLineDetail.RefreshAtHscroll = false;
  998. this.dgvGroutingLineDetail.RowHeadersWidth = 50;
  999. this.dgvGroutingLineDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1000. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1001. this.dgvGroutingLineDetail.RowsDefaultCellStyle = dataGridViewCellStyle14;
  1002. this.dgvGroutingLineDetail.RowTemplate.Height = 21;
  1003. this.dgvGroutingLineDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1004. this.dgvGroutingLineDetail.Size = new System.Drawing.Size(1204, 181);
  1005. this.dgvGroutingLineDetail.SortOrderColumnName = null;
  1006. this.dgvGroutingLineDetail.TabIndex = 0;
  1007. this.dgvGroutingLineDetail.Tag = true;
  1008. this.dgvGroutingLineDetail.TotalSumColumns = null;
  1009. this.dgvGroutingLineDetail.ViewRowFilter = "";
  1010. this.dgvGroutingLineDetail.VirtualMode = true;
  1011. //
  1012. // GroutingLineDetailID
  1013. //
  1014. this.GroutingLineDetailID.DataPropertyName = "GroutingLineDetailID";
  1015. this.GroutingLineDetailID.HeaderText = "成型生产线明细ID";
  1016. this.GroutingLineDetailID.MinimumWidth = 6;
  1017. this.GroutingLineDetailID.Name = "GroutingLineDetailID";
  1018. this.GroutingLineDetailID.ReadOnly = true;
  1019. this.GroutingLineDetailID.Visible = false;
  1020. this.GroutingLineDetailID.Width = 125;
  1021. //
  1022. // GroutingLineIDM
  1023. //
  1024. this.GroutingLineIDM.DataPropertyName = "GroutingLineID";
  1025. this.GroutingLineIDM.HeaderText = "成型生产线ID";
  1026. this.GroutingLineIDM.MinimumWidth = 6;
  1027. this.GroutingLineIDM.Name = "GroutingLineIDM";
  1028. this.GroutingLineIDM.ReadOnly = true;
  1029. this.GroutingLineIDM.Visible = false;
  1030. this.GroutingLineIDM.Width = 125;
  1031. //
  1032. // GroutingMouldCode
  1033. //
  1034. this.GroutingMouldCode.DataPropertyName = "GroutingMouldCode";
  1035. this.GroutingMouldCode.HeaderText = "模具编号";
  1036. this.GroutingMouldCode.MinimumWidth = 6;
  1037. this.GroutingMouldCode.Name = "GroutingMouldCode";
  1038. this.GroutingMouldCode.ReadOnly = true;
  1039. this.GroutingMouldCode.Width = 120;
  1040. //
  1041. // MouldBarcode
  1042. //
  1043. this.MouldBarcode.DataPropertyName = "MouldBarcode";
  1044. this.MouldBarcode.HeaderText = "模具条码";
  1045. this.MouldBarcode.MinimumWidth = 6;
  1046. this.MouldBarcode.Name = "MouldBarcode";
  1047. this.MouldBarcode.ReadOnly = true;
  1048. this.MouldBarcode.Width = 125;
  1049. //
  1050. // MouldID
  1051. //
  1052. this.MouldID.DataPropertyName = "MouldID";
  1053. this.MouldID.HeaderText = "MouldID";
  1054. this.MouldID.MinimumWidth = 6;
  1055. this.MouldID.Name = "MouldID";
  1056. this.MouldID.ReadOnly = true;
  1057. this.MouldID.Visible = false;
  1058. this.MouldID.Width = 125;
  1059. //
  1060. // MouldCode
  1061. //
  1062. this.MouldCode.DataPropertyName = "MouldCode";
  1063. this.MouldCode.HeaderText = "MouldCode";
  1064. this.MouldCode.MinimumWidth = 6;
  1065. this.MouldCode.Name = "MouldCode";
  1066. this.MouldCode.ReadOnly = true;
  1067. this.MouldCode.Visible = false;
  1068. this.MouldCode.Width = 125;
  1069. //
  1070. // GoodsID
  1071. //
  1072. this.GoodsID.DataPropertyName = "GoodsID";
  1073. this.GoodsID.HeaderText = "产品ID";
  1074. this.GoodsID.MinimumWidth = 6;
  1075. this.GoodsID.Name = "GoodsID";
  1076. this.GoodsID.ReadOnly = true;
  1077. this.GoodsID.Visible = false;
  1078. this.GoodsID.Width = 125;
  1079. //
  1080. // GOODSCODE
  1081. //
  1082. this.GOODSCODE.DataPropertyName = "GOODSCODE";
  1083. this.GOODSCODE.HeaderText = "产品编码";
  1084. this.GOODSCODE.MinimumWidth = 6;
  1085. this.GOODSCODE.Name = "GOODSCODE";
  1086. this.GOODSCODE.ReadOnly = true;
  1087. this.GOODSCODE.Width = 125;
  1088. //
  1089. // GoodsName
  1090. //
  1091. this.GoodsName.DataPropertyName = "GoodsName";
  1092. this.GoodsName.HeaderText = "产品名称";
  1093. this.GoodsName.MinimumWidth = 6;
  1094. this.GoodsName.Name = "GoodsName";
  1095. this.GoodsName.ReadOnly = true;
  1096. this.GoodsName.Width = 125;
  1097. //
  1098. // GoodsSpecification
  1099. //
  1100. this.GoodsSpecification.DataPropertyName = "GoodsSpecification";
  1101. this.GoodsSpecification.HeaderText = "产品规格";
  1102. this.GoodsSpecification.MinimumWidth = 6;
  1103. this.GoodsSpecification.Name = "GoodsSpecification";
  1104. this.GoodsSpecification.ReadOnly = true;
  1105. this.GoodsSpecification.Width = 125;
  1106. //
  1107. // StandardGroutingCount
  1108. //
  1109. this.StandardGroutingCount.DataPropertyName = "StandardGroutingCount";
  1110. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1111. this.StandardGroutingCount.DefaultCellStyle = dataGridViewCellStyle9;
  1112. this.StandardGroutingCount.HeaderText = "标准注浆次数";
  1113. this.StandardGroutingCount.MinimumWidth = 6;
  1114. this.StandardGroutingCount.Name = "StandardGroutingCount";
  1115. this.StandardGroutingCount.ReadOnly = true;
  1116. this.StandardGroutingCount.Width = 125;
  1117. //
  1118. // GroutingCount
  1119. //
  1120. this.GroutingCount.DataPropertyName = "GroutingCount";
  1121. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1122. this.GroutingCount.DefaultCellStyle = dataGridViewCellStyle10;
  1123. this.GroutingCount.HeaderText = "注浆次数";
  1124. this.GroutingCount.MinimumWidth = 6;
  1125. this.GroutingCount.Name = "GroutingCount";
  1126. this.GroutingCount.ReadOnly = true;
  1127. this.GroutingCount.Width = 125;
  1128. //
  1129. // GMouldStatusM
  1130. //
  1131. this.GMouldStatusM.DataPropertyName = "GMOULDSTATUSNAME";
  1132. this.GMouldStatusM.HeaderText = "模具状态";
  1133. this.GMouldStatusM.MinimumWidth = 6;
  1134. this.GMouldStatusM.Name = "GMouldStatusM";
  1135. this.GMouldStatusM.ReadOnly = true;
  1136. this.GMouldStatusM.Width = 120;
  1137. //
  1138. // TESTMOULDFLAG
  1139. //
  1140. this.TESTMOULDFLAG.DataPropertyName = "TESTMOULDFLAG";
  1141. this.TESTMOULDFLAG.FalseValue = "0";
  1142. this.TESTMOULDFLAG.HeaderText = "试验标识";
  1143. this.TESTMOULDFLAG.IndeterminateValue = "0";
  1144. this.TESTMOULDFLAG.MinimumWidth = 6;
  1145. this.TESTMOULDFLAG.Name = "TESTMOULDFLAG";
  1146. this.TESTMOULDFLAG.ReadOnly = true;
  1147. this.TESTMOULDFLAG.TrueValue = "1";
  1148. this.TESTMOULDFLAG.Width = 125;
  1149. //
  1150. // BeginUsedDateM
  1151. //
  1152. this.BeginUsedDateM.DataPropertyName = "BeginUsedDate";
  1153. dataGridViewCellStyle11.Format = "yyyy-MM-dd";
  1154. dataGridViewCellStyle11.NullValue = null;
  1155. this.BeginUsedDateM.DefaultCellStyle = dataGridViewCellStyle11;
  1156. this.BeginUsedDateM.HeaderText = "开始使用日期";
  1157. this.BeginUsedDateM.MinimumWidth = 6;
  1158. this.BeginUsedDateM.Name = "BeginUsedDateM";
  1159. this.BeginUsedDateM.ReadOnly = true;
  1160. this.BeginUsedDateM.Width = 120;
  1161. //
  1162. // EndUsedDate2
  1163. //
  1164. this.EndUsedDate2.DataPropertyName = "EndUsedDate";
  1165. dataGridViewCellStyle12.Format = "yyyy-MM-dd";
  1166. this.EndUsedDate2.DefaultCellStyle = dataGridViewCellStyle12;
  1167. this.EndUsedDate2.HeaderText = "结束使用日期";
  1168. this.EndUsedDate2.MinimumWidth = 6;
  1169. this.EndUsedDate2.Name = "EndUsedDate2";
  1170. this.EndUsedDate2.ReadOnly = true;
  1171. this.EndUsedDate2.Width = 125;
  1172. //
  1173. // Remarks1
  1174. //
  1175. this.Remarks1.DataPropertyName = "RreasonRemarks";
  1176. this.Remarks1.HeaderText = "备注";
  1177. this.Remarks1.MinimumWidth = 6;
  1178. this.Remarks1.Name = "Remarks1";
  1179. this.Remarks1.ReadOnly = true;
  1180. this.Remarks1.Width = 200;
  1181. //
  1182. // RecordRemarks
  1183. //
  1184. this.RecordRemarks.DataPropertyName = "RecordRemarks";
  1185. this.RecordRemarks.HeaderText = "操作备注";
  1186. this.RecordRemarks.MinimumWidth = 6;
  1187. this.RecordRemarks.Name = "RecordRemarks";
  1188. this.RecordRemarks.ReadOnly = true;
  1189. this.RecordRemarks.Width = 125;
  1190. //
  1191. // splLine
  1192. //
  1193. this.splLine.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1194. | System.Windows.Forms.AnchorStyles.Left)
  1195. | System.Windows.Forms.AnchorStyles.Right)));
  1196. this.splLine.Location = new System.Drawing.Point(0, 166);
  1197. this.splLine.Name = "splLine";
  1198. this.splLine.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1199. //
  1200. // splLine.Panel1
  1201. //
  1202. this.splLine.Panel1.Controls.Add(this.dgvGroutingLine);
  1203. //
  1204. // splLine.Panel2
  1205. //
  1206. this.splLine.Panel2.Controls.Add(this.dgvGroutingLineDetail);
  1207. this.splLine.Size = new System.Drawing.Size(1204, 382);
  1208. this.splLine.SplitterDistance = 197;
  1209. this.splLine.TabIndex = 105;
  1210. //
  1211. // dataGridViewTextBoxColumn1
  1212. //
  1213. this.dataGridViewTextBoxColumn1.DataPropertyName = "GroutingLineID";
  1214. this.dataGridViewTextBoxColumn1.HeaderText = "成型生产线ID";
  1215. this.dataGridViewTextBoxColumn1.MinimumWidth = 6;
  1216. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1217. this.dataGridViewTextBoxColumn1.Visible = false;
  1218. this.dataGridViewTextBoxColumn1.Width = 125;
  1219. //
  1220. // dataGridViewTextBoxColumn2
  1221. //
  1222. this.dataGridViewTextBoxColumn2.DataPropertyName = "GroutingLineCode";
  1223. this.dataGridViewTextBoxColumn2.HeaderText = "成型线编码";
  1224. this.dataGridViewTextBoxColumn2.MinimumWidth = 6;
  1225. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1226. this.dataGridViewTextBoxColumn2.Width = 125;
  1227. //
  1228. // dataGridViewTextBoxColumn3
  1229. //
  1230. this.dataGridViewTextBoxColumn3.DataPropertyName = "GroutingLineName";
  1231. this.dataGridViewTextBoxColumn3.HeaderText = "成型线名称";
  1232. this.dataGridViewTextBoxColumn3.MinimumWidth = 6;
  1233. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1234. this.dataGridViewTextBoxColumn3.Width = 125;
  1235. //
  1236. // dataGridViewTextBoxColumn4
  1237. //
  1238. this.dataGridViewTextBoxColumn4.DataPropertyName = "BuildingNo";
  1239. this.dataGridViewTextBoxColumn4.HeaderText = "楼号";
  1240. this.dataGridViewTextBoxColumn4.MinimumWidth = 6;
  1241. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  1242. this.dataGridViewTextBoxColumn4.Width = 125;
  1243. //
  1244. // dataGridViewTextBoxColumn5
  1245. //
  1246. this.dataGridViewTextBoxColumn5.DataPropertyName = "FloorNo";
  1247. this.dataGridViewTextBoxColumn5.HeaderText = "楼层";
  1248. this.dataGridViewTextBoxColumn5.MinimumWidth = 6;
  1249. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  1250. this.dataGridViewTextBoxColumn5.Width = 125;
  1251. //
  1252. // dataGridViewTextBoxColumn6
  1253. //
  1254. this.dataGridViewTextBoxColumn6.DataPropertyName = "GroutingLineNo";
  1255. this.dataGridViewTextBoxColumn6.HeaderText = "工段";
  1256. this.dataGridViewTextBoxColumn6.MinimumWidth = 6;
  1257. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  1258. this.dataGridViewTextBoxColumn6.Width = 125;
  1259. //
  1260. // dataGridViewTextBoxColumn7
  1261. //
  1262. this.dataGridViewTextBoxColumn7.DataPropertyName = "MouldQuantity";
  1263. this.dataGridViewTextBoxColumn7.HeaderText = "模具个数";
  1264. this.dataGridViewTextBoxColumn7.MinimumWidth = 6;
  1265. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1266. this.dataGridViewTextBoxColumn7.Width = 125;
  1267. //
  1268. // dataGridViewTextBoxColumn8
  1269. //
  1270. this.dataGridViewTextBoxColumn8.DataPropertyName = "GMouldTypeName";
  1271. this.dataGridViewTextBoxColumn8.HeaderText = "成型线类型";
  1272. this.dataGridViewTextBoxColumn8.MinimumWidth = 6;
  1273. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1274. this.dataGridViewTextBoxColumn8.Width = 125;
  1275. //
  1276. // dataGridViewTextBoxColumn9
  1277. //
  1278. this.dataGridViewTextBoxColumn9.DataPropertyName = "UserCode";
  1279. this.dataGridViewTextBoxColumn9.HeaderText = "成型工号";
  1280. this.dataGridViewTextBoxColumn9.MinimumWidth = 6;
  1281. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1282. this.dataGridViewTextBoxColumn9.Width = 125;
  1283. //
  1284. // dataGridViewTextBoxColumn10
  1285. //
  1286. this.dataGridViewTextBoxColumn10.DataPropertyName = "BeginUsedDate";
  1287. dataGridViewCellStyle15.Format = "yyyy-MM-dd";
  1288. dataGridViewCellStyle15.NullValue = null;
  1289. this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle15;
  1290. this.dataGridViewTextBoxColumn10.HeaderText = "开始使用日期";
  1291. this.dataGridViewTextBoxColumn10.MinimumWidth = 6;
  1292. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1293. this.dataGridViewTextBoxColumn10.Width = 120;
  1294. //
  1295. // dataGridViewTextBoxColumn11
  1296. //
  1297. this.dataGridViewTextBoxColumn11.DataPropertyName = "EndUsedDate";
  1298. dataGridViewCellStyle16.Format = "yyyy-MM-dd HH:mm:ss";
  1299. dataGridViewCellStyle16.NullValue = null;
  1300. this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle16;
  1301. this.dataGridViewTextBoxColumn11.HeaderText = "结束使用日期";
  1302. this.dataGridViewTextBoxColumn11.MinimumWidth = 6;
  1303. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1304. this.dataGridViewTextBoxColumn11.Width = 120;
  1305. //
  1306. // dataGridViewTextBoxColumn12
  1307. //
  1308. this.dataGridViewTextBoxColumn12.DataPropertyName = "GMOULDSTATUSNAME";
  1309. this.dataGridViewTextBoxColumn12.HeaderText = "成型线状态";
  1310. this.dataGridViewTextBoxColumn12.MinimumWidth = 6;
  1311. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1312. this.dataGridViewTextBoxColumn12.Width = 120;
  1313. //
  1314. // dataGridViewTextBoxColumn13
  1315. //
  1316. this.dataGridViewTextBoxColumn13.DataPropertyName = "Remarks";
  1317. this.dataGridViewTextBoxColumn13.HeaderText = "备注";
  1318. this.dataGridViewTextBoxColumn13.MinimumWidth = 6;
  1319. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1320. this.dataGridViewTextBoxColumn13.Width = 125;
  1321. //
  1322. // dataGridViewTextBoxColumn14
  1323. //
  1324. this.dataGridViewTextBoxColumn14.DataPropertyName = "GroutingLineDetailID";
  1325. this.dataGridViewTextBoxColumn14.HeaderText = "成型生产线明细ID";
  1326. this.dataGridViewTextBoxColumn14.MinimumWidth = 6;
  1327. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1328. this.dataGridViewTextBoxColumn14.Visible = false;
  1329. this.dataGridViewTextBoxColumn14.Width = 125;
  1330. //
  1331. // dataGridViewTextBoxColumn15
  1332. //
  1333. this.dataGridViewTextBoxColumn15.DataPropertyName = "GroutingLineID";
  1334. this.dataGridViewTextBoxColumn15.HeaderText = "成型生产线ID";
  1335. this.dataGridViewTextBoxColumn15.MinimumWidth = 6;
  1336. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1337. this.dataGridViewTextBoxColumn15.Visible = false;
  1338. this.dataGridViewTextBoxColumn15.Width = 125;
  1339. //
  1340. // dataGridViewTextBoxColumn16
  1341. //
  1342. this.dataGridViewTextBoxColumn16.DataPropertyName = "GroutingMouldCode";
  1343. this.dataGridViewTextBoxColumn16.HeaderText = "注浆模具编号";
  1344. this.dataGridViewTextBoxColumn16.MinimumWidth = 6;
  1345. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1346. this.dataGridViewTextBoxColumn16.Width = 120;
  1347. //
  1348. // dataGridViewTextBoxColumn17
  1349. //
  1350. this.dataGridViewTextBoxColumn17.DataPropertyName = "MouldCode";
  1351. this.dataGridViewTextBoxColumn17.HeaderText = "模具编号";
  1352. this.dataGridViewTextBoxColumn17.MinimumWidth = 6;
  1353. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1354. this.dataGridViewTextBoxColumn17.Visible = false;
  1355. this.dataGridViewTextBoxColumn17.Width = 125;
  1356. //
  1357. // dataGridViewTextBoxColumn18
  1358. //
  1359. this.dataGridViewTextBoxColumn18.DataPropertyName = "GoodsID";
  1360. this.dataGridViewTextBoxColumn18.HeaderText = "产品ID";
  1361. this.dataGridViewTextBoxColumn18.MinimumWidth = 6;
  1362. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1363. this.dataGridViewTextBoxColumn18.Visible = false;
  1364. this.dataGridViewTextBoxColumn18.Width = 125;
  1365. //
  1366. // dataGridViewTextBoxColumn19
  1367. //
  1368. this.dataGridViewTextBoxColumn19.DataPropertyName = "GOODSCODE";
  1369. this.dataGridViewTextBoxColumn19.HeaderText = "产品编码";
  1370. this.dataGridViewTextBoxColumn19.MinimumWidth = 6;
  1371. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1372. this.dataGridViewTextBoxColumn19.Width = 125;
  1373. //
  1374. // dataGridViewTextBoxColumn20
  1375. //
  1376. this.dataGridViewTextBoxColumn20.DataPropertyName = "GoodsName";
  1377. this.dataGridViewTextBoxColumn20.HeaderText = "产品名称";
  1378. this.dataGridViewTextBoxColumn20.MinimumWidth = 6;
  1379. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1380. this.dataGridViewTextBoxColumn20.Width = 125;
  1381. //
  1382. // dataGridViewTextBoxColumn21
  1383. //
  1384. this.dataGridViewTextBoxColumn21.DataPropertyName = "GoodsSpecification";
  1385. this.dataGridViewTextBoxColumn21.HeaderText = "产品规格";
  1386. this.dataGridViewTextBoxColumn21.MinimumWidth = 6;
  1387. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1388. this.dataGridViewTextBoxColumn21.Width = 125;
  1389. //
  1390. // dataGridViewTextBoxColumn22
  1391. //
  1392. this.dataGridViewTextBoxColumn22.DataPropertyName = "GroutingCount";
  1393. this.dataGridViewTextBoxColumn22.HeaderText = "当前注浆次数";
  1394. this.dataGridViewTextBoxColumn22.MinimumWidth = 6;
  1395. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1396. this.dataGridViewTextBoxColumn22.Width = 125;
  1397. //
  1398. // dataGridViewTextBoxColumn23
  1399. //
  1400. this.dataGridViewTextBoxColumn23.DataPropertyName = "GMOULDSTATUSNAME";
  1401. this.dataGridViewTextBoxColumn23.HeaderText = "注浆模具状态";
  1402. this.dataGridViewTextBoxColumn23.MinimumWidth = 6;
  1403. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1404. this.dataGridViewTextBoxColumn23.Width = 120;
  1405. //
  1406. // dataGridViewTextBoxColumn24
  1407. //
  1408. this.dataGridViewTextBoxColumn24.DataPropertyName = "BeginUsedDate";
  1409. dataGridViewCellStyle17.Format = "yyyy-MM-dd";
  1410. dataGridViewCellStyle17.NullValue = null;
  1411. this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle17;
  1412. this.dataGridViewTextBoxColumn24.HeaderText = "开始使用日期";
  1413. this.dataGridViewTextBoxColumn24.MinimumWidth = 6;
  1414. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1415. this.dataGridViewTextBoxColumn24.Width = 120;
  1416. //
  1417. // GroutingLineID
  1418. //
  1419. this.GroutingLineID.DataPropertyName = "GroutingLineID";
  1420. this.GroutingLineID.HeaderText = "成型生产线ID";
  1421. this.GroutingLineID.MinimumWidth = 6;
  1422. this.GroutingLineID.Name = "GroutingLineID";
  1423. this.GroutingLineID.ReadOnly = true;
  1424. this.GroutingLineID.Visible = false;
  1425. this.GroutingLineID.Width = 125;
  1426. //
  1427. // GroutingLineCode
  1428. //
  1429. this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
  1430. this.GroutingLineCode.HeaderText = "成型线编码";
  1431. this.GroutingLineCode.MinimumWidth = 6;
  1432. this.GroutingLineCode.Name = "GroutingLineCode";
  1433. this.GroutingLineCode.ReadOnly = true;
  1434. this.GroutingLineCode.Width = 125;
  1435. //
  1436. // GroutingLineName
  1437. //
  1438. this.GroutingLineName.DataPropertyName = "GroutingLineName";
  1439. this.GroutingLineName.HeaderText = "成型线名称";
  1440. this.GroutingLineName.MinimumWidth = 6;
  1441. this.GroutingLineName.Name = "GroutingLineName";
  1442. this.GroutingLineName.ReadOnly = true;
  1443. this.GroutingLineName.Width = 125;
  1444. //
  1445. // UserCode
  1446. //
  1447. this.UserCode.DataPropertyName = "userCodeList";
  1448. this.UserCode.HeaderText = "成型工位号";
  1449. this.UserCode.MinimumWidth = 6;
  1450. this.UserCode.Name = "UserCode";
  1451. this.UserCode.ReadOnly = true;
  1452. this.UserCode.Width = 125;
  1453. //
  1454. // staffCodeList
  1455. //
  1456. this.staffCodeList.DataPropertyName = "staffCodeList";
  1457. this.staffCodeList.HeaderText = "员工姓名";
  1458. this.staffCodeList.MinimumWidth = 6;
  1459. this.staffCodeList.Name = "staffCodeList";
  1460. this.staffCodeList.ReadOnly = true;
  1461. this.staffCodeList.Width = 125;
  1462. //
  1463. // goosCodeList
  1464. //
  1465. this.goosCodeList.DataPropertyName = "goosCodeList";
  1466. this.goosCodeList.HeaderText = "产品编码";
  1467. this.goosCodeList.MinimumWidth = 6;
  1468. this.goosCodeList.Name = "goosCodeList";
  1469. this.goosCodeList.ReadOnly = true;
  1470. this.goosCodeList.Width = 125;
  1471. //
  1472. // goosNameList
  1473. //
  1474. this.goosNameList.DataPropertyName = "goosNameList";
  1475. this.goosNameList.HeaderText = "产品名称";
  1476. this.goosNameList.Name = "goosNameList";
  1477. this.goosNameList.ReadOnly = true;
  1478. //
  1479. // workshop
  1480. //
  1481. this.workshop.DataPropertyName = "WORKSHOP";
  1482. this.workshop.HeaderText = "部门";
  1483. this.workshop.MinimumWidth = 6;
  1484. this.workshop.Name = "workshop";
  1485. this.workshop.ReadOnly = true;
  1486. this.workshop.Width = 125;
  1487. //
  1488. // ValueFlag
  1489. //
  1490. this.ValueFlag.DataPropertyName = "ValueFlag";
  1491. this.ValueFlag.FalseValue = "0";
  1492. this.ValueFlag.HeaderText = "有效标识";
  1493. this.ValueFlag.MinimumWidth = 6;
  1494. this.ValueFlag.Name = "ValueFlag";
  1495. this.ValueFlag.ReadOnly = true;
  1496. this.ValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1497. this.ValueFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1498. this.ValueFlag.TrueValue = "1";
  1499. this.ValueFlag.Visible = false;
  1500. this.ValueFlag.Width = 125;
  1501. //
  1502. // BuildingNo
  1503. //
  1504. this.BuildingNo.DataPropertyName = "BuildingNo";
  1505. this.BuildingNo.HeaderText = "楼号";
  1506. this.BuildingNo.MinimumWidth = 6;
  1507. this.BuildingNo.Name = "BuildingNo";
  1508. this.BuildingNo.ReadOnly = true;
  1509. this.BuildingNo.Width = 125;
  1510. //
  1511. // FloorNo
  1512. //
  1513. this.FloorNo.DataPropertyName = "FloorNo";
  1514. this.FloorNo.HeaderText = "楼层";
  1515. this.FloorNo.MinimumWidth = 6;
  1516. this.FloorNo.Name = "FloorNo";
  1517. this.FloorNo.ReadOnly = true;
  1518. this.FloorNo.Width = 125;
  1519. //
  1520. // GroutingLineNo
  1521. //
  1522. this.GroutingLineNo.DataPropertyName = "GroutingLineNo";
  1523. this.GroutingLineNo.HeaderText = "工段";
  1524. this.GroutingLineNo.MinimumWidth = 6;
  1525. this.GroutingLineNo.Name = "GroutingLineNo";
  1526. this.GroutingLineNo.ReadOnly = true;
  1527. this.GroutingLineNo.Width = 125;
  1528. //
  1529. // MouldQuantity
  1530. //
  1531. this.MouldQuantity.DataPropertyName = "MouldQuantity";
  1532. this.MouldQuantity.HeaderText = "模具个数";
  1533. this.MouldQuantity.MinimumWidth = 6;
  1534. this.MouldQuantity.Name = "MouldQuantity";
  1535. this.MouldQuantity.ReadOnly = true;
  1536. this.MouldQuantity.Width = 125;
  1537. //
  1538. // GMouldTypeName
  1539. //
  1540. this.GMouldTypeName.DataPropertyName = "GMouldTypeName";
  1541. this.GMouldTypeName.HeaderText = "成型线类型";
  1542. this.GMouldTypeName.MinimumWidth = 6;
  1543. this.GMouldTypeName.Name = "GMouldTypeName";
  1544. this.GMouldTypeName.ReadOnly = true;
  1545. this.GMouldTypeName.Width = 125;
  1546. //
  1547. // HIGHPRESSUREFLAG
  1548. //
  1549. this.HIGHPRESSUREFLAG.DataPropertyName = "HIGHPRESSUREFLAG";
  1550. this.HIGHPRESSUREFLAG.FalseValue = "0";
  1551. this.HIGHPRESSUREFLAG.HeaderText = "高压注浆";
  1552. this.HIGHPRESSUREFLAG.MinimumWidth = 6;
  1553. this.HIGHPRESSUREFLAG.Name = "HIGHPRESSUREFLAG";
  1554. this.HIGHPRESSUREFLAG.ReadOnly = true;
  1555. this.HIGHPRESSUREFLAG.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1556. this.HIGHPRESSUREFLAG.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1557. this.HIGHPRESSUREFLAG.TrueValue = "1";
  1558. this.HIGHPRESSUREFLAG.Width = 125;
  1559. //
  1560. // monitorcode
  1561. //
  1562. this.monitorcode.DataPropertyName = "monitorcode";
  1563. this.monitorcode.HeaderText = "成型班长";
  1564. this.monitorcode.MinimumWidth = 6;
  1565. this.monitorcode.Name = "monitorcode";
  1566. this.monitorcode.ReadOnly = true;
  1567. this.monitorcode.Width = 125;
  1568. //
  1569. // BeginUsedDate
  1570. //
  1571. this.BeginUsedDate.DataPropertyName = "BeginUsedDate";
  1572. dataGridViewCellStyle3.Format = "yyyy-MM-dd";
  1573. dataGridViewCellStyle3.NullValue = null;
  1574. this.BeginUsedDate.DefaultCellStyle = dataGridViewCellStyle3;
  1575. this.BeginUsedDate.HeaderText = "开始使用日期";
  1576. this.BeginUsedDate.MinimumWidth = 6;
  1577. this.BeginUsedDate.Name = "BeginUsedDate";
  1578. this.BeginUsedDate.ReadOnly = true;
  1579. this.BeginUsedDate.Width = 120;
  1580. //
  1581. // EndUsedDate
  1582. //
  1583. this.EndUsedDate.DataPropertyName = "EndUsedDate";
  1584. dataGridViewCellStyle4.Format = "yyyy-MM-dd";
  1585. dataGridViewCellStyle4.NullValue = null;
  1586. this.EndUsedDate.DefaultCellStyle = dataGridViewCellStyle4;
  1587. this.EndUsedDate.HeaderText = "结束使用日期";
  1588. this.EndUsedDate.MinimumWidth = 6;
  1589. this.EndUsedDate.Name = "EndUsedDate";
  1590. this.EndUsedDate.ReadOnly = true;
  1591. this.EndUsedDate.Width = 120;
  1592. //
  1593. // GMOULDSTATUSNAME
  1594. //
  1595. this.GMOULDSTATUSNAME.DataPropertyName = "GMOULDSTATUSNAME";
  1596. this.GMOULDSTATUSNAME.HeaderText = "成型线状态";
  1597. this.GMOULDSTATUSNAME.MinimumWidth = 6;
  1598. this.GMOULDSTATUSNAME.Name = "GMOULDSTATUSNAME";
  1599. this.GMOULDSTATUSNAME.ReadOnly = true;
  1600. this.GMOULDSTATUSNAME.Width = 120;
  1601. //
  1602. // valueflag2
  1603. //
  1604. this.valueflag2.DataPropertyName = "valueflag2";
  1605. this.valueflag2.FalseValue = "2";
  1606. this.valueflag2.HeaderText = "有效标识";
  1607. this.valueflag2.MinimumWidth = 6;
  1608. this.valueflag2.Name = "valueflag2";
  1609. this.valueflag2.ReadOnly = true;
  1610. this.valueflag2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1611. this.valueflag2.TrueValue = "1";
  1612. this.valueflag2.Width = 125;
  1613. //
  1614. // TESTFLAGNAME
  1615. //
  1616. this.TESTFLAGNAME.DataPropertyName = "TESTFLAGNAME";
  1617. this.TESTFLAGNAME.HeaderText = "成型线类别";
  1618. this.TESTFLAGNAME.MinimumWidth = 6;
  1619. this.TESTFLAGNAME.Name = "TESTFLAGNAME";
  1620. this.TESTFLAGNAME.ReadOnly = true;
  1621. this.TESTFLAGNAME.Width = 125;
  1622. //
  1623. // Remarks
  1624. //
  1625. this.Remarks.DataPropertyName = "Remarks";
  1626. this.Remarks.HeaderText = "备注";
  1627. this.Remarks.MinimumWidth = 6;
  1628. this.Remarks.Name = "Remarks";
  1629. this.Remarks.ReadOnly = true;
  1630. this.Remarks.Width = 125;
  1631. //
  1632. // GMouldStatus
  1633. //
  1634. this.GMouldStatus.DataPropertyName = "GMouldStatus";
  1635. this.GMouldStatus.HeaderText = "GMouldStatus";
  1636. this.GMouldStatus.MinimumWidth = 6;
  1637. this.GMouldStatus.Name = "GMouldStatus";
  1638. this.GMouldStatus.ReadOnly = true;
  1639. this.GMouldStatus.Visible = false;
  1640. this.GMouldStatus.Width = 125;
  1641. //
  1642. // F_PC_0104_1
  1643. //
  1644. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1645. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1646. this.ClientSize = new System.Drawing.Size(1216, 549);
  1647. this.Controls.Add(this.splLine);
  1648. this.Controls.Add(this.gbxCondition);
  1649. this.Controls.Add(this.tsrOperate);
  1650. this.Margin = new System.Windows.Forms.Padding(4);
  1651. this.Name = "F_PC_0104_1";
  1652. this.Text = "F_PC_0104";
  1653. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_PC_0104_FormClosed);
  1654. this.Load += new System.EventHandler(this.F_PC_0104_Load);
  1655. this.tsrOperate.ResumeLayout(false);
  1656. this.tsrOperate.PerformLayout();
  1657. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).EndInit();
  1658. this.gbxCondition.ResumeLayout(false);
  1659. this.gbxCondition.PerformLayout();
  1660. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLineDetail)).EndInit();
  1661. this.splLine.Panel1.ResumeLayout(false);
  1662. this.splLine.Panel2.ResumeLayout(false);
  1663. ((System.ComponentModel.ISupportInitialize)(this.splLine)).EndInit();
  1664. this.splLine.ResumeLayout(false);
  1665. this.ResumeLayout(false);
  1666. }
  1667. #endregion
  1668. private Basics.BaseControls.C_ToolStrip tsrOperate;
  1669. private System.Windows.Forms.ToolStripButton tsbtnAdd;
  1670. private System.Windows.Forms.ToolStripButton tsbtnEdit;
  1671. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  1672. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  1673. private System.Windows.Forms.ToolStripButton tsbtnClose;
  1674. private Basics.BaseControls.C_DataGridView dgvGroutingLine;
  1675. private Basics.BaseControls.C_Button btnClearCondition;
  1676. private Basics.BaseControls.C_Button btnSearch;
  1677. private Basics.BaseControls.C_DateTimePicker txtEndUsedDateEnd;
  1678. private Basics.BaseControls.C_Label c_Label12;
  1679. private Basics.BaseControls.C_DateTimePicker txtEndUsedDateStart;
  1680. private Basics.BaseControls.C_CheckBox cbEndTime;
  1681. private Basics.BaseControls.C_TextBox txtRemarks;
  1682. private Basics.BaseControls.C_Label lblRemarks;
  1683. private Basics.BaseControls.C_DateTimePicker txtBeginUsedDateEnd;
  1684. private Basics.BaseControls.C_Label c_Label11;
  1685. private Basics.BaseControls.C_DateTimePicker txtBeginUsedDateStart;
  1686. private Basics.BaseControls.C_CheckBox cbStartTime;
  1687. private Basics.BaseControls.C_TextBox txtGroutingLineName;
  1688. private Basics.BaseControls.C_Label lblGroutingLineName;
  1689. private Basics.BaseControls.C_TextBox txtGroutingLineCode;
  1690. private Basics.BaseControls.C_Label lblGroutingLineCode;
  1691. private Basics.BaseControls.C_Label lblGMouldStatus;
  1692. private Basics.BaseControls.C_TextBox txtGroutingLineNo;
  1693. private Basics.BaseControls.C_Label lblGroutingLineNo;
  1694. private Basics.BaseControls.C_Label lblFloorNo;
  1695. private Basics.BaseControls.C_TextBox txtBuildingNo;
  1696. private Basics.BaseControls.C_Label lblBuildingNo;
  1697. private Basics.BaseControls.C_GroupBox gbxCondition;
  1698. private Basics.BaseControls.C_DataGridView dgvGroutingLineDetail;
  1699. private System.Windows.Forms.SplitContainer splLine;
  1700. private System.Windows.Forms.ToolStripButton tsbtnQueryRecord;
  1701. private Basics.BaseControls.C_Label lblGroutingUserCode;
  1702. private Basics.BaseControls.C_TextBox txtGroutingUserCode;
  1703. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1704. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1705. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1706. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  1707. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  1708. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  1709. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  1710. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1711. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  1712. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  1713. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  1714. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  1715. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  1716. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  1717. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  1718. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  1719. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  1720. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  1721. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  1722. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  1723. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  1724. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  1725. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  1726. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  1727. private Basics.BaseControls.C_DGV_Digital txtFloorNo;
  1728. private System.Windows.Forms.ToolStripButton tsbtnDisable;
  1729. private System.Windows.Forms.ToolStripButton tsbtnStart;
  1730. private System.Windows.Forms.ToolStripButton tsbtnManager;
  1731. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  1732. private Basics.BaseControls.C_ComboBox lstcbxGMouldStatus;
  1733. private Basics.BaseControls.C_CheckBox chkDisable;
  1734. private Basics.BaseControls.C_CheckBox chkEnable;
  1735. private Basics.BaseControls.C_Label lblGMouldType;
  1736. private Controls.SearchBox.ScbGMouldType scbGMouldType;
  1737. private Basics.BaseControls.C_ValidCheckedBoxList TestFlag;
  1738. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineDetailID;
  1739. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineIDM;
  1740. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingMouldCode;
  1741. private System.Windows.Forms.DataGridViewTextBoxColumn MouldBarcode;
  1742. private System.Windows.Forms.DataGridViewTextBoxColumn MouldID;
  1743. private System.Windows.Forms.DataGridViewTextBoxColumn MouldCode;
  1744. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsID;
  1745. private System.Windows.Forms.DataGridViewTextBoxColumn GOODSCODE;
  1746. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsName;
  1747. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsSpecification;
  1748. private System.Windows.Forms.DataGridViewTextBoxColumn StandardGroutingCount;
  1749. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingCount;
  1750. private System.Windows.Forms.DataGridViewTextBoxColumn GMouldStatusM;
  1751. private System.Windows.Forms.DataGridViewCheckBoxColumn TESTMOULDFLAG;
  1752. private System.Windows.Forms.DataGridViewTextBoxColumn BeginUsedDateM;
  1753. private System.Windows.Forms.DataGridViewTextBoxColumn EndUsedDate2;
  1754. private System.Windows.Forms.DataGridViewTextBoxColumn Remarks1;
  1755. private System.Windows.Forms.DataGridViewTextBoxColumn RecordRemarks;
  1756. private Basics.BaseControls.C_TextBox goodscodeText;
  1757. private Basics.BaseControls.C_Label c_Label1;
  1758. private Controls.SearchBox.ScbGoods scbGoods;
  1759. private Basics.BaseControls.C_Label lblGoods;
  1760. private Basics.BaseControls.DKListBoxComboBox cbWorkShop;
  1761. private Basics.BaseControls.C_Label lblWorkShop;
  1762. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineID;
  1763. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
  1764. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineName;
  1765. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode;
  1766. private System.Windows.Forms.DataGridViewTextBoxColumn staffCodeList;
  1767. private System.Windows.Forms.DataGridViewTextBoxColumn goosCodeList;
  1768. private System.Windows.Forms.DataGridViewTextBoxColumn goosNameList;
  1769. private System.Windows.Forms.DataGridViewTextBoxColumn workshop;
  1770. private System.Windows.Forms.DataGridViewCheckBoxColumn ValueFlag;
  1771. private System.Windows.Forms.DataGridViewTextBoxColumn BuildingNo;
  1772. private System.Windows.Forms.DataGridViewTextBoxColumn FloorNo;
  1773. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineNo;
  1774. private System.Windows.Forms.DataGridViewTextBoxColumn MouldQuantity;
  1775. private System.Windows.Forms.DataGridViewTextBoxColumn GMouldTypeName;
  1776. private System.Windows.Forms.DataGridViewCheckBoxColumn HIGHPRESSUREFLAG;
  1777. private System.Windows.Forms.DataGridViewTextBoxColumn monitorcode;
  1778. private System.Windows.Forms.DataGridViewTextBoxColumn BeginUsedDate;
  1779. private System.Windows.Forms.DataGridViewTextBoxColumn EndUsedDate;
  1780. private System.Windows.Forms.DataGridViewTextBoxColumn GMOULDSTATUSNAME;
  1781. private System.Windows.Forms.DataGridViewCheckBoxColumn valueflag2;
  1782. private System.Windows.Forms.DataGridViewTextBoxColumn TESTFLAGNAME;
  1783. private System.Windows.Forms.DataGridViewTextBoxColumn Remarks;
  1784. private System.Windows.Forms.DataGridViewTextBoxColumn GMouldStatus;
  1785. }
  1786. }