F_RPT_040108.Designer.cs 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952
  1. namespace Dongke.IBOSS.PRD.Client.ReportModule
  2. {
  3. partial class F_RPT_040108
  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.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("楼号");
  29. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("楼层");
  30. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("线号");
  31. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("成型线编码");
  32. System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("成型工号");
  33. System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("产品编码");
  34. System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("产品规格");
  35. System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("产品类别");
  36. System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("模具数");
  37. System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("成坯数");
  38. System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("交坯数");
  39. System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("1日", new System.Windows.Forms.TreeNode[] {
  40. treeNode10,
  41. treeNode11});
  42. System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("成坯数");
  43. System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("交坯数");
  44. System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("2日", new System.Windows.Forms.TreeNode[] {
  45. treeNode13,
  46. treeNode14});
  47. System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("成坯数");
  48. System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("交坯数");
  49. System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("3日", new System.Windows.Forms.TreeNode[] {
  50. treeNode16,
  51. treeNode17});
  52. System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("成坯数");
  53. System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("交坯数");
  54. System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("4日", new System.Windows.Forms.TreeNode[] {
  55. treeNode19,
  56. treeNode20});
  57. System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("成坯数");
  58. System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("交坯数");
  59. System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("5日", new System.Windows.Forms.TreeNode[] {
  60. treeNode22,
  61. treeNode23});
  62. System.Windows.Forms.TreeNode treeNode25 = new System.Windows.Forms.TreeNode("成坯数");
  63. System.Windows.Forms.TreeNode treeNode26 = new System.Windows.Forms.TreeNode("交坯数");
  64. System.Windows.Forms.TreeNode treeNode27 = new System.Windows.Forms.TreeNode("6日", new System.Windows.Forms.TreeNode[] {
  65. treeNode25,
  66. treeNode26});
  67. System.Windows.Forms.TreeNode treeNode28 = new System.Windows.Forms.TreeNode("成坯数");
  68. System.Windows.Forms.TreeNode treeNode29 = new System.Windows.Forms.TreeNode("交坯数");
  69. System.Windows.Forms.TreeNode treeNode30 = new System.Windows.Forms.TreeNode("7日", new System.Windows.Forms.TreeNode[] {
  70. treeNode28,
  71. treeNode29});
  72. System.Windows.Forms.TreeNode treeNode31 = new System.Windows.Forms.TreeNode("成坯数");
  73. System.Windows.Forms.TreeNode treeNode32 = new System.Windows.Forms.TreeNode("交坯数");
  74. System.Windows.Forms.TreeNode treeNode33 = new System.Windows.Forms.TreeNode("8日", new System.Windows.Forms.TreeNode[] {
  75. treeNode31,
  76. treeNode32});
  77. System.Windows.Forms.TreeNode treeNode34 = new System.Windows.Forms.TreeNode("成坯数");
  78. System.Windows.Forms.TreeNode treeNode35 = new System.Windows.Forms.TreeNode("交坯数");
  79. System.Windows.Forms.TreeNode treeNode36 = new System.Windows.Forms.TreeNode("9日", new System.Windows.Forms.TreeNode[] {
  80. treeNode34,
  81. treeNode35});
  82. System.Windows.Forms.TreeNode treeNode37 = new System.Windows.Forms.TreeNode("成坯数");
  83. System.Windows.Forms.TreeNode treeNode38 = new System.Windows.Forms.TreeNode("交坯数");
  84. System.Windows.Forms.TreeNode treeNode39 = new System.Windows.Forms.TreeNode("10日", new System.Windows.Forms.TreeNode[] {
  85. treeNode37,
  86. treeNode38});
  87. System.Windows.Forms.TreeNode treeNode40 = new System.Windows.Forms.TreeNode("成坯数");
  88. System.Windows.Forms.TreeNode treeNode41 = new System.Windows.Forms.TreeNode("交坯数");
  89. System.Windows.Forms.TreeNode treeNode42 = new System.Windows.Forms.TreeNode("11日", new System.Windows.Forms.TreeNode[] {
  90. treeNode40,
  91. treeNode41});
  92. System.Windows.Forms.TreeNode treeNode43 = new System.Windows.Forms.TreeNode("成坯数");
  93. System.Windows.Forms.TreeNode treeNode44 = new System.Windows.Forms.TreeNode("交坯数");
  94. System.Windows.Forms.TreeNode treeNode45 = new System.Windows.Forms.TreeNode("12日", new System.Windows.Forms.TreeNode[] {
  95. treeNode43,
  96. treeNode44});
  97. System.Windows.Forms.TreeNode treeNode46 = new System.Windows.Forms.TreeNode("成坯数");
  98. System.Windows.Forms.TreeNode treeNode47 = new System.Windows.Forms.TreeNode("交坯数");
  99. System.Windows.Forms.TreeNode treeNode48 = new System.Windows.Forms.TreeNode("13日", new System.Windows.Forms.TreeNode[] {
  100. treeNode46,
  101. treeNode47});
  102. System.Windows.Forms.TreeNode treeNode49 = new System.Windows.Forms.TreeNode("成坯数");
  103. System.Windows.Forms.TreeNode treeNode50 = new System.Windows.Forms.TreeNode("交坯数");
  104. System.Windows.Forms.TreeNode treeNode51 = new System.Windows.Forms.TreeNode("14日", new System.Windows.Forms.TreeNode[] {
  105. treeNode49,
  106. treeNode50});
  107. System.Windows.Forms.TreeNode treeNode52 = new System.Windows.Forms.TreeNode("成坯数");
  108. System.Windows.Forms.TreeNode treeNode53 = new System.Windows.Forms.TreeNode("交坯数");
  109. System.Windows.Forms.TreeNode treeNode54 = new System.Windows.Forms.TreeNode("15日", new System.Windows.Forms.TreeNode[] {
  110. treeNode52,
  111. treeNode53});
  112. System.Windows.Forms.TreeNode treeNode55 = new System.Windows.Forms.TreeNode("成坯数");
  113. System.Windows.Forms.TreeNode treeNode56 = new System.Windows.Forms.TreeNode("交坯数");
  114. System.Windows.Forms.TreeNode treeNode57 = new System.Windows.Forms.TreeNode("16日", new System.Windows.Forms.TreeNode[] {
  115. treeNode55,
  116. treeNode56});
  117. System.Windows.Forms.TreeNode treeNode58 = new System.Windows.Forms.TreeNode("成坯数");
  118. System.Windows.Forms.TreeNode treeNode59 = new System.Windows.Forms.TreeNode("交坯数");
  119. System.Windows.Forms.TreeNode treeNode60 = new System.Windows.Forms.TreeNode("17日", new System.Windows.Forms.TreeNode[] {
  120. treeNode58,
  121. treeNode59});
  122. System.Windows.Forms.TreeNode treeNode61 = new System.Windows.Forms.TreeNode("成坯数");
  123. System.Windows.Forms.TreeNode treeNode62 = new System.Windows.Forms.TreeNode("交坯数");
  124. System.Windows.Forms.TreeNode treeNode63 = new System.Windows.Forms.TreeNode("18日", new System.Windows.Forms.TreeNode[] {
  125. treeNode61,
  126. treeNode62});
  127. System.Windows.Forms.TreeNode treeNode64 = new System.Windows.Forms.TreeNode("成坯数");
  128. System.Windows.Forms.TreeNode treeNode65 = new System.Windows.Forms.TreeNode("交坯数");
  129. System.Windows.Forms.TreeNode treeNode66 = new System.Windows.Forms.TreeNode("19日", new System.Windows.Forms.TreeNode[] {
  130. treeNode64,
  131. treeNode65});
  132. System.Windows.Forms.TreeNode treeNode67 = new System.Windows.Forms.TreeNode("成坯数");
  133. System.Windows.Forms.TreeNode treeNode68 = new System.Windows.Forms.TreeNode("交坯数");
  134. System.Windows.Forms.TreeNode treeNode69 = new System.Windows.Forms.TreeNode("20日", new System.Windows.Forms.TreeNode[] {
  135. treeNode67,
  136. treeNode68});
  137. System.Windows.Forms.TreeNode treeNode70 = new System.Windows.Forms.TreeNode("成坯数");
  138. System.Windows.Forms.TreeNode treeNode71 = new System.Windows.Forms.TreeNode("交坯数");
  139. System.Windows.Forms.TreeNode treeNode72 = new System.Windows.Forms.TreeNode("21日", new System.Windows.Forms.TreeNode[] {
  140. treeNode70,
  141. treeNode71});
  142. System.Windows.Forms.TreeNode treeNode73 = new System.Windows.Forms.TreeNode("成坯数");
  143. System.Windows.Forms.TreeNode treeNode74 = new System.Windows.Forms.TreeNode("交坯数");
  144. System.Windows.Forms.TreeNode treeNode75 = new System.Windows.Forms.TreeNode("22日", new System.Windows.Forms.TreeNode[] {
  145. treeNode73,
  146. treeNode74});
  147. System.Windows.Forms.TreeNode treeNode76 = new System.Windows.Forms.TreeNode("成坯数");
  148. System.Windows.Forms.TreeNode treeNode77 = new System.Windows.Forms.TreeNode("交坯数");
  149. System.Windows.Forms.TreeNode treeNode78 = new System.Windows.Forms.TreeNode("23日", new System.Windows.Forms.TreeNode[] {
  150. treeNode76,
  151. treeNode77});
  152. System.Windows.Forms.TreeNode treeNode79 = new System.Windows.Forms.TreeNode("成坯数");
  153. System.Windows.Forms.TreeNode treeNode80 = new System.Windows.Forms.TreeNode("交坯数");
  154. System.Windows.Forms.TreeNode treeNode81 = new System.Windows.Forms.TreeNode("24日", new System.Windows.Forms.TreeNode[] {
  155. treeNode79,
  156. treeNode80});
  157. System.Windows.Forms.TreeNode treeNode82 = new System.Windows.Forms.TreeNode("成坯数");
  158. System.Windows.Forms.TreeNode treeNode83 = new System.Windows.Forms.TreeNode("交坯数");
  159. System.Windows.Forms.TreeNode treeNode84 = new System.Windows.Forms.TreeNode("25日", new System.Windows.Forms.TreeNode[] {
  160. treeNode82,
  161. treeNode83});
  162. System.Windows.Forms.TreeNode treeNode85 = new System.Windows.Forms.TreeNode("成坯数");
  163. System.Windows.Forms.TreeNode treeNode86 = new System.Windows.Forms.TreeNode("交坯数");
  164. System.Windows.Forms.TreeNode treeNode87 = new System.Windows.Forms.TreeNode("26日", new System.Windows.Forms.TreeNode[] {
  165. treeNode85,
  166. treeNode86});
  167. System.Windows.Forms.TreeNode treeNode88 = new System.Windows.Forms.TreeNode("成坯数");
  168. System.Windows.Forms.TreeNode treeNode89 = new System.Windows.Forms.TreeNode("交坯数");
  169. System.Windows.Forms.TreeNode treeNode90 = new System.Windows.Forms.TreeNode("27日", new System.Windows.Forms.TreeNode[] {
  170. treeNode88,
  171. treeNode89});
  172. System.Windows.Forms.TreeNode treeNode91 = new System.Windows.Forms.TreeNode("成坯数");
  173. System.Windows.Forms.TreeNode treeNode92 = new System.Windows.Forms.TreeNode("交坯数");
  174. System.Windows.Forms.TreeNode treeNode93 = new System.Windows.Forms.TreeNode("28日", new System.Windows.Forms.TreeNode[] {
  175. treeNode91,
  176. treeNode92});
  177. System.Windows.Forms.TreeNode treeNode94 = new System.Windows.Forms.TreeNode("成坯数");
  178. System.Windows.Forms.TreeNode treeNode95 = new System.Windows.Forms.TreeNode("交坯数");
  179. System.Windows.Forms.TreeNode treeNode96 = new System.Windows.Forms.TreeNode("29日", new System.Windows.Forms.TreeNode[] {
  180. treeNode94,
  181. treeNode95});
  182. System.Windows.Forms.TreeNode treeNode97 = new System.Windows.Forms.TreeNode("成坯数");
  183. System.Windows.Forms.TreeNode treeNode98 = new System.Windows.Forms.TreeNode("交坯数");
  184. System.Windows.Forms.TreeNode treeNode99 = new System.Windows.Forms.TreeNode("30日", new System.Windows.Forms.TreeNode[] {
  185. treeNode97,
  186. treeNode98});
  187. System.Windows.Forms.TreeNode treeNode100 = new System.Windows.Forms.TreeNode("成坯数");
  188. System.Windows.Forms.TreeNode treeNode101 = new System.Windows.Forms.TreeNode("交坯数");
  189. System.Windows.Forms.TreeNode treeNode102 = new System.Windows.Forms.TreeNode("31日", new System.Windows.Forms.TreeNode[] {
  190. treeNode100,
  191. treeNode101});
  192. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_040108));
  193. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  194. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  195. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
  196. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
  197. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
  198. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
  199. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
  200. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
  201. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
  202. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
  203. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
  204. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
  205. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
  206. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
  207. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
  208. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
  209. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
  210. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
  211. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
  212. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
  213. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
  214. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
  215. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
  216. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
  217. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
  218. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
  219. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
  220. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
  221. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
  222. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
  223. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
  224. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
  225. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
  226. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
  227. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
  228. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
  229. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
  230. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
  231. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
  232. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
  233. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
  234. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
  235. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
  236. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
  237. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
  238. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
  239. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
  240. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
  241. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
  242. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
  243. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
  244. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
  245. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
  246. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
  247. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
  248. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
  249. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
  250. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
  251. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
  252. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
  253. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
  254. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
  255. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
  256. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
  257. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
  258. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
  259. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
  260. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
  261. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
  262. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
  263. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
  264. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
  265. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
  266. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  267. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  268. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  269. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  270. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  271. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  272. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  273. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  274. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  275. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  276. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  277. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  278. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  279. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  280. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  281. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  282. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  283. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  284. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  285. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  286. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  287. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  288. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  289. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  290. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  291. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  292. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  293. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  294. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  295. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  296. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  297. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  298. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  299. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  300. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  301. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  302. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  303. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  304. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  305. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  306. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  307. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  308. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  309. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
  310. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
  311. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
  312. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
  313. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
  314. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
  315. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
  316. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
  317. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
  318. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
  319. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
  320. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
  321. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
  322. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
  323. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
  324. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
  325. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
  326. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
  327. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
  328. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
  329. this.treeView1 = new System.Windows.Forms.TreeView();
  330. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  331. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  332. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  333. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  334. this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  335. this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
  336. this.txtGroutingUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  337. this.c_Label3 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  338. this.txtGroutingLineCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  339. this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  340. this.txtGoodCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  341. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  342. this.c_Label4 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  343. this.dtpGDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  344. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  345. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  346. this.dgvRptProcedure = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  347. this.tabControl1 = new System.Windows.Forms.TabControl();
  348. this.tabPage1 = new System.Windows.Forms.TabPage();
  349. this.tabPage2 = new System.Windows.Forms.TabPage();
  350. this.dgvGC = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  351. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  352. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  353. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  354. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  355. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  356. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  357. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  358. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  359. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  360. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  361. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  362. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  363. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  364. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  365. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  366. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  367. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  368. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  369. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  370. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  371. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  372. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  373. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  374. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  375. this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  376. this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  377. this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  378. this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  379. this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  380. this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  381. this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  382. this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  383. this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  384. this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  385. this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  386. this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  387. this.dataGridViewTextBoxColumn64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  388. this.dataGridViewTextBoxColumn66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  389. this.dataGridViewTextBoxColumn68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  390. this.dataGridViewTextBoxColumn70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  391. this.tabPage3 = new System.Windows.Forms.TabPage();
  392. this.dgvGD = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  393. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  394. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  395. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  396. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  397. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  398. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  399. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  400. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  401. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  402. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  403. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  404. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  405. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  406. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  407. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  408. this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  409. this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  410. this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  411. this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  412. this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  413. this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  414. this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  415. this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  416. this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  417. this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  418. this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  419. this.dataGridViewTextBoxColumn63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  420. this.dataGridViewTextBoxColumn65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  421. this.dataGridViewTextBoxColumn67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  422. this.dataGridViewTextBoxColumn69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  423. this.dataGridViewTextBoxColumn71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  424. this.dataGridViewTextBoxColumn72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  425. this.dataGridViewTextBoxColumn73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  426. this.dataGridViewTextBoxColumn74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  427. this.dataGridViewTextBoxColumn75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  428. this.dataGridViewTextBoxColumn76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  429. this.dataGridViewTextBoxColumn77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  430. this.dataGridViewTextBoxColumn78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  431. this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  432. this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  433. this.BuildingNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  434. this.FloorNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  435. this.GroutingLineNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  436. this.groutinglinecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  437. this.usercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  438. this.goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  439. this.GOODSSPECIFICATION = new System.Windows.Forms.DataGridViewTextBoxColumn();
  440. this.goodstypename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  441. this.MouldQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  442. this.c01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  443. this.d01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  444. this.c02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  445. this.d02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  446. this.c03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  447. this.d03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  448. this.c04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  449. this.d04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  450. this.c05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  451. this.d05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  452. this.c06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  453. this.d06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  454. this.c07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  455. this.d07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  456. this.c08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  457. this.d08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  458. this.c09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  459. this.d09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  460. this.c10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  461. this.d10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  462. this.c11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  463. this.d11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  464. this.c12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  465. this.d12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  466. this.c13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  467. this.d13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  468. this.c14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  469. this.d14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  470. this.c15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  471. this.d15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  472. this.c16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  473. this.d16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  474. this.c17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  475. this.d17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  476. this.c18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  477. this.d18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  478. this.c19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  479. this.d19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  480. this.c20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  481. this.d20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  482. this.c21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  483. this.d21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  484. this.c22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  485. this.d22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  486. this.c23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  487. this.d23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  488. this.c24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  489. this.d24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  490. this.c25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  491. this.d25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  492. this.c26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  493. this.d26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  494. this.c27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  495. this.d27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  496. this.c28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  497. this.d28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  498. this.c29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  499. this.d29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  500. this.c30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  501. this.d30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  502. this.c31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  503. this.d31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  504. this.tsrOperate.SuspendLayout();
  505. this.gbxCondition.SuspendLayout();
  506. ((System.ComponentModel.ISupportInitialize)(this.dgvRptProcedure)).BeginInit();
  507. this.tabControl1.SuspendLayout();
  508. this.tabPage1.SuspendLayout();
  509. this.tabPage2.SuspendLayout();
  510. ((System.ComponentModel.ISupportInitialize)(this.dgvGC)).BeginInit();
  511. this.tabPage3.SuspendLayout();
  512. ((System.ComponentModel.ISupportInitialize)(this.dgvGD)).BeginInit();
  513. this.SuspendLayout();
  514. //
  515. // treeView1
  516. //
  517. this.treeView1.LineColor = System.Drawing.Color.Empty;
  518. this.treeView1.Location = new System.Drawing.Point(0, 0);
  519. this.treeView1.Name = "treeView1";
  520. treeNode1.Name = "节点1";
  521. treeNode1.Text = "楼号";
  522. treeNode2.Name = "节点4";
  523. treeNode2.Text = "楼层";
  524. treeNode3.Name = "节点3";
  525. treeNode3.Text = "线号";
  526. treeNode4.Name = "groutinglinecode";
  527. treeNode4.Text = "成型线编码";
  528. treeNode5.Name = "usercode";
  529. treeNode5.Text = "成型工号";
  530. treeNode6.Name = "goodscode";
  531. treeNode6.Text = "产品编码";
  532. treeNode7.Name = "GOODSSPECIFICATION";
  533. treeNode7.Text = "产品规格";
  534. treeNode8.Name = "goodstypename";
  535. treeNode8.Text = "产品类别";
  536. treeNode9.Name = "MouldQuantity";
  537. treeNode9.Text = "模具数";
  538. treeNode10.Name = "c01";
  539. treeNode10.Text = "成坯数";
  540. treeNode11.Name = "d01";
  541. treeNode11.Text = "交坯数";
  542. treeNode12.Name = "节点cd01";
  543. treeNode12.Text = "1日";
  544. treeNode13.Name = "c02";
  545. treeNode13.Text = "成坯数";
  546. treeNode14.Name = "d02";
  547. treeNode14.Text = "交坯数";
  548. treeNode15.Name = "节点cd02";
  549. treeNode15.Text = "2日";
  550. treeNode16.Name = "c03";
  551. treeNode16.Text = "成坯数";
  552. treeNode17.Name = "d03";
  553. treeNode17.Text = "交坯数";
  554. treeNode18.Name = "节点cd03";
  555. treeNode18.Text = "3日";
  556. treeNode19.Name = "c04";
  557. treeNode19.Text = "成坯数";
  558. treeNode20.Name = "d04";
  559. treeNode20.Text = "交坯数";
  560. treeNode21.Name = "节点cd04";
  561. treeNode21.Text = "4日";
  562. treeNode22.Name = "c05";
  563. treeNode22.Text = "成坯数";
  564. treeNode23.Name = "d05";
  565. treeNode23.Text = "交坯数";
  566. treeNode24.Name = "节点cd05";
  567. treeNode24.Text = "5日";
  568. treeNode25.Name = "c06";
  569. treeNode25.Text = "成坯数";
  570. treeNode26.Name = "d06";
  571. treeNode26.Text = "交坯数";
  572. treeNode27.Name = "节点cd06";
  573. treeNode27.Text = "6日";
  574. treeNode28.Name = "c07";
  575. treeNode28.Text = "成坯数";
  576. treeNode29.Name = "d07";
  577. treeNode29.Text = "交坯数";
  578. treeNode30.Name = "节点cd07";
  579. treeNode30.Text = "7日";
  580. treeNode31.Name = "c08";
  581. treeNode31.Text = "成坯数";
  582. treeNode32.Name = "d08";
  583. treeNode32.Text = "交坯数";
  584. treeNode33.Name = "节点cd08";
  585. treeNode33.Text = "8日";
  586. treeNode34.Name = "c09";
  587. treeNode34.Text = "成坯数";
  588. treeNode35.Name = "d09";
  589. treeNode35.Text = "交坯数";
  590. treeNode36.Name = "节点cd09";
  591. treeNode36.Text = "9日";
  592. treeNode37.Name = "c10";
  593. treeNode37.Text = "成坯数";
  594. treeNode38.Name = "d10";
  595. treeNode38.Text = "交坯数";
  596. treeNode39.Name = "节点cd10";
  597. treeNode39.Text = "10日";
  598. treeNode40.Name = "c11";
  599. treeNode40.Text = "成坯数";
  600. treeNode41.Name = "d11";
  601. treeNode41.Text = "交坯数";
  602. treeNode42.Name = "节点cd11";
  603. treeNode42.Text = "11日";
  604. treeNode43.Name = "c12";
  605. treeNode43.Text = "成坯数";
  606. treeNode44.Name = "d12";
  607. treeNode44.Text = "交坯数";
  608. treeNode45.Name = "节点cd12";
  609. treeNode45.Text = "12日";
  610. treeNode46.Name = "c13";
  611. treeNode46.Text = "成坯数";
  612. treeNode47.Name = "d13";
  613. treeNode47.Text = "交坯数";
  614. treeNode48.Name = "节点cd13";
  615. treeNode48.Text = "13日";
  616. treeNode49.Name = "c14";
  617. treeNode49.Text = "成坯数";
  618. treeNode50.Name = "d14";
  619. treeNode50.Text = "交坯数";
  620. treeNode51.Name = "节点cd14";
  621. treeNode51.Text = "14日";
  622. treeNode52.Name = "c15";
  623. treeNode52.Text = "成坯数";
  624. treeNode53.Name = "d15";
  625. treeNode53.Text = "交坯数";
  626. treeNode54.Name = "节点cd15";
  627. treeNode54.Text = "15日";
  628. treeNode55.Name = "c16";
  629. treeNode55.Text = "成坯数";
  630. treeNode56.Name = "d16";
  631. treeNode56.Text = "交坯数";
  632. treeNode57.Name = "节点cd16";
  633. treeNode57.Text = "16日";
  634. treeNode58.Name = "c17";
  635. treeNode58.Text = "成坯数";
  636. treeNode59.Name = "d17";
  637. treeNode59.Text = "交坯数";
  638. treeNode60.Name = "节点cd17";
  639. treeNode60.Text = "17日";
  640. treeNode61.Name = "c18";
  641. treeNode61.Text = "成坯数";
  642. treeNode62.Name = "d18";
  643. treeNode62.Text = "交坯数";
  644. treeNode63.Name = "节点cd18";
  645. treeNode63.Text = "18日";
  646. treeNode64.Name = "c19";
  647. treeNode64.Text = "成坯数";
  648. treeNode65.Name = "d19";
  649. treeNode65.Text = "交坯数";
  650. treeNode66.Name = "节点cd19";
  651. treeNode66.Text = "19日";
  652. treeNode67.Name = "c20";
  653. treeNode67.Text = "成坯数";
  654. treeNode68.Name = "d20";
  655. treeNode68.Text = "交坯数";
  656. treeNode69.Name = "节点cd20";
  657. treeNode69.Text = "20日";
  658. treeNode70.Name = "c21";
  659. treeNode70.Text = "成坯数";
  660. treeNode71.Name = "d21";
  661. treeNode71.Text = "交坯数";
  662. treeNode72.Name = "节点cd21";
  663. treeNode72.Text = "21日";
  664. treeNode73.Name = "c22";
  665. treeNode73.Text = "成坯数";
  666. treeNode74.Name = "d22";
  667. treeNode74.Text = "交坯数";
  668. treeNode75.Name = "节点cd22";
  669. treeNode75.Text = "22日";
  670. treeNode76.Name = "c23";
  671. treeNode76.Text = "成坯数";
  672. treeNode77.Name = "d23";
  673. treeNode77.Text = "交坯数";
  674. treeNode78.Name = "节点cd23";
  675. treeNode78.Text = "23日";
  676. treeNode79.Name = "c24";
  677. treeNode79.Text = "成坯数";
  678. treeNode80.Name = "d24";
  679. treeNode80.Text = "交坯数";
  680. treeNode81.Name = "节点cd24";
  681. treeNode81.Text = "24日";
  682. treeNode82.Name = "c25";
  683. treeNode82.Text = "成坯数";
  684. treeNode83.Name = "d25";
  685. treeNode83.Text = "交坯数";
  686. treeNode84.Name = "节点cd25";
  687. treeNode84.Text = "25日";
  688. treeNode85.Name = "c26";
  689. treeNode85.Text = "成坯数";
  690. treeNode86.Name = "d26";
  691. treeNode86.Text = "交坯数";
  692. treeNode87.Name = "节点cd26";
  693. treeNode87.Text = "26日";
  694. treeNode88.Name = "c27";
  695. treeNode88.Text = "成坯数";
  696. treeNode89.Name = "d27";
  697. treeNode89.Text = "交坯数";
  698. treeNode90.Name = "节点cd27";
  699. treeNode90.Text = "27日";
  700. treeNode91.Name = "c28";
  701. treeNode91.Text = "成坯数";
  702. treeNode92.Name = "d28";
  703. treeNode92.Text = "交坯数";
  704. treeNode93.Name = "节点cd28";
  705. treeNode93.Text = "28日";
  706. treeNode94.Name = "c29";
  707. treeNode94.Text = "成坯数";
  708. treeNode95.Name = "d29";
  709. treeNode95.Text = "交坯数";
  710. treeNode96.Name = "节点cd29";
  711. treeNode96.Text = "29日";
  712. treeNode97.Name = "c30";
  713. treeNode97.Text = "成坯数";
  714. treeNode98.Name = "d30";
  715. treeNode98.Text = "交坯数";
  716. treeNode99.Name = "节点cd30";
  717. treeNode99.Text = "30日";
  718. treeNode100.Name = "c31";
  719. treeNode100.Text = "成坯数";
  720. treeNode101.Name = "d31";
  721. treeNode101.Text = "交坯数";
  722. treeNode102.Name = "节点cd31";
  723. treeNode102.Text = "31日";
  724. this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  725. treeNode1,
  726. treeNode2,
  727. treeNode3,
  728. treeNode4,
  729. treeNode5,
  730. treeNode6,
  731. treeNode7,
  732. treeNode8,
  733. treeNode9,
  734. treeNode12,
  735. treeNode15,
  736. treeNode18,
  737. treeNode21,
  738. treeNode24,
  739. treeNode27,
  740. treeNode30,
  741. treeNode33,
  742. treeNode36,
  743. treeNode39,
  744. treeNode42,
  745. treeNode45,
  746. treeNode48,
  747. treeNode51,
  748. treeNode54,
  749. treeNode57,
  750. treeNode60,
  751. treeNode63,
  752. treeNode66,
  753. treeNode69,
  754. treeNode72,
  755. treeNode75,
  756. treeNode78,
  757. treeNode81,
  758. treeNode84,
  759. treeNode87,
  760. treeNode90,
  761. treeNode93,
  762. treeNode96,
  763. treeNode99,
  764. treeNode102});
  765. this.treeView1.Size = new System.Drawing.Size(121, 97);
  766. this.treeView1.TabIndex = 0;
  767. //
  768. // tsrOperate
  769. //
  770. this.tsrOperate.AutoSize = false;
  771. this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
  772. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  773. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  774. this.tsbtnAdaptive,
  775. this.tsbtnClose});
  776. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  777. this.tsrOperate.Name = "tsrOperate";
  778. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  779. this.tsrOperate.ShowItemToolTips = false;
  780. this.tsrOperate.Size = new System.Drawing.Size(1043, 35);
  781. this.tsrOperate.TabIndex = 33;
  782. this.tsrOperate.Text = "toolStrip1";
  783. //
  784. // tsbtnAdaptive
  785. //
  786. this.tsbtnAdaptive.AutoSize = false;
  787. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  788. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  789. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  790. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  791. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  792. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  793. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  794. //
  795. // tsbtnClose
  796. //
  797. this.tsbtnClose.AutoSize = false;
  798. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  799. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  800. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  801. this.tsbtnClose.Name = "tsbtnClose";
  802. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  803. this.tsbtnClose.Text = "关闭(&X)";
  804. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  805. //
  806. // gbxCondition
  807. //
  808. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  809. | System.Windows.Forms.AnchorStyles.Right)));
  810. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  811. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  812. this.gbxCondition.Controls.Add(this.lblGoodsType);
  813. this.gbxCondition.Controls.Add(this.scbGoodsType);
  814. this.gbxCondition.Controls.Add(this.txtGroutingUserCode);
  815. this.gbxCondition.Controls.Add(this.c_Label3);
  816. this.gbxCondition.Controls.Add(this.txtGroutingLineCode);
  817. this.gbxCondition.Controls.Add(this.c_Label2);
  818. this.gbxCondition.Controls.Add(this.txtGoodCode);
  819. this.gbxCondition.Controls.Add(this.c_Label1);
  820. this.gbxCondition.Controls.Add(this.c_Label4);
  821. this.gbxCondition.Controls.Add(this.dtpGDateStart);
  822. this.gbxCondition.Controls.Add(this.btnClearCondition);
  823. this.gbxCondition.Controls.Add(this.btnSearch);
  824. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  825. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  826. this.gbxCondition.IsMustInput = false;
  827. this.gbxCondition.Location = new System.Drawing.Point(0, 38);
  828. this.gbxCondition.Name = "gbxCondition";
  829. this.gbxCondition.OriginalHeight = -1;
  830. this.gbxCondition.Size = new System.Drawing.Size(1031, 75);
  831. this.gbxCondition.TabIndex = 0;
  832. this.gbxCondition.TabStop = false;
  833. this.gbxCondition.Text = "查询条件 ▼";
  834. //
  835. // lblGoodsType
  836. //
  837. this.lblGoodsType.AutoSize = true;
  838. this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
  839. this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  840. this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
  841. this.lblGoodsType.Location = new System.Drawing.Point(360, 51);
  842. this.lblGoodsType.Name = "lblGoodsType";
  843. this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
  844. this.lblGoodsType.TabIndex = 23;
  845. this.lblGoodsType.Text = "产品类别";
  846. //
  847. // scbGoodsType
  848. //
  849. this.scbGoodsType.CheckedData = null;
  850. this.scbGoodsType.IsOnlyDisplayEnd = false;
  851. this.scbGoodsType.Location = new System.Drawing.Point(419, 47);
  852. this.scbGoodsType.Name = "scbGoodsType";
  853. this.scbGoodsType.Size = new System.Drawing.Size(120, 21);
  854. this.scbGoodsType.TabIndex = 22;
  855. //
  856. // txtGroutingUserCode
  857. //
  858. this.txtGroutingUserCode.BackColor = System.Drawing.SystemColors.Window;
  859. this.txtGroutingUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  860. this.txtGroutingUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  861. this.txtGroutingUserCode.ErrorMessage = "";
  862. this.txtGroutingUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  863. this.txtGroutingUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  864. this.txtGroutingUserCode.Location = new System.Drawing.Point(419, 20);
  865. this.txtGroutingUserCode.Name = "txtGroutingUserCode";
  866. this.txtGroutingUserCode.Size = new System.Drawing.Size(120, 21);
  867. this.txtGroutingUserCode.TabIndex = 5;
  868. this.txtGroutingUserCode.TextValue = "";
  869. //
  870. // c_Label3
  871. //
  872. this.c_Label3.AutoSize = true;
  873. this.c_Label3.BackColor = System.Drawing.Color.Transparent;
  874. this.c_Label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  875. this.c_Label3.ForeColor = System.Drawing.SystemColors.ControlText;
  876. this.c_Label3.Location = new System.Drawing.Point(360, 24);
  877. this.c_Label3.Name = "c_Label3";
  878. this.c_Label3.Size = new System.Drawing.Size(53, 12);
  879. this.c_Label3.TabIndex = 4;
  880. this.c_Label3.Text = "成型工号";
  881. //
  882. // txtGroutingLineCode
  883. //
  884. this.txtGroutingLineCode.BackColor = System.Drawing.SystemColors.Window;
  885. this.txtGroutingLineCode.BackgroundColor = System.Drawing.SystemColors.Window;
  886. this.txtGroutingLineCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  887. this.txtGroutingLineCode.ErrorMessage = "";
  888. this.txtGroutingLineCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  889. this.txtGroutingLineCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  890. this.txtGroutingLineCode.Location = new System.Drawing.Point(234, 20);
  891. this.txtGroutingLineCode.Name = "txtGroutingLineCode";
  892. this.txtGroutingLineCode.Size = new System.Drawing.Size(120, 21);
  893. this.txtGroutingLineCode.TabIndex = 3;
  894. this.txtGroutingLineCode.TextValue = "";
  895. //
  896. // c_Label2
  897. //
  898. this.c_Label2.AutoSize = true;
  899. this.c_Label2.BackColor = System.Drawing.Color.Transparent;
  900. this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  901. this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
  902. this.c_Label2.Location = new System.Drawing.Point(163, 24);
  903. this.c_Label2.Name = "c_Label2";
  904. this.c_Label2.Size = new System.Drawing.Size(65, 12);
  905. this.c_Label2.TabIndex = 2;
  906. this.c_Label2.Text = "成型线编码";
  907. //
  908. // txtGoodCode
  909. //
  910. this.txtGoodCode.BackColor = System.Drawing.SystemColors.Window;
  911. this.txtGoodCode.BackgroundColor = System.Drawing.SystemColors.Window;
  912. this.txtGoodCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  913. this.txtGoodCode.ErrorMessage = "";
  914. this.txtGoodCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  915. this.txtGoodCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  916. this.txtGoodCode.Location = new System.Drawing.Point(234, 47);
  917. this.txtGoodCode.Name = "txtGoodCode";
  918. this.txtGoodCode.Size = new System.Drawing.Size(120, 21);
  919. this.txtGoodCode.TabIndex = 7;
  920. this.txtGoodCode.TextValue = "";
  921. //
  922. // c_Label1
  923. //
  924. this.c_Label1.AutoSize = true;
  925. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  926. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  927. this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  928. this.c_Label1.Location = new System.Drawing.Point(12, 24);
  929. this.c_Label1.Name = "c_Label1";
  930. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  931. this.c_Label1.TabIndex = 0;
  932. this.c_Label1.Text = "分析月份";
  933. //
  934. // c_Label4
  935. //
  936. this.c_Label4.AutoSize = true;
  937. this.c_Label4.BackColor = System.Drawing.Color.Transparent;
  938. this.c_Label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  939. this.c_Label4.ForeColor = System.Drawing.SystemColors.ControlText;
  940. this.c_Label4.Location = new System.Drawing.Point(174, 51);
  941. this.c_Label4.Name = "c_Label4";
  942. this.c_Label4.Size = new System.Drawing.Size(53, 12);
  943. this.c_Label4.TabIndex = 6;
  944. this.c_Label4.Text = "产品编码";
  945. //
  946. // dtpGDateStart
  947. //
  948. this.dtpGDateStart.CustomFormat = "yyyy-MM";
  949. this.dtpGDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  950. this.dtpGDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  951. this.dtpGDateStart.Location = new System.Drawing.Point(71, 20);
  952. this.dtpGDateStart.Name = "dtpGDateStart";
  953. this.dtpGDateStart.ShowUpDown = true;
  954. this.dtpGDateStart.Size = new System.Drawing.Size(86, 21);
  955. this.dtpGDateStart.TabIndex = 1;
  956. //
  957. // btnClearCondition
  958. //
  959. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  960. this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
  961. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  962. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  963. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  964. this.btnClearCondition.Location = new System.Drawing.Point(940, 38);
  965. this.btnClearCondition.Name = "btnClearCondition";
  966. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  967. this.btnClearCondition.TabIndex = 10;
  968. this.btnClearCondition.Text = "清空条件(&C)";
  969. this.btnClearCondition.UseVisualStyleBackColor = true;
  970. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  971. //
  972. // btnSearch
  973. //
  974. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  975. this.btnSearch.BackColor = System.Drawing.Color.Transparent;
  976. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  977. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  978. this.btnSearch.ForeColor = System.Drawing.Color.White;
  979. this.btnSearch.Location = new System.Drawing.Point(849, 38);
  980. this.btnSearch.Name = "btnSearch";
  981. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  982. this.btnSearch.TabIndex = 9;
  983. this.btnSearch.Text = "查询(&Q)";
  984. this.btnSearch.UseVisualStyleBackColor = true;
  985. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  986. //
  987. // dgvRptProcedure
  988. //
  989. this.dgvRptProcedure.AllowUserToAddRows = false;
  990. this.dgvRptProcedure.AllowUserToDeleteRows = false;
  991. this.dgvRptProcedure.AllowUserToModifyRows = true;
  992. this.dgvRptProcedure.AllowUserToSortRows = false;
  993. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  994. this.dgvRptProcedure.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  995. this.dgvRptProcedure.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  996. this.dgvRptProcedure.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  997. this.dgvRptProcedure.CellHeight = 23;
  998. this.dgvRptProcedure.ChildNodeColumnName = null;
  999. this.dgvRptProcedure.ChildNodeColumnText = null;
  1000. this.dgvRptProcedure.ColumnDeep = 2;
  1001. this.dgvRptProcedure.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1002. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1003. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1004. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1005. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1006. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1007. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1008. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1009. this.dgvRptProcedure.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1010. this.dgvRptProcedure.ColumnHeadersHeight = 46;
  1011. this.dgvRptProcedure.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1012. this.dgvRptProcedure.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1013. this.BuildingNo,
  1014. this.FloorNo,
  1015. this.GroutingLineNo,
  1016. this.groutinglinecode,
  1017. this.usercode,
  1018. this.goodscode,
  1019. this.GOODSSPECIFICATION,
  1020. this.goodstypename,
  1021. this.MouldQuantity,
  1022. this.c01,
  1023. this.d01,
  1024. this.c02,
  1025. this.d02,
  1026. this.c03,
  1027. this.d03,
  1028. this.c04,
  1029. this.d04,
  1030. this.c05,
  1031. this.d05,
  1032. this.c06,
  1033. this.d06,
  1034. this.c07,
  1035. this.d07,
  1036. this.c08,
  1037. this.d08,
  1038. this.c09,
  1039. this.d09,
  1040. this.c10,
  1041. this.d10,
  1042. this.c11,
  1043. this.d11,
  1044. this.c12,
  1045. this.d12,
  1046. this.c13,
  1047. this.d13,
  1048. this.c14,
  1049. this.d14,
  1050. this.c15,
  1051. this.d15,
  1052. this.c16,
  1053. this.d16,
  1054. this.c17,
  1055. this.d17,
  1056. this.c18,
  1057. this.d18,
  1058. this.c19,
  1059. this.d19,
  1060. this.c20,
  1061. this.d20,
  1062. this.c21,
  1063. this.d21,
  1064. this.c22,
  1065. this.d22,
  1066. this.c23,
  1067. this.d23,
  1068. this.c24,
  1069. this.d24,
  1070. this.c25,
  1071. this.d25,
  1072. this.c26,
  1073. this.d26,
  1074. this.c27,
  1075. this.d27,
  1076. this.c28,
  1077. this.d28,
  1078. this.c29,
  1079. this.d29,
  1080. this.c30,
  1081. this.d30,
  1082. this.c31,
  1083. this.d31});
  1084. this.dgvRptProcedure.ColumnTreeView = new System.Windows.Forms.TreeView[] {
  1085. this.treeView1};
  1086. this.dgvRptProcedure.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)));
  1087. this.dgvRptProcedure.Dock = System.Windows.Forms.DockStyle.Fill;
  1088. this.dgvRptProcedure.DynamicColumnName = "";
  1089. this.dgvRptProcedure.EnableHeadersVisualStyles = false;
  1090. this.dgvRptProcedure.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1091. this.dgvRptProcedure.FormatQuantityColumns = null;
  1092. this.dgvRptProcedure.HorizontalMergeColumn = null;
  1093. this.dgvRptProcedure.IsAutoCountSum = false;
  1094. this.dgvRptProcedure.IsAutoResizeColumns = false;
  1095. this.dgvRptProcedure.IsClickF12 = false;
  1096. this.dgvRptProcedure.IsOpenMergeCellFlag = false;
  1097. this.dgvRptProcedure.IsSubTotalFlag = false;
  1098. this.dgvRptProcedure.IsTopDeep = false;
  1099. this.dgvRptProcedure.Location = new System.Drawing.Point(0, 0);
  1100. this.dgvRptProcedure.Margin = new System.Windows.Forms.Padding(0);
  1101. this.dgvRptProcedure.MergeColumnNames = null;
  1102. this.dgvRptProcedure.MergeDetailColumnNames = null;
  1103. this.dgvRptProcedure.MergeDetailOnlyColumn = null;
  1104. this.dgvRptProcedure.MergeOnlyColumn = null;
  1105. this.dgvRptProcedure.MultiSelect = false;
  1106. this.dgvRptProcedure.Name = "dgvRptProcedure";
  1107. this.dgvRptProcedure.ReadOnly = true;
  1108. this.dgvRptProcedure.RefreshAtHscroll = false;
  1109. this.dgvRptProcedure.RowHeadersWidth = 50;
  1110. this.dgvRptProcedure.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1111. dataGridViewCellStyle66.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1112. this.dgvRptProcedure.RowsDefaultCellStyle = dataGridViewCellStyle66;
  1113. this.dgvRptProcedure.RowTemplate.Height = 21;
  1114. this.dgvRptProcedure.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1115. this.dgvRptProcedure.Size = new System.Drawing.Size(1023, 341);
  1116. this.dgvRptProcedure.SortOrderColumnName = null;
  1117. this.dgvRptProcedure.TabIndex = 1;
  1118. this.dgvRptProcedure.Tag = true;
  1119. this.dgvRptProcedure.TotalSumColumns = null;
  1120. this.dgvRptProcedure.ViewRowFilter = "";
  1121. //
  1122. // tabControl1
  1123. //
  1124. this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1125. | System.Windows.Forms.AnchorStyles.Left)
  1126. | System.Windows.Forms.AnchorStyles.Right)));
  1127. this.tabControl1.Controls.Add(this.tabPage1);
  1128. this.tabControl1.Controls.Add(this.tabPage2);
  1129. this.tabControl1.Controls.Add(this.tabPage3);
  1130. this.tabControl1.Location = new System.Drawing.Point(0, 119);
  1131. this.tabControl1.Name = "tabControl1";
  1132. this.tabControl1.SelectedIndex = 0;
  1133. this.tabControl1.Size = new System.Drawing.Size(1031, 367);
  1134. this.tabControl1.TabIndex = 34;
  1135. //
  1136. // tabPage1
  1137. //
  1138. this.tabPage1.Controls.Add(this.dgvRptProcedure);
  1139. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  1140. this.tabPage1.Name = "tabPage1";
  1141. this.tabPage1.Size = new System.Drawing.Size(1023, 341);
  1142. this.tabPage1.TabIndex = 0;
  1143. this.tabPage1.Text = "成型工注浆成交数";
  1144. this.tabPage1.UseVisualStyleBackColor = true;
  1145. //
  1146. // tabPage2
  1147. //
  1148. this.tabPage2.Controls.Add(this.dgvGC);
  1149. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  1150. this.tabPage2.Name = "tabPage2";
  1151. this.tabPage2.Size = new System.Drawing.Size(1023, 341);
  1152. this.tabPage2.TabIndex = 1;
  1153. this.tabPage2.Text = "成型工注浆成坯数";
  1154. this.tabPage2.UseVisualStyleBackColor = true;
  1155. //
  1156. // dgvGC
  1157. //
  1158. this.dgvGC.AllowUserToAddRows = false;
  1159. this.dgvGC.AllowUserToDeleteRows = false;
  1160. this.dgvGC.AllowUserToModifyRows = true;
  1161. this.dgvGC.AllowUserToSortRows = false;
  1162. dataGridViewCellStyle67.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1163. this.dgvGC.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle67;
  1164. this.dgvGC.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1165. this.dgvGC.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1166. this.dgvGC.CellHeight = 23;
  1167. this.dgvGC.ChildNodeColumnName = null;
  1168. this.dgvGC.ChildNodeColumnText = null;
  1169. this.dgvGC.ColumnDeep = 1;
  1170. this.dgvGC.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1171. dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1172. dataGridViewCellStyle68.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1173. dataGridViewCellStyle68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1174. dataGridViewCellStyle68.ForeColor = System.Drawing.Color.White;
  1175. dataGridViewCellStyle68.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1176. dataGridViewCellStyle68.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1177. dataGridViewCellStyle68.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1178. this.dgvGC.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle68;
  1179. this.dgvGC.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1180. this.dgvGC.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1181. this.dataGridViewTextBoxColumn1,
  1182. this.dataGridViewTextBoxColumn2,
  1183. this.dataGridViewTextBoxColumn3,
  1184. this.dataGridViewTextBoxColumn4,
  1185. this.dataGridViewTextBoxColumn5,
  1186. this.dataGridViewTextBoxColumn6,
  1187. this.dataGridViewTextBoxColumn7,
  1188. this.dataGridViewTextBoxColumn8,
  1189. this.dataGridViewTextBoxColumn9,
  1190. this.dataGridViewTextBoxColumn10,
  1191. this.dataGridViewTextBoxColumn12,
  1192. this.dataGridViewTextBoxColumn14,
  1193. this.dataGridViewTextBoxColumn16,
  1194. this.dataGridViewTextBoxColumn18,
  1195. this.dataGridViewTextBoxColumn20,
  1196. this.dataGridViewTextBoxColumn22,
  1197. this.dataGridViewTextBoxColumn24,
  1198. this.dataGridViewTextBoxColumn26,
  1199. this.dataGridViewTextBoxColumn28,
  1200. this.dataGridViewTextBoxColumn30,
  1201. this.dataGridViewTextBoxColumn32,
  1202. this.dataGridViewTextBoxColumn34,
  1203. this.dataGridViewTextBoxColumn36,
  1204. this.dataGridViewTextBoxColumn38,
  1205. this.dataGridViewTextBoxColumn40,
  1206. this.dataGridViewTextBoxColumn42,
  1207. this.dataGridViewTextBoxColumn44,
  1208. this.dataGridViewTextBoxColumn46,
  1209. this.dataGridViewTextBoxColumn48,
  1210. this.dataGridViewTextBoxColumn50,
  1211. this.dataGridViewTextBoxColumn52,
  1212. this.dataGridViewTextBoxColumn54,
  1213. this.dataGridViewTextBoxColumn56,
  1214. this.dataGridViewTextBoxColumn58,
  1215. this.dataGridViewTextBoxColumn60,
  1216. this.dataGridViewTextBoxColumn62,
  1217. this.dataGridViewTextBoxColumn64,
  1218. this.dataGridViewTextBoxColumn66,
  1219. this.dataGridViewTextBoxColumn68,
  1220. this.dataGridViewTextBoxColumn70});
  1221. this.dgvGC.ColumnTreeView = null;
  1222. this.dgvGC.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)));
  1223. this.dgvGC.Dock = System.Windows.Forms.DockStyle.Fill;
  1224. this.dgvGC.DynamicColumnName = "";
  1225. this.dgvGC.EnableHeadersVisualStyles = false;
  1226. this.dgvGC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1227. this.dgvGC.FormatQuantityColumns = null;
  1228. this.dgvGC.HorizontalMergeColumn = null;
  1229. this.dgvGC.IsAutoCountSum = false;
  1230. this.dgvGC.IsAutoResizeColumns = false;
  1231. this.dgvGC.IsClickF12 = false;
  1232. this.dgvGC.IsOpenMergeCellFlag = false;
  1233. this.dgvGC.IsSubTotalFlag = false;
  1234. this.dgvGC.IsTopDeep = false;
  1235. this.dgvGC.Location = new System.Drawing.Point(0, 0);
  1236. this.dgvGC.Margin = new System.Windows.Forms.Padding(0);
  1237. this.dgvGC.MergeColumnNames = null;
  1238. this.dgvGC.MergeDetailColumnNames = null;
  1239. this.dgvGC.MergeDetailOnlyColumn = null;
  1240. this.dgvGC.MergeOnlyColumn = null;
  1241. this.dgvGC.MultiSelect = false;
  1242. this.dgvGC.Name = "dgvGC";
  1243. this.dgvGC.ReadOnly = true;
  1244. this.dgvGC.RefreshAtHscroll = false;
  1245. this.dgvGC.RowHeadersWidth = 50;
  1246. this.dgvGC.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1247. dataGridViewCellStyle101.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1248. this.dgvGC.RowsDefaultCellStyle = dataGridViewCellStyle101;
  1249. this.dgvGC.RowTemplate.Height = 21;
  1250. this.dgvGC.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1251. this.dgvGC.Size = new System.Drawing.Size(1023, 341);
  1252. this.dgvGC.SortOrderColumnName = null;
  1253. this.dgvGC.TabIndex = 2;
  1254. this.dgvGC.Tag = true;
  1255. this.dgvGC.TotalSumColumns = null;
  1256. this.dgvGC.ViewRowFilter = "";
  1257. //
  1258. // dataGridViewTextBoxColumn1
  1259. //
  1260. this.dataGridViewTextBoxColumn1.DataPropertyName = "BuildingNo";
  1261. this.dataGridViewTextBoxColumn1.HeaderText = "楼号";
  1262. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1263. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  1264. //
  1265. // dataGridViewTextBoxColumn2
  1266. //
  1267. this.dataGridViewTextBoxColumn2.DataPropertyName = "FloorNo";
  1268. this.dataGridViewTextBoxColumn2.HeaderText = "楼层";
  1269. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1270. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  1271. //
  1272. // dataGridViewTextBoxColumn3
  1273. //
  1274. this.dataGridViewTextBoxColumn3.DataPropertyName = "GroutingLineNo";
  1275. this.dataGridViewTextBoxColumn3.HeaderText = "线号";
  1276. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1277. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  1278. //
  1279. // dataGridViewTextBoxColumn4
  1280. //
  1281. this.dataGridViewTextBoxColumn4.DataPropertyName = "groutinglinecode";
  1282. this.dataGridViewTextBoxColumn4.HeaderText = "成型线编码";
  1283. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  1284. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  1285. //
  1286. // dataGridViewTextBoxColumn5
  1287. //
  1288. this.dataGridViewTextBoxColumn5.DataPropertyName = "usercode";
  1289. this.dataGridViewTextBoxColumn5.HeaderText = "成型工号";
  1290. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  1291. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  1292. //
  1293. // dataGridViewTextBoxColumn6
  1294. //
  1295. this.dataGridViewTextBoxColumn6.DataPropertyName = "goodscode";
  1296. this.dataGridViewTextBoxColumn6.HeaderText = "产品编码";
  1297. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  1298. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  1299. //
  1300. // dataGridViewTextBoxColumn7
  1301. //
  1302. this.dataGridViewTextBoxColumn7.DataPropertyName = "GOODSSPECIFICATION";
  1303. this.dataGridViewTextBoxColumn7.HeaderText = "产品规格";
  1304. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1305. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  1306. //
  1307. // dataGridViewTextBoxColumn8
  1308. //
  1309. this.dataGridViewTextBoxColumn8.DataPropertyName = "goodstypename";
  1310. this.dataGridViewTextBoxColumn8.HeaderText = "产品类别";
  1311. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1312. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  1313. //
  1314. // dataGridViewTextBoxColumn9
  1315. //
  1316. this.dataGridViewTextBoxColumn9.DataPropertyName = "MouldQuantity";
  1317. dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1318. this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle69;
  1319. this.dataGridViewTextBoxColumn9.HeaderText = "模具数";
  1320. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1321. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  1322. //
  1323. // dataGridViewTextBoxColumn10
  1324. //
  1325. this.dataGridViewTextBoxColumn10.DataPropertyName = "c01";
  1326. dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1327. this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle70;
  1328. this.dataGridViewTextBoxColumn10.HeaderText = "1日";
  1329. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1330. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  1331. //
  1332. // dataGridViewTextBoxColumn12
  1333. //
  1334. this.dataGridViewTextBoxColumn12.DataPropertyName = "c02";
  1335. dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1336. this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle71;
  1337. this.dataGridViewTextBoxColumn12.HeaderText = "2日";
  1338. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1339. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  1340. //
  1341. // dataGridViewTextBoxColumn14
  1342. //
  1343. this.dataGridViewTextBoxColumn14.DataPropertyName = "c03";
  1344. dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1345. this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle72;
  1346. this.dataGridViewTextBoxColumn14.HeaderText = "3日";
  1347. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1348. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  1349. //
  1350. // dataGridViewTextBoxColumn16
  1351. //
  1352. this.dataGridViewTextBoxColumn16.DataPropertyName = "c04";
  1353. dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1354. this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle73;
  1355. this.dataGridViewTextBoxColumn16.HeaderText = "4日";
  1356. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1357. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  1358. //
  1359. // dataGridViewTextBoxColumn18
  1360. //
  1361. this.dataGridViewTextBoxColumn18.DataPropertyName = "c05";
  1362. dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1363. this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle74;
  1364. this.dataGridViewTextBoxColumn18.HeaderText = "5日";
  1365. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1366. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  1367. //
  1368. // dataGridViewTextBoxColumn20
  1369. //
  1370. this.dataGridViewTextBoxColumn20.DataPropertyName = "c06";
  1371. dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1372. this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle75;
  1373. this.dataGridViewTextBoxColumn20.HeaderText = "6日";
  1374. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1375. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  1376. //
  1377. // dataGridViewTextBoxColumn22
  1378. //
  1379. this.dataGridViewTextBoxColumn22.DataPropertyName = "c07";
  1380. dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1381. this.dataGridViewTextBoxColumn22.DefaultCellStyle = dataGridViewCellStyle76;
  1382. this.dataGridViewTextBoxColumn22.HeaderText = "7日";
  1383. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1384. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1385. //
  1386. // dataGridViewTextBoxColumn24
  1387. //
  1388. this.dataGridViewTextBoxColumn24.DataPropertyName = "c08";
  1389. dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1390. this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle77;
  1391. this.dataGridViewTextBoxColumn24.HeaderText = "8日";
  1392. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1393. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  1394. //
  1395. // dataGridViewTextBoxColumn26
  1396. //
  1397. this.dataGridViewTextBoxColumn26.DataPropertyName = "c09";
  1398. dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1399. this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle78;
  1400. this.dataGridViewTextBoxColumn26.HeaderText = "9日";
  1401. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1402. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  1403. //
  1404. // dataGridViewTextBoxColumn28
  1405. //
  1406. this.dataGridViewTextBoxColumn28.DataPropertyName = "c10";
  1407. dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1408. this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle79;
  1409. this.dataGridViewTextBoxColumn28.HeaderText = "10日";
  1410. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1411. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  1412. //
  1413. // dataGridViewTextBoxColumn30
  1414. //
  1415. this.dataGridViewTextBoxColumn30.DataPropertyName = "c11";
  1416. dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1417. this.dataGridViewTextBoxColumn30.DefaultCellStyle = dataGridViewCellStyle80;
  1418. this.dataGridViewTextBoxColumn30.HeaderText = "11日";
  1419. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  1420. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  1421. //
  1422. // dataGridViewTextBoxColumn32
  1423. //
  1424. this.dataGridViewTextBoxColumn32.DataPropertyName = "c12";
  1425. dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1426. this.dataGridViewTextBoxColumn32.DefaultCellStyle = dataGridViewCellStyle81;
  1427. this.dataGridViewTextBoxColumn32.HeaderText = "12日";
  1428. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  1429. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  1430. //
  1431. // dataGridViewTextBoxColumn34
  1432. //
  1433. this.dataGridViewTextBoxColumn34.DataPropertyName = "c13";
  1434. dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1435. this.dataGridViewTextBoxColumn34.DefaultCellStyle = dataGridViewCellStyle82;
  1436. this.dataGridViewTextBoxColumn34.HeaderText = "13日";
  1437. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  1438. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  1439. //
  1440. // dataGridViewTextBoxColumn36
  1441. //
  1442. this.dataGridViewTextBoxColumn36.DataPropertyName = "c14";
  1443. dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1444. this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle83;
  1445. this.dataGridViewTextBoxColumn36.HeaderText = "14日";
  1446. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1447. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1448. //
  1449. // dataGridViewTextBoxColumn38
  1450. //
  1451. this.dataGridViewTextBoxColumn38.DataPropertyName = "c15";
  1452. dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1453. this.dataGridViewTextBoxColumn38.DefaultCellStyle = dataGridViewCellStyle84;
  1454. this.dataGridViewTextBoxColumn38.HeaderText = "15日";
  1455. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1456. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  1457. //
  1458. // dataGridViewTextBoxColumn40
  1459. //
  1460. this.dataGridViewTextBoxColumn40.DataPropertyName = "c16";
  1461. dataGridViewCellStyle85.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1462. this.dataGridViewTextBoxColumn40.DefaultCellStyle = dataGridViewCellStyle85;
  1463. this.dataGridViewTextBoxColumn40.HeaderText = "16日";
  1464. this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
  1465. this.dataGridViewTextBoxColumn40.ReadOnly = true;
  1466. //
  1467. // dataGridViewTextBoxColumn42
  1468. //
  1469. this.dataGridViewTextBoxColumn42.DataPropertyName = "c17";
  1470. dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1471. this.dataGridViewTextBoxColumn42.DefaultCellStyle = dataGridViewCellStyle86;
  1472. this.dataGridViewTextBoxColumn42.HeaderText = "17日";
  1473. this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
  1474. this.dataGridViewTextBoxColumn42.ReadOnly = true;
  1475. //
  1476. // dataGridViewTextBoxColumn44
  1477. //
  1478. this.dataGridViewTextBoxColumn44.DataPropertyName = "c18";
  1479. dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1480. this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle87;
  1481. this.dataGridViewTextBoxColumn44.HeaderText = "18日";
  1482. this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
  1483. this.dataGridViewTextBoxColumn44.ReadOnly = true;
  1484. //
  1485. // dataGridViewTextBoxColumn46
  1486. //
  1487. this.dataGridViewTextBoxColumn46.DataPropertyName = "c19";
  1488. dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1489. this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle88;
  1490. this.dataGridViewTextBoxColumn46.HeaderText = "19日";
  1491. this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
  1492. this.dataGridViewTextBoxColumn46.ReadOnly = true;
  1493. //
  1494. // dataGridViewTextBoxColumn48
  1495. //
  1496. this.dataGridViewTextBoxColumn48.DataPropertyName = "c20";
  1497. dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1498. this.dataGridViewTextBoxColumn48.DefaultCellStyle = dataGridViewCellStyle89;
  1499. this.dataGridViewTextBoxColumn48.HeaderText = "20日";
  1500. this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
  1501. this.dataGridViewTextBoxColumn48.ReadOnly = true;
  1502. //
  1503. // dataGridViewTextBoxColumn50
  1504. //
  1505. this.dataGridViewTextBoxColumn50.DataPropertyName = "c21";
  1506. dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1507. this.dataGridViewTextBoxColumn50.DefaultCellStyle = dataGridViewCellStyle90;
  1508. this.dataGridViewTextBoxColumn50.HeaderText = "21日";
  1509. this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
  1510. this.dataGridViewTextBoxColumn50.ReadOnly = true;
  1511. //
  1512. // dataGridViewTextBoxColumn52
  1513. //
  1514. this.dataGridViewTextBoxColumn52.DataPropertyName = "c22";
  1515. dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1516. this.dataGridViewTextBoxColumn52.DefaultCellStyle = dataGridViewCellStyle91;
  1517. this.dataGridViewTextBoxColumn52.HeaderText = "22日";
  1518. this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
  1519. this.dataGridViewTextBoxColumn52.ReadOnly = true;
  1520. //
  1521. // dataGridViewTextBoxColumn54
  1522. //
  1523. this.dataGridViewTextBoxColumn54.DataPropertyName = "c23";
  1524. dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1525. this.dataGridViewTextBoxColumn54.DefaultCellStyle = dataGridViewCellStyle92;
  1526. this.dataGridViewTextBoxColumn54.HeaderText = "23日";
  1527. this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
  1528. this.dataGridViewTextBoxColumn54.ReadOnly = true;
  1529. //
  1530. // dataGridViewTextBoxColumn56
  1531. //
  1532. this.dataGridViewTextBoxColumn56.DataPropertyName = "c24";
  1533. dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1534. this.dataGridViewTextBoxColumn56.DefaultCellStyle = dataGridViewCellStyle93;
  1535. this.dataGridViewTextBoxColumn56.HeaderText = "24日";
  1536. this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
  1537. this.dataGridViewTextBoxColumn56.ReadOnly = true;
  1538. //
  1539. // dataGridViewTextBoxColumn58
  1540. //
  1541. this.dataGridViewTextBoxColumn58.DataPropertyName = "c25";
  1542. dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1543. this.dataGridViewTextBoxColumn58.DefaultCellStyle = dataGridViewCellStyle94;
  1544. this.dataGridViewTextBoxColumn58.HeaderText = "25日";
  1545. this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
  1546. this.dataGridViewTextBoxColumn58.ReadOnly = true;
  1547. //
  1548. // dataGridViewTextBoxColumn60
  1549. //
  1550. this.dataGridViewTextBoxColumn60.DataPropertyName = "c26";
  1551. dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1552. this.dataGridViewTextBoxColumn60.DefaultCellStyle = dataGridViewCellStyle95;
  1553. this.dataGridViewTextBoxColumn60.HeaderText = "26日";
  1554. this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
  1555. this.dataGridViewTextBoxColumn60.ReadOnly = true;
  1556. //
  1557. // dataGridViewTextBoxColumn62
  1558. //
  1559. this.dataGridViewTextBoxColumn62.DataPropertyName = "c27";
  1560. dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1561. this.dataGridViewTextBoxColumn62.DefaultCellStyle = dataGridViewCellStyle96;
  1562. this.dataGridViewTextBoxColumn62.HeaderText = "27日";
  1563. this.dataGridViewTextBoxColumn62.Name = "dataGridViewTextBoxColumn62";
  1564. this.dataGridViewTextBoxColumn62.ReadOnly = true;
  1565. //
  1566. // dataGridViewTextBoxColumn64
  1567. //
  1568. this.dataGridViewTextBoxColumn64.DataPropertyName = "c28";
  1569. dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1570. this.dataGridViewTextBoxColumn64.DefaultCellStyle = dataGridViewCellStyle97;
  1571. this.dataGridViewTextBoxColumn64.HeaderText = "28日";
  1572. this.dataGridViewTextBoxColumn64.Name = "dataGridViewTextBoxColumn64";
  1573. this.dataGridViewTextBoxColumn64.ReadOnly = true;
  1574. //
  1575. // dataGridViewTextBoxColumn66
  1576. //
  1577. this.dataGridViewTextBoxColumn66.DataPropertyName = "c29";
  1578. dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1579. this.dataGridViewTextBoxColumn66.DefaultCellStyle = dataGridViewCellStyle98;
  1580. this.dataGridViewTextBoxColumn66.HeaderText = "29日";
  1581. this.dataGridViewTextBoxColumn66.Name = "dataGridViewTextBoxColumn66";
  1582. this.dataGridViewTextBoxColumn66.ReadOnly = true;
  1583. //
  1584. // dataGridViewTextBoxColumn68
  1585. //
  1586. this.dataGridViewTextBoxColumn68.DataPropertyName = "c30";
  1587. dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1588. this.dataGridViewTextBoxColumn68.DefaultCellStyle = dataGridViewCellStyle99;
  1589. this.dataGridViewTextBoxColumn68.HeaderText = "30日";
  1590. this.dataGridViewTextBoxColumn68.Name = "dataGridViewTextBoxColumn68";
  1591. this.dataGridViewTextBoxColumn68.ReadOnly = true;
  1592. //
  1593. // dataGridViewTextBoxColumn70
  1594. //
  1595. this.dataGridViewTextBoxColumn70.DataPropertyName = "c31";
  1596. dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1597. this.dataGridViewTextBoxColumn70.DefaultCellStyle = dataGridViewCellStyle100;
  1598. this.dataGridViewTextBoxColumn70.HeaderText = "31日";
  1599. this.dataGridViewTextBoxColumn70.Name = "dataGridViewTextBoxColumn70";
  1600. this.dataGridViewTextBoxColumn70.ReadOnly = true;
  1601. //
  1602. // tabPage3
  1603. //
  1604. this.tabPage3.Controls.Add(this.dgvGD);
  1605. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  1606. this.tabPage3.Name = "tabPage3";
  1607. this.tabPage3.Size = new System.Drawing.Size(1023, 341);
  1608. this.tabPage3.TabIndex = 2;
  1609. this.tabPage3.Text = "成型工注浆交坯数";
  1610. this.tabPage3.UseVisualStyleBackColor = true;
  1611. //
  1612. // dgvGD
  1613. //
  1614. this.dgvGD.AllowUserToAddRows = false;
  1615. this.dgvGD.AllowUserToDeleteRows = false;
  1616. this.dgvGD.AllowUserToModifyRows = true;
  1617. this.dgvGD.AllowUserToSortRows = false;
  1618. dataGridViewCellStyle102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1619. this.dgvGD.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle102;
  1620. this.dgvGD.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1621. this.dgvGD.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1622. this.dgvGD.CellHeight = 23;
  1623. this.dgvGD.ChildNodeColumnName = null;
  1624. this.dgvGD.ChildNodeColumnText = null;
  1625. this.dgvGD.ColumnDeep = 1;
  1626. this.dgvGD.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1627. dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1628. dataGridViewCellStyle103.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1629. dataGridViewCellStyle103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1630. dataGridViewCellStyle103.ForeColor = System.Drawing.Color.White;
  1631. dataGridViewCellStyle103.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1632. dataGridViewCellStyle103.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1633. dataGridViewCellStyle103.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1634. this.dgvGD.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle103;
  1635. this.dgvGD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1636. this.dgvGD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1637. this.dataGridViewTextBoxColumn11,
  1638. this.dataGridViewTextBoxColumn13,
  1639. this.dataGridViewTextBoxColumn15,
  1640. this.dataGridViewTextBoxColumn17,
  1641. this.dataGridViewTextBoxColumn19,
  1642. this.dataGridViewTextBoxColumn21,
  1643. this.dataGridViewTextBoxColumn23,
  1644. this.dataGridViewTextBoxColumn25,
  1645. this.dataGridViewTextBoxColumn27,
  1646. this.dataGridViewTextBoxColumn29,
  1647. this.dataGridViewTextBoxColumn31,
  1648. this.dataGridViewTextBoxColumn33,
  1649. this.dataGridViewTextBoxColumn35,
  1650. this.dataGridViewTextBoxColumn37,
  1651. this.dataGridViewTextBoxColumn39,
  1652. this.dataGridViewTextBoxColumn41,
  1653. this.dataGridViewTextBoxColumn43,
  1654. this.dataGridViewTextBoxColumn45,
  1655. this.dataGridViewTextBoxColumn47,
  1656. this.dataGridViewTextBoxColumn49,
  1657. this.dataGridViewTextBoxColumn51,
  1658. this.dataGridViewTextBoxColumn53,
  1659. this.dataGridViewTextBoxColumn55,
  1660. this.dataGridViewTextBoxColumn57,
  1661. this.dataGridViewTextBoxColumn59,
  1662. this.dataGridViewTextBoxColumn61,
  1663. this.dataGridViewTextBoxColumn63,
  1664. this.dataGridViewTextBoxColumn65,
  1665. this.dataGridViewTextBoxColumn67,
  1666. this.dataGridViewTextBoxColumn69,
  1667. this.dataGridViewTextBoxColumn71,
  1668. this.dataGridViewTextBoxColumn72,
  1669. this.dataGridViewTextBoxColumn73,
  1670. this.dataGridViewTextBoxColumn74,
  1671. this.dataGridViewTextBoxColumn75,
  1672. this.dataGridViewTextBoxColumn76,
  1673. this.dataGridViewTextBoxColumn77,
  1674. this.dataGridViewTextBoxColumn78,
  1675. this.dataGridViewTextBoxColumn79,
  1676. this.dataGridViewTextBoxColumn80});
  1677. this.dgvGD.ColumnTreeView = null;
  1678. this.dgvGD.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)));
  1679. this.dgvGD.Dock = System.Windows.Forms.DockStyle.Fill;
  1680. this.dgvGD.DynamicColumnName = "";
  1681. this.dgvGD.EnableHeadersVisualStyles = false;
  1682. this.dgvGD.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1683. this.dgvGD.FormatQuantityColumns = null;
  1684. this.dgvGD.HorizontalMergeColumn = null;
  1685. this.dgvGD.IsAutoCountSum = false;
  1686. this.dgvGD.IsAutoResizeColumns = false;
  1687. this.dgvGD.IsClickF12 = false;
  1688. this.dgvGD.IsOpenMergeCellFlag = false;
  1689. this.dgvGD.IsSubTotalFlag = false;
  1690. this.dgvGD.IsTopDeep = false;
  1691. this.dgvGD.Location = new System.Drawing.Point(0, 0);
  1692. this.dgvGD.Margin = new System.Windows.Forms.Padding(0);
  1693. this.dgvGD.MergeColumnNames = null;
  1694. this.dgvGD.MergeDetailColumnNames = null;
  1695. this.dgvGD.MergeDetailOnlyColumn = null;
  1696. this.dgvGD.MergeOnlyColumn = null;
  1697. this.dgvGD.MultiSelect = false;
  1698. this.dgvGD.Name = "dgvGD";
  1699. this.dgvGD.ReadOnly = true;
  1700. this.dgvGD.RefreshAtHscroll = false;
  1701. this.dgvGD.RowHeadersWidth = 50;
  1702. this.dgvGD.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1703. dataGridViewCellStyle136.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1704. this.dgvGD.RowsDefaultCellStyle = dataGridViewCellStyle136;
  1705. this.dgvGD.RowTemplate.Height = 21;
  1706. this.dgvGD.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1707. this.dgvGD.Size = new System.Drawing.Size(1023, 341);
  1708. this.dgvGD.SortOrderColumnName = null;
  1709. this.dgvGD.TabIndex = 3;
  1710. this.dgvGD.Tag = true;
  1711. this.dgvGD.TotalSumColumns = null;
  1712. this.dgvGD.ViewRowFilter = "";
  1713. //
  1714. // dataGridViewTextBoxColumn11
  1715. //
  1716. this.dataGridViewTextBoxColumn11.DataPropertyName = "BuildingNo";
  1717. this.dataGridViewTextBoxColumn11.HeaderText = "楼号";
  1718. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1719. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  1720. //
  1721. // dataGridViewTextBoxColumn13
  1722. //
  1723. this.dataGridViewTextBoxColumn13.DataPropertyName = "FloorNo";
  1724. this.dataGridViewTextBoxColumn13.HeaderText = "楼层";
  1725. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1726. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  1727. //
  1728. // dataGridViewTextBoxColumn15
  1729. //
  1730. this.dataGridViewTextBoxColumn15.DataPropertyName = "GroutingLineNo";
  1731. this.dataGridViewTextBoxColumn15.HeaderText = "线号";
  1732. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1733. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  1734. //
  1735. // dataGridViewTextBoxColumn17
  1736. //
  1737. this.dataGridViewTextBoxColumn17.DataPropertyName = "groutinglinecode";
  1738. this.dataGridViewTextBoxColumn17.HeaderText = "成型线编码";
  1739. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1740. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  1741. //
  1742. // dataGridViewTextBoxColumn19
  1743. //
  1744. this.dataGridViewTextBoxColumn19.DataPropertyName = "usercode";
  1745. this.dataGridViewTextBoxColumn19.HeaderText = "成型工号";
  1746. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1747. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  1748. //
  1749. // dataGridViewTextBoxColumn21
  1750. //
  1751. this.dataGridViewTextBoxColumn21.DataPropertyName = "goodscode";
  1752. this.dataGridViewTextBoxColumn21.HeaderText = "产品编码";
  1753. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1754. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  1755. //
  1756. // dataGridViewTextBoxColumn23
  1757. //
  1758. this.dataGridViewTextBoxColumn23.DataPropertyName = "GOODSSPECIFICATION";
  1759. this.dataGridViewTextBoxColumn23.HeaderText = "产品规格";
  1760. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1761. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1762. //
  1763. // dataGridViewTextBoxColumn25
  1764. //
  1765. this.dataGridViewTextBoxColumn25.DataPropertyName = "goodstypename";
  1766. this.dataGridViewTextBoxColumn25.HeaderText = "产品类别";
  1767. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  1768. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  1769. //
  1770. // dataGridViewTextBoxColumn27
  1771. //
  1772. this.dataGridViewTextBoxColumn27.DataPropertyName = "MouldQuantity";
  1773. dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1774. this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle104;
  1775. this.dataGridViewTextBoxColumn27.HeaderText = "模具数";
  1776. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1777. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  1778. //
  1779. // dataGridViewTextBoxColumn29
  1780. //
  1781. this.dataGridViewTextBoxColumn29.DataPropertyName = "d01";
  1782. dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1783. this.dataGridViewTextBoxColumn29.DefaultCellStyle = dataGridViewCellStyle105;
  1784. this.dataGridViewTextBoxColumn29.HeaderText = "1日";
  1785. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  1786. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  1787. //
  1788. // dataGridViewTextBoxColumn31
  1789. //
  1790. this.dataGridViewTextBoxColumn31.DataPropertyName = "d02";
  1791. dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1792. this.dataGridViewTextBoxColumn31.DefaultCellStyle = dataGridViewCellStyle106;
  1793. this.dataGridViewTextBoxColumn31.HeaderText = "2日";
  1794. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  1795. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  1796. //
  1797. // dataGridViewTextBoxColumn33
  1798. //
  1799. this.dataGridViewTextBoxColumn33.DataPropertyName = "d03";
  1800. dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1801. this.dataGridViewTextBoxColumn33.DefaultCellStyle = dataGridViewCellStyle107;
  1802. this.dataGridViewTextBoxColumn33.HeaderText = "3日";
  1803. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  1804. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  1805. //
  1806. // dataGridViewTextBoxColumn35
  1807. //
  1808. this.dataGridViewTextBoxColumn35.DataPropertyName = "d04";
  1809. dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1810. this.dataGridViewTextBoxColumn35.DefaultCellStyle = dataGridViewCellStyle108;
  1811. this.dataGridViewTextBoxColumn35.HeaderText = "4日";
  1812. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  1813. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  1814. //
  1815. // dataGridViewTextBoxColumn37
  1816. //
  1817. this.dataGridViewTextBoxColumn37.DataPropertyName = "d05";
  1818. dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1819. this.dataGridViewTextBoxColumn37.DefaultCellStyle = dataGridViewCellStyle109;
  1820. this.dataGridViewTextBoxColumn37.HeaderText = "5日";
  1821. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1822. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  1823. //
  1824. // dataGridViewTextBoxColumn39
  1825. //
  1826. this.dataGridViewTextBoxColumn39.DataPropertyName = "d06";
  1827. dataGridViewCellStyle110.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1828. this.dataGridViewTextBoxColumn39.DefaultCellStyle = dataGridViewCellStyle110;
  1829. this.dataGridViewTextBoxColumn39.HeaderText = "6日";
  1830. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1831. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  1832. //
  1833. // dataGridViewTextBoxColumn41
  1834. //
  1835. this.dataGridViewTextBoxColumn41.DataPropertyName = "d07";
  1836. dataGridViewCellStyle111.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1837. this.dataGridViewTextBoxColumn41.DefaultCellStyle = dataGridViewCellStyle111;
  1838. this.dataGridViewTextBoxColumn41.HeaderText = "7日";
  1839. this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
  1840. this.dataGridViewTextBoxColumn41.ReadOnly = true;
  1841. //
  1842. // dataGridViewTextBoxColumn43
  1843. //
  1844. this.dataGridViewTextBoxColumn43.DataPropertyName = "d08";
  1845. dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1846. this.dataGridViewTextBoxColumn43.DefaultCellStyle = dataGridViewCellStyle112;
  1847. this.dataGridViewTextBoxColumn43.HeaderText = "8日";
  1848. this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
  1849. this.dataGridViewTextBoxColumn43.ReadOnly = true;
  1850. //
  1851. // dataGridViewTextBoxColumn45
  1852. //
  1853. this.dataGridViewTextBoxColumn45.DataPropertyName = "d09";
  1854. dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1855. this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle113;
  1856. this.dataGridViewTextBoxColumn45.HeaderText = "9日";
  1857. this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
  1858. this.dataGridViewTextBoxColumn45.ReadOnly = true;
  1859. //
  1860. // dataGridViewTextBoxColumn47
  1861. //
  1862. this.dataGridViewTextBoxColumn47.DataPropertyName = "d10";
  1863. dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1864. this.dataGridViewTextBoxColumn47.DefaultCellStyle = dataGridViewCellStyle114;
  1865. this.dataGridViewTextBoxColumn47.HeaderText = "10日";
  1866. this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
  1867. this.dataGridViewTextBoxColumn47.ReadOnly = true;
  1868. //
  1869. // dataGridViewTextBoxColumn49
  1870. //
  1871. this.dataGridViewTextBoxColumn49.DataPropertyName = "d11";
  1872. dataGridViewCellStyle115.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1873. this.dataGridViewTextBoxColumn49.DefaultCellStyle = dataGridViewCellStyle115;
  1874. this.dataGridViewTextBoxColumn49.HeaderText = "11日";
  1875. this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
  1876. this.dataGridViewTextBoxColumn49.ReadOnly = true;
  1877. //
  1878. // dataGridViewTextBoxColumn51
  1879. //
  1880. this.dataGridViewTextBoxColumn51.DataPropertyName = "d12";
  1881. dataGridViewCellStyle116.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1882. this.dataGridViewTextBoxColumn51.DefaultCellStyle = dataGridViewCellStyle116;
  1883. this.dataGridViewTextBoxColumn51.HeaderText = "12日";
  1884. this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
  1885. this.dataGridViewTextBoxColumn51.ReadOnly = true;
  1886. //
  1887. // dataGridViewTextBoxColumn53
  1888. //
  1889. this.dataGridViewTextBoxColumn53.DataPropertyName = "d13";
  1890. dataGridViewCellStyle117.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1891. this.dataGridViewTextBoxColumn53.DefaultCellStyle = dataGridViewCellStyle117;
  1892. this.dataGridViewTextBoxColumn53.HeaderText = "13日";
  1893. this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
  1894. this.dataGridViewTextBoxColumn53.ReadOnly = true;
  1895. //
  1896. // dataGridViewTextBoxColumn55
  1897. //
  1898. this.dataGridViewTextBoxColumn55.DataPropertyName = "d14";
  1899. dataGridViewCellStyle118.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1900. this.dataGridViewTextBoxColumn55.DefaultCellStyle = dataGridViewCellStyle118;
  1901. this.dataGridViewTextBoxColumn55.HeaderText = "14日";
  1902. this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
  1903. this.dataGridViewTextBoxColumn55.ReadOnly = true;
  1904. //
  1905. // dataGridViewTextBoxColumn57
  1906. //
  1907. this.dataGridViewTextBoxColumn57.DataPropertyName = "d15";
  1908. dataGridViewCellStyle119.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1909. this.dataGridViewTextBoxColumn57.DefaultCellStyle = dataGridViewCellStyle119;
  1910. this.dataGridViewTextBoxColumn57.HeaderText = "15日";
  1911. this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
  1912. this.dataGridViewTextBoxColumn57.ReadOnly = true;
  1913. //
  1914. // dataGridViewTextBoxColumn59
  1915. //
  1916. this.dataGridViewTextBoxColumn59.DataPropertyName = "d16";
  1917. dataGridViewCellStyle120.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1918. this.dataGridViewTextBoxColumn59.DefaultCellStyle = dataGridViewCellStyle120;
  1919. this.dataGridViewTextBoxColumn59.HeaderText = "16日";
  1920. this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
  1921. this.dataGridViewTextBoxColumn59.ReadOnly = true;
  1922. //
  1923. // dataGridViewTextBoxColumn61
  1924. //
  1925. this.dataGridViewTextBoxColumn61.DataPropertyName = "d17";
  1926. dataGridViewCellStyle121.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1927. this.dataGridViewTextBoxColumn61.DefaultCellStyle = dataGridViewCellStyle121;
  1928. this.dataGridViewTextBoxColumn61.HeaderText = "17日";
  1929. this.dataGridViewTextBoxColumn61.Name = "dataGridViewTextBoxColumn61";
  1930. this.dataGridViewTextBoxColumn61.ReadOnly = true;
  1931. //
  1932. // dataGridViewTextBoxColumn63
  1933. //
  1934. this.dataGridViewTextBoxColumn63.DataPropertyName = "d18";
  1935. dataGridViewCellStyle122.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1936. this.dataGridViewTextBoxColumn63.DefaultCellStyle = dataGridViewCellStyle122;
  1937. this.dataGridViewTextBoxColumn63.HeaderText = "18日";
  1938. this.dataGridViewTextBoxColumn63.Name = "dataGridViewTextBoxColumn63";
  1939. this.dataGridViewTextBoxColumn63.ReadOnly = true;
  1940. //
  1941. // dataGridViewTextBoxColumn65
  1942. //
  1943. this.dataGridViewTextBoxColumn65.DataPropertyName = "d19";
  1944. dataGridViewCellStyle123.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1945. this.dataGridViewTextBoxColumn65.DefaultCellStyle = dataGridViewCellStyle123;
  1946. this.dataGridViewTextBoxColumn65.HeaderText = "19日";
  1947. this.dataGridViewTextBoxColumn65.Name = "dataGridViewTextBoxColumn65";
  1948. this.dataGridViewTextBoxColumn65.ReadOnly = true;
  1949. //
  1950. // dataGridViewTextBoxColumn67
  1951. //
  1952. this.dataGridViewTextBoxColumn67.DataPropertyName = "d20";
  1953. dataGridViewCellStyle124.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1954. this.dataGridViewTextBoxColumn67.DefaultCellStyle = dataGridViewCellStyle124;
  1955. this.dataGridViewTextBoxColumn67.HeaderText = "20日";
  1956. this.dataGridViewTextBoxColumn67.Name = "dataGridViewTextBoxColumn67";
  1957. this.dataGridViewTextBoxColumn67.ReadOnly = true;
  1958. //
  1959. // dataGridViewTextBoxColumn69
  1960. //
  1961. this.dataGridViewTextBoxColumn69.DataPropertyName = "d21";
  1962. dataGridViewCellStyle125.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1963. this.dataGridViewTextBoxColumn69.DefaultCellStyle = dataGridViewCellStyle125;
  1964. this.dataGridViewTextBoxColumn69.HeaderText = "21日";
  1965. this.dataGridViewTextBoxColumn69.Name = "dataGridViewTextBoxColumn69";
  1966. this.dataGridViewTextBoxColumn69.ReadOnly = true;
  1967. //
  1968. // dataGridViewTextBoxColumn71
  1969. //
  1970. this.dataGridViewTextBoxColumn71.DataPropertyName = "d22";
  1971. dataGridViewCellStyle126.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1972. this.dataGridViewTextBoxColumn71.DefaultCellStyle = dataGridViewCellStyle126;
  1973. this.dataGridViewTextBoxColumn71.HeaderText = "22日";
  1974. this.dataGridViewTextBoxColumn71.Name = "dataGridViewTextBoxColumn71";
  1975. this.dataGridViewTextBoxColumn71.ReadOnly = true;
  1976. //
  1977. // dataGridViewTextBoxColumn72
  1978. //
  1979. this.dataGridViewTextBoxColumn72.DataPropertyName = "d23";
  1980. dataGridViewCellStyle127.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1981. this.dataGridViewTextBoxColumn72.DefaultCellStyle = dataGridViewCellStyle127;
  1982. this.dataGridViewTextBoxColumn72.HeaderText = "23日";
  1983. this.dataGridViewTextBoxColumn72.Name = "dataGridViewTextBoxColumn72";
  1984. this.dataGridViewTextBoxColumn72.ReadOnly = true;
  1985. //
  1986. // dataGridViewTextBoxColumn73
  1987. //
  1988. this.dataGridViewTextBoxColumn73.DataPropertyName = "d24";
  1989. dataGridViewCellStyle128.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1990. this.dataGridViewTextBoxColumn73.DefaultCellStyle = dataGridViewCellStyle128;
  1991. this.dataGridViewTextBoxColumn73.HeaderText = "24日";
  1992. this.dataGridViewTextBoxColumn73.Name = "dataGridViewTextBoxColumn73";
  1993. this.dataGridViewTextBoxColumn73.ReadOnly = true;
  1994. //
  1995. // dataGridViewTextBoxColumn74
  1996. //
  1997. this.dataGridViewTextBoxColumn74.DataPropertyName = "d25";
  1998. dataGridViewCellStyle129.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1999. this.dataGridViewTextBoxColumn74.DefaultCellStyle = dataGridViewCellStyle129;
  2000. this.dataGridViewTextBoxColumn74.HeaderText = "25日";
  2001. this.dataGridViewTextBoxColumn74.Name = "dataGridViewTextBoxColumn74";
  2002. this.dataGridViewTextBoxColumn74.ReadOnly = true;
  2003. //
  2004. // dataGridViewTextBoxColumn75
  2005. //
  2006. this.dataGridViewTextBoxColumn75.DataPropertyName = "d26";
  2007. dataGridViewCellStyle130.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2008. this.dataGridViewTextBoxColumn75.DefaultCellStyle = dataGridViewCellStyle130;
  2009. this.dataGridViewTextBoxColumn75.HeaderText = "26日";
  2010. this.dataGridViewTextBoxColumn75.Name = "dataGridViewTextBoxColumn75";
  2011. this.dataGridViewTextBoxColumn75.ReadOnly = true;
  2012. //
  2013. // dataGridViewTextBoxColumn76
  2014. //
  2015. this.dataGridViewTextBoxColumn76.DataPropertyName = "d27";
  2016. dataGridViewCellStyle131.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2017. this.dataGridViewTextBoxColumn76.DefaultCellStyle = dataGridViewCellStyle131;
  2018. this.dataGridViewTextBoxColumn76.HeaderText = "27日";
  2019. this.dataGridViewTextBoxColumn76.Name = "dataGridViewTextBoxColumn76";
  2020. this.dataGridViewTextBoxColumn76.ReadOnly = true;
  2021. //
  2022. // dataGridViewTextBoxColumn77
  2023. //
  2024. this.dataGridViewTextBoxColumn77.DataPropertyName = "d28";
  2025. dataGridViewCellStyle132.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2026. this.dataGridViewTextBoxColumn77.DefaultCellStyle = dataGridViewCellStyle132;
  2027. this.dataGridViewTextBoxColumn77.HeaderText = "28日";
  2028. this.dataGridViewTextBoxColumn77.Name = "dataGridViewTextBoxColumn77";
  2029. this.dataGridViewTextBoxColumn77.ReadOnly = true;
  2030. //
  2031. // dataGridViewTextBoxColumn78
  2032. //
  2033. this.dataGridViewTextBoxColumn78.DataPropertyName = "d29";
  2034. dataGridViewCellStyle133.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2035. this.dataGridViewTextBoxColumn78.DefaultCellStyle = dataGridViewCellStyle133;
  2036. this.dataGridViewTextBoxColumn78.HeaderText = "29日";
  2037. this.dataGridViewTextBoxColumn78.Name = "dataGridViewTextBoxColumn78";
  2038. this.dataGridViewTextBoxColumn78.ReadOnly = true;
  2039. //
  2040. // dataGridViewTextBoxColumn79
  2041. //
  2042. this.dataGridViewTextBoxColumn79.DataPropertyName = "d30";
  2043. dataGridViewCellStyle134.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2044. this.dataGridViewTextBoxColumn79.DefaultCellStyle = dataGridViewCellStyle134;
  2045. this.dataGridViewTextBoxColumn79.HeaderText = "30日";
  2046. this.dataGridViewTextBoxColumn79.Name = "dataGridViewTextBoxColumn79";
  2047. this.dataGridViewTextBoxColumn79.ReadOnly = true;
  2048. //
  2049. // dataGridViewTextBoxColumn80
  2050. //
  2051. this.dataGridViewTextBoxColumn80.DataPropertyName = "d31";
  2052. dataGridViewCellStyle135.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2053. this.dataGridViewTextBoxColumn80.DefaultCellStyle = dataGridViewCellStyle135;
  2054. this.dataGridViewTextBoxColumn80.HeaderText = "31日";
  2055. this.dataGridViewTextBoxColumn80.Name = "dataGridViewTextBoxColumn80";
  2056. this.dataGridViewTextBoxColumn80.ReadOnly = true;
  2057. //
  2058. // BuildingNo
  2059. //
  2060. this.BuildingNo.DataPropertyName = "BuildingNo";
  2061. this.BuildingNo.HeaderText = "楼号";
  2062. this.BuildingNo.Name = "BuildingNo";
  2063. this.BuildingNo.ReadOnly = true;
  2064. //
  2065. // FloorNo
  2066. //
  2067. this.FloorNo.DataPropertyName = "FloorNo";
  2068. this.FloorNo.HeaderText = "楼层";
  2069. this.FloorNo.Name = "FloorNo";
  2070. this.FloorNo.ReadOnly = true;
  2071. //
  2072. // GroutingLineNo
  2073. //
  2074. this.GroutingLineNo.DataPropertyName = "GroutingLineNo";
  2075. this.GroutingLineNo.HeaderText = "线号";
  2076. this.GroutingLineNo.Name = "GroutingLineNo";
  2077. this.GroutingLineNo.ReadOnly = true;
  2078. //
  2079. // groutinglinecode
  2080. //
  2081. this.groutinglinecode.DataPropertyName = "groutinglinecode";
  2082. this.groutinglinecode.HeaderText = "成型线编码";
  2083. this.groutinglinecode.Name = "groutinglinecode";
  2084. this.groutinglinecode.ReadOnly = true;
  2085. //
  2086. // usercode
  2087. //
  2088. this.usercode.DataPropertyName = "usercode";
  2089. this.usercode.HeaderText = "成型工号";
  2090. this.usercode.Name = "usercode";
  2091. this.usercode.ReadOnly = true;
  2092. //
  2093. // goodscode
  2094. //
  2095. this.goodscode.DataPropertyName = "goodscode";
  2096. this.goodscode.HeaderText = "产品编码";
  2097. this.goodscode.Name = "goodscode";
  2098. this.goodscode.ReadOnly = true;
  2099. //
  2100. // GOODSSPECIFICATION
  2101. //
  2102. this.GOODSSPECIFICATION.DataPropertyName = "GOODSSPECIFICATION";
  2103. this.GOODSSPECIFICATION.HeaderText = "产品规格";
  2104. this.GOODSSPECIFICATION.Name = "GOODSSPECIFICATION";
  2105. this.GOODSSPECIFICATION.ReadOnly = true;
  2106. //
  2107. // goodstypename
  2108. //
  2109. this.goodstypename.DataPropertyName = "goodstypename";
  2110. this.goodstypename.HeaderText = "产品类别";
  2111. this.goodstypename.Name = "goodstypename";
  2112. this.goodstypename.ReadOnly = true;
  2113. //
  2114. // MouldQuantity
  2115. //
  2116. this.MouldQuantity.DataPropertyName = "MouldQuantity";
  2117. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2118. this.MouldQuantity.DefaultCellStyle = dataGridViewCellStyle3;
  2119. this.MouldQuantity.HeaderText = "模具数";
  2120. this.MouldQuantity.Name = "MouldQuantity";
  2121. this.MouldQuantity.ReadOnly = true;
  2122. //
  2123. // c01
  2124. //
  2125. this.c01.DataPropertyName = "c01";
  2126. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2127. this.c01.DefaultCellStyle = dataGridViewCellStyle4;
  2128. this.c01.HeaderText = "成坯数";
  2129. this.c01.Name = "c01";
  2130. this.c01.ReadOnly = true;
  2131. //
  2132. // d01
  2133. //
  2134. this.d01.DataPropertyName = "d01";
  2135. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2136. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2137. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2138. this.d01.DefaultCellStyle = dataGridViewCellStyle5;
  2139. this.d01.HeaderText = "交坯数";
  2140. this.d01.Name = "d01";
  2141. this.d01.ReadOnly = true;
  2142. //
  2143. // c02
  2144. //
  2145. this.c02.DataPropertyName = "c02";
  2146. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2147. this.c02.DefaultCellStyle = dataGridViewCellStyle6;
  2148. this.c02.HeaderText = "成坯数";
  2149. this.c02.Name = "c02";
  2150. this.c02.ReadOnly = true;
  2151. //
  2152. // d02
  2153. //
  2154. this.d02.DataPropertyName = "d02";
  2155. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2156. dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2157. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2158. this.d02.DefaultCellStyle = dataGridViewCellStyle7;
  2159. this.d02.HeaderText = "交坯数";
  2160. this.d02.Name = "d02";
  2161. this.d02.ReadOnly = true;
  2162. //
  2163. // c03
  2164. //
  2165. this.c03.DataPropertyName = "c03";
  2166. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2167. this.c03.DefaultCellStyle = dataGridViewCellStyle8;
  2168. this.c03.HeaderText = "成坯数";
  2169. this.c03.Name = "c03";
  2170. this.c03.ReadOnly = true;
  2171. //
  2172. // d03
  2173. //
  2174. this.d03.DataPropertyName = "d03";
  2175. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2176. dataGridViewCellStyle9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2177. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2178. this.d03.DefaultCellStyle = dataGridViewCellStyle9;
  2179. this.d03.HeaderText = "交坯数";
  2180. this.d03.Name = "d03";
  2181. this.d03.ReadOnly = true;
  2182. //
  2183. // c04
  2184. //
  2185. this.c04.DataPropertyName = "c04";
  2186. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2187. this.c04.DefaultCellStyle = dataGridViewCellStyle10;
  2188. this.c04.HeaderText = "成坯数";
  2189. this.c04.Name = "c04";
  2190. this.c04.ReadOnly = true;
  2191. //
  2192. // d04
  2193. //
  2194. this.d04.DataPropertyName = "d04";
  2195. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2196. dataGridViewCellStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2197. dataGridViewCellStyle11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2198. this.d04.DefaultCellStyle = dataGridViewCellStyle11;
  2199. this.d04.HeaderText = "交坯数";
  2200. this.d04.Name = "d04";
  2201. this.d04.ReadOnly = true;
  2202. //
  2203. // c05
  2204. //
  2205. this.c05.DataPropertyName = "c05";
  2206. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2207. this.c05.DefaultCellStyle = dataGridViewCellStyle12;
  2208. this.c05.HeaderText = "成坯数";
  2209. this.c05.Name = "c05";
  2210. this.c05.ReadOnly = true;
  2211. //
  2212. // d05
  2213. //
  2214. this.d05.DataPropertyName = "d05";
  2215. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2216. dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2217. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2218. this.d05.DefaultCellStyle = dataGridViewCellStyle13;
  2219. this.d05.HeaderText = "交坯数";
  2220. this.d05.Name = "d05";
  2221. this.d05.ReadOnly = true;
  2222. //
  2223. // c06
  2224. //
  2225. this.c06.DataPropertyName = "c06";
  2226. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2227. this.c06.DefaultCellStyle = dataGridViewCellStyle14;
  2228. this.c06.HeaderText = "成坯数";
  2229. this.c06.Name = "c06";
  2230. this.c06.ReadOnly = true;
  2231. //
  2232. // d06
  2233. //
  2234. this.d06.DataPropertyName = "d06";
  2235. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2236. dataGridViewCellStyle15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2237. dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2238. this.d06.DefaultCellStyle = dataGridViewCellStyle15;
  2239. this.d06.HeaderText = "交坯数";
  2240. this.d06.Name = "d06";
  2241. this.d06.ReadOnly = true;
  2242. //
  2243. // c07
  2244. //
  2245. this.c07.DataPropertyName = "c07";
  2246. dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2247. this.c07.DefaultCellStyle = dataGridViewCellStyle16;
  2248. this.c07.HeaderText = "成坯数";
  2249. this.c07.Name = "c07";
  2250. this.c07.ReadOnly = true;
  2251. //
  2252. // d07
  2253. //
  2254. this.d07.DataPropertyName = "d07";
  2255. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2256. dataGridViewCellStyle17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2257. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2258. this.d07.DefaultCellStyle = dataGridViewCellStyle17;
  2259. this.d07.HeaderText = "交坯数";
  2260. this.d07.Name = "d07";
  2261. this.d07.ReadOnly = true;
  2262. //
  2263. // c08
  2264. //
  2265. this.c08.DataPropertyName = "c08";
  2266. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2267. this.c08.DefaultCellStyle = dataGridViewCellStyle18;
  2268. this.c08.HeaderText = "成坯数";
  2269. this.c08.Name = "c08";
  2270. this.c08.ReadOnly = true;
  2271. //
  2272. // d08
  2273. //
  2274. this.d08.DataPropertyName = "d08";
  2275. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2276. dataGridViewCellStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2277. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2278. this.d08.DefaultCellStyle = dataGridViewCellStyle19;
  2279. this.d08.HeaderText = "交坯数";
  2280. this.d08.Name = "d08";
  2281. this.d08.ReadOnly = true;
  2282. //
  2283. // c09
  2284. //
  2285. this.c09.DataPropertyName = "c09";
  2286. dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2287. this.c09.DefaultCellStyle = dataGridViewCellStyle20;
  2288. this.c09.HeaderText = "成坯数";
  2289. this.c09.Name = "c09";
  2290. this.c09.ReadOnly = true;
  2291. //
  2292. // d09
  2293. //
  2294. this.d09.DataPropertyName = "d09";
  2295. dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2296. dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2297. dataGridViewCellStyle21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2298. this.d09.DefaultCellStyle = dataGridViewCellStyle21;
  2299. this.d09.HeaderText = "交坯数";
  2300. this.d09.Name = "d09";
  2301. this.d09.ReadOnly = true;
  2302. //
  2303. // c10
  2304. //
  2305. this.c10.DataPropertyName = "c10";
  2306. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2307. this.c10.DefaultCellStyle = dataGridViewCellStyle22;
  2308. this.c10.HeaderText = "成坯数";
  2309. this.c10.Name = "c10";
  2310. this.c10.ReadOnly = true;
  2311. //
  2312. // d10
  2313. //
  2314. this.d10.DataPropertyName = "d10";
  2315. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2316. dataGridViewCellStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2317. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2318. this.d10.DefaultCellStyle = dataGridViewCellStyle23;
  2319. this.d10.HeaderText = "交坯数";
  2320. this.d10.Name = "d10";
  2321. this.d10.ReadOnly = true;
  2322. //
  2323. // c11
  2324. //
  2325. this.c11.DataPropertyName = "c11";
  2326. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2327. this.c11.DefaultCellStyle = dataGridViewCellStyle24;
  2328. this.c11.HeaderText = "成坯数";
  2329. this.c11.Name = "c11";
  2330. this.c11.ReadOnly = true;
  2331. //
  2332. // d11
  2333. //
  2334. this.d11.DataPropertyName = "d11";
  2335. dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2336. dataGridViewCellStyle25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2337. dataGridViewCellStyle25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2338. this.d11.DefaultCellStyle = dataGridViewCellStyle25;
  2339. this.d11.HeaderText = "交坯数";
  2340. this.d11.Name = "d11";
  2341. this.d11.ReadOnly = true;
  2342. //
  2343. // c12
  2344. //
  2345. this.c12.DataPropertyName = "c12";
  2346. dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2347. this.c12.DefaultCellStyle = dataGridViewCellStyle26;
  2348. this.c12.HeaderText = "成坯数";
  2349. this.c12.Name = "c12";
  2350. this.c12.ReadOnly = true;
  2351. //
  2352. // d12
  2353. //
  2354. this.d12.DataPropertyName = "d12";
  2355. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2356. dataGridViewCellStyle27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2357. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2358. this.d12.DefaultCellStyle = dataGridViewCellStyle27;
  2359. this.d12.HeaderText = "交坯数";
  2360. this.d12.Name = "d12";
  2361. this.d12.ReadOnly = true;
  2362. //
  2363. // c13
  2364. //
  2365. this.c13.DataPropertyName = "c13";
  2366. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2367. this.c13.DefaultCellStyle = dataGridViewCellStyle28;
  2368. this.c13.HeaderText = "成坯数";
  2369. this.c13.Name = "c13";
  2370. this.c13.ReadOnly = true;
  2371. //
  2372. // d13
  2373. //
  2374. this.d13.DataPropertyName = "d13";
  2375. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2376. dataGridViewCellStyle29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2377. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2378. this.d13.DefaultCellStyle = dataGridViewCellStyle29;
  2379. this.d13.HeaderText = "交坯数";
  2380. this.d13.Name = "d13";
  2381. this.d13.ReadOnly = true;
  2382. //
  2383. // c14
  2384. //
  2385. this.c14.DataPropertyName = "c14";
  2386. dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2387. this.c14.DefaultCellStyle = dataGridViewCellStyle30;
  2388. this.c14.HeaderText = "成坯数";
  2389. this.c14.Name = "c14";
  2390. this.c14.ReadOnly = true;
  2391. //
  2392. // d14
  2393. //
  2394. this.d14.DataPropertyName = "d14";
  2395. dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2396. dataGridViewCellStyle31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2397. dataGridViewCellStyle31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2398. this.d14.DefaultCellStyle = dataGridViewCellStyle31;
  2399. this.d14.HeaderText = "交坯数";
  2400. this.d14.Name = "d14";
  2401. this.d14.ReadOnly = true;
  2402. //
  2403. // c15
  2404. //
  2405. this.c15.DataPropertyName = "c15";
  2406. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2407. this.c15.DefaultCellStyle = dataGridViewCellStyle32;
  2408. this.c15.HeaderText = "成坯数";
  2409. this.c15.Name = "c15";
  2410. this.c15.ReadOnly = true;
  2411. //
  2412. // d15
  2413. //
  2414. this.d15.DataPropertyName = "d15";
  2415. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2416. dataGridViewCellStyle33.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2417. dataGridViewCellStyle33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2418. this.d15.DefaultCellStyle = dataGridViewCellStyle33;
  2419. this.d15.HeaderText = "交坯数";
  2420. this.d15.Name = "d15";
  2421. this.d15.ReadOnly = true;
  2422. //
  2423. // c16
  2424. //
  2425. this.c16.DataPropertyName = "c16";
  2426. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2427. this.c16.DefaultCellStyle = dataGridViewCellStyle34;
  2428. this.c16.HeaderText = "成坯数";
  2429. this.c16.Name = "c16";
  2430. this.c16.ReadOnly = true;
  2431. //
  2432. // d16
  2433. //
  2434. this.d16.DataPropertyName = "d16";
  2435. dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2436. dataGridViewCellStyle35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2437. dataGridViewCellStyle35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2438. this.d16.DefaultCellStyle = dataGridViewCellStyle35;
  2439. this.d16.HeaderText = "交坯数";
  2440. this.d16.Name = "d16";
  2441. this.d16.ReadOnly = true;
  2442. //
  2443. // c17
  2444. //
  2445. this.c17.DataPropertyName = "c17";
  2446. dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2447. this.c17.DefaultCellStyle = dataGridViewCellStyle36;
  2448. this.c17.HeaderText = "成坯数";
  2449. this.c17.Name = "c17";
  2450. this.c17.ReadOnly = true;
  2451. //
  2452. // d17
  2453. //
  2454. this.d17.DataPropertyName = "d17";
  2455. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2456. dataGridViewCellStyle37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2457. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2458. this.d17.DefaultCellStyle = dataGridViewCellStyle37;
  2459. this.d17.HeaderText = "交坯数";
  2460. this.d17.Name = "d17";
  2461. this.d17.ReadOnly = true;
  2462. //
  2463. // c18
  2464. //
  2465. this.c18.DataPropertyName = "c18";
  2466. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2467. this.c18.DefaultCellStyle = dataGridViewCellStyle38;
  2468. this.c18.HeaderText = "成坯数";
  2469. this.c18.Name = "c18";
  2470. this.c18.ReadOnly = true;
  2471. //
  2472. // d18
  2473. //
  2474. this.d18.DataPropertyName = "d18";
  2475. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2476. dataGridViewCellStyle39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2477. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2478. this.d18.DefaultCellStyle = dataGridViewCellStyle39;
  2479. this.d18.HeaderText = "交坯数";
  2480. this.d18.Name = "d18";
  2481. this.d18.ReadOnly = true;
  2482. //
  2483. // c19
  2484. //
  2485. this.c19.DataPropertyName = "c19";
  2486. dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2487. this.c19.DefaultCellStyle = dataGridViewCellStyle40;
  2488. this.c19.HeaderText = "成坯数";
  2489. this.c19.Name = "c19";
  2490. this.c19.ReadOnly = true;
  2491. //
  2492. // d19
  2493. //
  2494. this.d19.DataPropertyName = "d19";
  2495. dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2496. dataGridViewCellStyle41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2497. dataGridViewCellStyle41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2498. this.d19.DefaultCellStyle = dataGridViewCellStyle41;
  2499. this.d19.HeaderText = "交坯数";
  2500. this.d19.Name = "d19";
  2501. this.d19.ReadOnly = true;
  2502. //
  2503. // c20
  2504. //
  2505. this.c20.DataPropertyName = "c20";
  2506. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2507. this.c20.DefaultCellStyle = dataGridViewCellStyle42;
  2508. this.c20.HeaderText = "成坯数";
  2509. this.c20.Name = "c20";
  2510. this.c20.ReadOnly = true;
  2511. //
  2512. // d20
  2513. //
  2514. this.d20.DataPropertyName = "d20";
  2515. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2516. dataGridViewCellStyle43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2517. dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2518. this.d20.DefaultCellStyle = dataGridViewCellStyle43;
  2519. this.d20.HeaderText = "交坯数";
  2520. this.d20.Name = "d20";
  2521. this.d20.ReadOnly = true;
  2522. //
  2523. // c21
  2524. //
  2525. this.c21.DataPropertyName = "c21";
  2526. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2527. this.c21.DefaultCellStyle = dataGridViewCellStyle44;
  2528. this.c21.HeaderText = "成坯数";
  2529. this.c21.Name = "c21";
  2530. this.c21.ReadOnly = true;
  2531. //
  2532. // d21
  2533. //
  2534. this.d21.DataPropertyName = "d21";
  2535. dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2536. dataGridViewCellStyle45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2537. dataGridViewCellStyle45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2538. this.d21.DefaultCellStyle = dataGridViewCellStyle45;
  2539. this.d21.HeaderText = "交坯数";
  2540. this.d21.Name = "d21";
  2541. this.d21.ReadOnly = true;
  2542. //
  2543. // c22
  2544. //
  2545. this.c22.DataPropertyName = "c22";
  2546. dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2547. this.c22.DefaultCellStyle = dataGridViewCellStyle46;
  2548. this.c22.HeaderText = "成坯数";
  2549. this.c22.Name = "c22";
  2550. this.c22.ReadOnly = true;
  2551. //
  2552. // d22
  2553. //
  2554. this.d22.DataPropertyName = "d22";
  2555. dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2556. dataGridViewCellStyle47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2557. dataGridViewCellStyle47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2558. this.d22.DefaultCellStyle = dataGridViewCellStyle47;
  2559. this.d22.HeaderText = "交坯数";
  2560. this.d22.Name = "d22";
  2561. this.d22.ReadOnly = true;
  2562. //
  2563. // c23
  2564. //
  2565. this.c23.DataPropertyName = "c23";
  2566. dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2567. this.c23.DefaultCellStyle = dataGridViewCellStyle48;
  2568. this.c23.HeaderText = "成坯数";
  2569. this.c23.Name = "c23";
  2570. this.c23.ReadOnly = true;
  2571. //
  2572. // d23
  2573. //
  2574. this.d23.DataPropertyName = "d23";
  2575. dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2576. dataGridViewCellStyle49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2577. dataGridViewCellStyle49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2578. this.d23.DefaultCellStyle = dataGridViewCellStyle49;
  2579. this.d23.HeaderText = "交坯数";
  2580. this.d23.Name = "d23";
  2581. this.d23.ReadOnly = true;
  2582. //
  2583. // c24
  2584. //
  2585. this.c24.DataPropertyName = "c24";
  2586. dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2587. this.c24.DefaultCellStyle = dataGridViewCellStyle50;
  2588. this.c24.HeaderText = "成坯数";
  2589. this.c24.Name = "c24";
  2590. this.c24.ReadOnly = true;
  2591. //
  2592. // d24
  2593. //
  2594. this.d24.DataPropertyName = "d24";
  2595. dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2596. dataGridViewCellStyle51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2597. dataGridViewCellStyle51.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2598. this.d24.DefaultCellStyle = dataGridViewCellStyle51;
  2599. this.d24.HeaderText = "交坯数";
  2600. this.d24.Name = "d24";
  2601. this.d24.ReadOnly = true;
  2602. //
  2603. // c25
  2604. //
  2605. this.c25.DataPropertyName = "c25";
  2606. dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2607. this.c25.DefaultCellStyle = dataGridViewCellStyle52;
  2608. this.c25.HeaderText = "成坯数";
  2609. this.c25.Name = "c25";
  2610. this.c25.ReadOnly = true;
  2611. //
  2612. // d25
  2613. //
  2614. this.d25.DataPropertyName = "d25";
  2615. dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2616. dataGridViewCellStyle53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2617. dataGridViewCellStyle53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2618. this.d25.DefaultCellStyle = dataGridViewCellStyle53;
  2619. this.d25.HeaderText = "交坯数";
  2620. this.d25.Name = "d25";
  2621. this.d25.ReadOnly = true;
  2622. //
  2623. // c26
  2624. //
  2625. this.c26.DataPropertyName = "c26";
  2626. dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2627. this.c26.DefaultCellStyle = dataGridViewCellStyle54;
  2628. this.c26.HeaderText = "成坯数";
  2629. this.c26.Name = "c26";
  2630. this.c26.ReadOnly = true;
  2631. //
  2632. // d26
  2633. //
  2634. this.d26.DataPropertyName = "d26";
  2635. dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2636. dataGridViewCellStyle55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2637. dataGridViewCellStyle55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2638. this.d26.DefaultCellStyle = dataGridViewCellStyle55;
  2639. this.d26.HeaderText = "交坯数";
  2640. this.d26.Name = "d26";
  2641. this.d26.ReadOnly = true;
  2642. //
  2643. // c27
  2644. //
  2645. this.c27.DataPropertyName = "c27";
  2646. dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2647. this.c27.DefaultCellStyle = dataGridViewCellStyle56;
  2648. this.c27.HeaderText = "成坯数";
  2649. this.c27.Name = "c27";
  2650. this.c27.ReadOnly = true;
  2651. //
  2652. // d27
  2653. //
  2654. this.d27.DataPropertyName = "d27";
  2655. dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2656. dataGridViewCellStyle57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2657. dataGridViewCellStyle57.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2658. this.d27.DefaultCellStyle = dataGridViewCellStyle57;
  2659. this.d27.HeaderText = "交坯数";
  2660. this.d27.Name = "d27";
  2661. this.d27.ReadOnly = true;
  2662. //
  2663. // c28
  2664. //
  2665. this.c28.DataPropertyName = "c28";
  2666. dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2667. this.c28.DefaultCellStyle = dataGridViewCellStyle58;
  2668. this.c28.HeaderText = "成坯数";
  2669. this.c28.Name = "c28";
  2670. this.c28.ReadOnly = true;
  2671. //
  2672. // d28
  2673. //
  2674. this.d28.DataPropertyName = "d28";
  2675. dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2676. dataGridViewCellStyle59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2677. dataGridViewCellStyle59.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2678. this.d28.DefaultCellStyle = dataGridViewCellStyle59;
  2679. this.d28.HeaderText = "交坯数";
  2680. this.d28.Name = "d28";
  2681. this.d28.ReadOnly = true;
  2682. //
  2683. // c29
  2684. //
  2685. this.c29.DataPropertyName = "c29";
  2686. dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2687. this.c29.DefaultCellStyle = dataGridViewCellStyle60;
  2688. this.c29.HeaderText = "成坯数";
  2689. this.c29.Name = "c29";
  2690. this.c29.ReadOnly = true;
  2691. //
  2692. // d29
  2693. //
  2694. this.d29.DataPropertyName = "d29";
  2695. dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2696. dataGridViewCellStyle61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2697. dataGridViewCellStyle61.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2698. this.d29.DefaultCellStyle = dataGridViewCellStyle61;
  2699. this.d29.HeaderText = "交坯数";
  2700. this.d29.Name = "d29";
  2701. this.d29.ReadOnly = true;
  2702. //
  2703. // c30
  2704. //
  2705. this.c30.DataPropertyName = "c30";
  2706. dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2707. this.c30.DefaultCellStyle = dataGridViewCellStyle62;
  2708. this.c30.HeaderText = "成坯数";
  2709. this.c30.Name = "c30";
  2710. this.c30.ReadOnly = true;
  2711. //
  2712. // d30
  2713. //
  2714. this.d30.DataPropertyName = "d30";
  2715. dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2716. dataGridViewCellStyle63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2717. dataGridViewCellStyle63.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2718. this.d30.DefaultCellStyle = dataGridViewCellStyle63;
  2719. this.d30.HeaderText = "交坯数";
  2720. this.d30.Name = "d30";
  2721. this.d30.ReadOnly = true;
  2722. //
  2723. // c31
  2724. //
  2725. this.c31.DataPropertyName = "c31";
  2726. dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2727. this.c31.DefaultCellStyle = dataGridViewCellStyle64;
  2728. this.c31.HeaderText = "成坯数";
  2729. this.c31.Name = "c31";
  2730. this.c31.ReadOnly = true;
  2731. //
  2732. // d31
  2733. //
  2734. this.d31.DataPropertyName = "d31";
  2735. dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2736. dataGridViewCellStyle65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2737. dataGridViewCellStyle65.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2738. this.d31.DefaultCellStyle = dataGridViewCellStyle65;
  2739. this.d31.HeaderText = "交坯数";
  2740. this.d31.Name = "d31";
  2741. this.d31.ReadOnly = true;
  2742. //
  2743. // F_RPT_040108
  2744. //
  2745. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2746. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2747. this.AutoScroll = false;
  2748. this.ClientSize = new System.Drawing.Size(1043, 485);
  2749. this.Controls.Add(this.tabControl1);
  2750. this.Controls.Add(this.tsrOperate);
  2751. this.Controls.Add(this.gbxCondition);
  2752. this.Name = "F_RPT_040108";
  2753. this.Text = "成型线产量分析表";
  2754. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030103_1_FormClosed);
  2755. this.Load += new System.EventHandler(this.F_RPT_030103_1_Load);
  2756. this.tsrOperate.ResumeLayout(false);
  2757. this.tsrOperate.PerformLayout();
  2758. this.gbxCondition.ResumeLayout(false);
  2759. this.gbxCondition.PerformLayout();
  2760. ((System.ComponentModel.ISupportInitialize)(this.dgvRptProcedure)).EndInit();
  2761. this.tabControl1.ResumeLayout(false);
  2762. this.tabPage1.ResumeLayout(false);
  2763. this.tabPage2.ResumeLayout(false);
  2764. ((System.ComponentModel.ISupportInitialize)(this.dgvGC)).EndInit();
  2765. this.tabPage3.ResumeLayout(false);
  2766. ((System.ComponentModel.ISupportInitialize)(this.dgvGD)).EndInit();
  2767. this.ResumeLayout(false);
  2768. }
  2769. #endregion
  2770. private System.Windows.Forms.TreeView treeView1;
  2771. private Basics.BaseControls.C_ToolStrip tsrOperate;
  2772. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  2773. private System.Windows.Forms.ToolStripButton tsbtnClose;
  2774. private Basics.BaseControls.C_GroupBox gbxCondition;
  2775. private Basics.BaseControls.C_Button btnClearCondition;
  2776. private Basics.BaseControls.C_Button btnSearch;
  2777. private Basics.BaseControls.C_DateTimePicker dtpGDateStart;
  2778. private Basics.BaseControls.C_TXT_Code txtGoodCode;
  2779. private Basics.BaseControls.C_Label c_Label4;
  2780. private Basics.BaseControls.C_Label c_Label1;
  2781. private Basics.BaseControls.C_DataGridView dgvRptProcedure;
  2782. private Basics.BaseControls.C_TXT_Code txtGroutingLineCode;
  2783. private Basics.BaseControls.C_Label c_Label2;
  2784. private Basics.BaseControls.C_TXT_Code txtGroutingUserCode;
  2785. private Basics.BaseControls.C_Label c_Label3;
  2786. private System.Windows.Forms.TabControl tabControl1;
  2787. private System.Windows.Forms.TabPage tabPage1;
  2788. private System.Windows.Forms.TabPage tabPage2;
  2789. private Basics.BaseControls.C_DataGridView dgvGC;
  2790. private System.Windows.Forms.TabPage tabPage3;
  2791. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2792. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2793. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2794. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2795. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2796. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2797. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2798. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2799. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2800. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2801. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2802. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2803. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2804. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2805. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2806. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2807. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2808. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2809. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2810. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2811. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2812. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2813. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2814. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2815. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
  2816. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
  2817. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
  2818. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
  2819. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn48;
  2820. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn50;
  2821. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn52;
  2822. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn54;
  2823. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn56;
  2824. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn58;
  2825. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn60;
  2826. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn62;
  2827. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn64;
  2828. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn66;
  2829. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn68;
  2830. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn70;
  2831. private Basics.BaseControls.C_DataGridView dgvGD;
  2832. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2833. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2834. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2835. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2836. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2837. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2838. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2839. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  2840. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2841. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2842. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2843. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2844. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2845. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2846. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2847. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
  2848. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
  2849. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
  2850. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn47;
  2851. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn49;
  2852. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn51;
  2853. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn53;
  2854. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn55;
  2855. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn57;
  2856. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn59;
  2857. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn61;
  2858. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn63;
  2859. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn65;
  2860. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn67;
  2861. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn69;
  2862. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn71;
  2863. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn72;
  2864. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn73;
  2865. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn74;
  2866. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn75;
  2867. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn76;
  2868. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn77;
  2869. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn78;
  2870. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn79;
  2871. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn80;
  2872. private Basics.BaseControls.C_Label lblGoodsType;
  2873. private Controls.SearchBox.ScbGoodsType scbGoodsType;
  2874. private System.Windows.Forms.DataGridViewTextBoxColumn BuildingNo;
  2875. private System.Windows.Forms.DataGridViewTextBoxColumn FloorNo;
  2876. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineNo;
  2877. private System.Windows.Forms.DataGridViewTextBoxColumn groutinglinecode;
  2878. private System.Windows.Forms.DataGridViewTextBoxColumn usercode;
  2879. private System.Windows.Forms.DataGridViewTextBoxColumn goodscode;
  2880. private System.Windows.Forms.DataGridViewTextBoxColumn GOODSSPECIFICATION;
  2881. private System.Windows.Forms.DataGridViewTextBoxColumn goodstypename;
  2882. private System.Windows.Forms.DataGridViewTextBoxColumn MouldQuantity;
  2883. private System.Windows.Forms.DataGridViewTextBoxColumn c01;
  2884. private System.Windows.Forms.DataGridViewTextBoxColumn d01;
  2885. private System.Windows.Forms.DataGridViewTextBoxColumn c02;
  2886. private System.Windows.Forms.DataGridViewTextBoxColumn d02;
  2887. private System.Windows.Forms.DataGridViewTextBoxColumn c03;
  2888. private System.Windows.Forms.DataGridViewTextBoxColumn d03;
  2889. private System.Windows.Forms.DataGridViewTextBoxColumn c04;
  2890. private System.Windows.Forms.DataGridViewTextBoxColumn d04;
  2891. private System.Windows.Forms.DataGridViewTextBoxColumn c05;
  2892. private System.Windows.Forms.DataGridViewTextBoxColumn d05;
  2893. private System.Windows.Forms.DataGridViewTextBoxColumn c06;
  2894. private System.Windows.Forms.DataGridViewTextBoxColumn d06;
  2895. private System.Windows.Forms.DataGridViewTextBoxColumn c07;
  2896. private System.Windows.Forms.DataGridViewTextBoxColumn d07;
  2897. private System.Windows.Forms.DataGridViewTextBoxColumn c08;
  2898. private System.Windows.Forms.DataGridViewTextBoxColumn d08;
  2899. private System.Windows.Forms.DataGridViewTextBoxColumn c09;
  2900. private System.Windows.Forms.DataGridViewTextBoxColumn d09;
  2901. private System.Windows.Forms.DataGridViewTextBoxColumn c10;
  2902. private System.Windows.Forms.DataGridViewTextBoxColumn d10;
  2903. private System.Windows.Forms.DataGridViewTextBoxColumn c11;
  2904. private System.Windows.Forms.DataGridViewTextBoxColumn d11;
  2905. private System.Windows.Forms.DataGridViewTextBoxColumn c12;
  2906. private System.Windows.Forms.DataGridViewTextBoxColumn d12;
  2907. private System.Windows.Forms.DataGridViewTextBoxColumn c13;
  2908. private System.Windows.Forms.DataGridViewTextBoxColumn d13;
  2909. private System.Windows.Forms.DataGridViewTextBoxColumn c14;
  2910. private System.Windows.Forms.DataGridViewTextBoxColumn d14;
  2911. private System.Windows.Forms.DataGridViewTextBoxColumn c15;
  2912. private System.Windows.Forms.DataGridViewTextBoxColumn d15;
  2913. private System.Windows.Forms.DataGridViewTextBoxColumn c16;
  2914. private System.Windows.Forms.DataGridViewTextBoxColumn d16;
  2915. private System.Windows.Forms.DataGridViewTextBoxColumn c17;
  2916. private System.Windows.Forms.DataGridViewTextBoxColumn d17;
  2917. private System.Windows.Forms.DataGridViewTextBoxColumn c18;
  2918. private System.Windows.Forms.DataGridViewTextBoxColumn d18;
  2919. private System.Windows.Forms.DataGridViewTextBoxColumn c19;
  2920. private System.Windows.Forms.DataGridViewTextBoxColumn d19;
  2921. private System.Windows.Forms.DataGridViewTextBoxColumn c20;
  2922. private System.Windows.Forms.DataGridViewTextBoxColumn d20;
  2923. private System.Windows.Forms.DataGridViewTextBoxColumn c21;
  2924. private System.Windows.Forms.DataGridViewTextBoxColumn d21;
  2925. private System.Windows.Forms.DataGridViewTextBoxColumn c22;
  2926. private System.Windows.Forms.DataGridViewTextBoxColumn d22;
  2927. private System.Windows.Forms.DataGridViewTextBoxColumn c23;
  2928. private System.Windows.Forms.DataGridViewTextBoxColumn d23;
  2929. private System.Windows.Forms.DataGridViewTextBoxColumn c24;
  2930. private System.Windows.Forms.DataGridViewTextBoxColumn d24;
  2931. private System.Windows.Forms.DataGridViewTextBoxColumn c25;
  2932. private System.Windows.Forms.DataGridViewTextBoxColumn d25;
  2933. private System.Windows.Forms.DataGridViewTextBoxColumn c26;
  2934. private System.Windows.Forms.DataGridViewTextBoxColumn d26;
  2935. private System.Windows.Forms.DataGridViewTextBoxColumn c27;
  2936. private System.Windows.Forms.DataGridViewTextBoxColumn d27;
  2937. private System.Windows.Forms.DataGridViewTextBoxColumn c28;
  2938. private System.Windows.Forms.DataGridViewTextBoxColumn d28;
  2939. private System.Windows.Forms.DataGridViewTextBoxColumn c29;
  2940. private System.Windows.Forms.DataGridViewTextBoxColumn d29;
  2941. private System.Windows.Forms.DataGridViewTextBoxColumn c30;
  2942. private System.Windows.Forms.DataGridViewTextBoxColumn d30;
  2943. private System.Windows.Forms.DataGridViewTextBoxColumn c31;
  2944. private System.Windows.Forms.DataGridViewTextBoxColumn d31;
  2945. }
  2946. }