87ff4b32186b1e56ccf7e7582c3312b60180a65d.svn-base 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154
  1. namespace Core.LZMes.Client.UIM
  2. {
  3. partial class UIM020020
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_STL_GRD");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CUR_LOAD_LOC");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_DTIME");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_USE_TIME");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MILL_DTIME");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_REG");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_SHIFT");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_GROUP");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_FL");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_PLAN_DATA");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_DEVLMT_DATE");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INGR_DEC_GRD");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATRL_END_CAUSE_CD");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIZE_DEC_RST");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EXTSHAPE_DEC_GRD");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WGT_DEC_RST");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHARGE_NO");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDCUST_CD");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DLIV_TP");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XSQY");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CUR_PROG_CD");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACKAGE_LEVEL");
  63. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRINT_TP");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("C_ORD_USE_TP");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_ABBSYM");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DDC_STL_GRD");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PAKMTH_TP");
  69. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  76. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  77. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  78. this.dataColumn39 = new System.Data.DataColumn();
  79. this.dataColumn40 = new System.Data.DataColumn();
  80. this.dataColumn38 = new System.Data.DataColumn();
  81. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  82. this.dataColumn37 = new System.Data.DataColumn();
  83. this.dataColumn36 = new System.Data.DataColumn();
  84. this.dataColumn35 = new System.Data.DataColumn();
  85. this.dataColumn7 = new System.Data.DataColumn();
  86. this.dataColumn6 = new System.Data.DataColumn();
  87. this.dataColumn13 = new System.Data.DataColumn();
  88. this.dataColumn10 = new System.Data.DataColumn();
  89. this.dataColumn12 = new System.Data.DataColumn();
  90. this.dataColumn5 = new System.Data.DataColumn();
  91. this.dataColumn11 = new System.Data.DataColumn();
  92. this.dataSet1 = new System.Data.DataSet();
  93. this.dataTable1 = new System.Data.DataTable();
  94. this.dataColumn1 = new System.Data.DataColumn();
  95. this.dataColumn3 = new System.Data.DataColumn();
  96. this.dataColumn4 = new System.Data.DataColumn();
  97. this.dataColumn14 = new System.Data.DataColumn();
  98. this.dataColumn22 = new System.Data.DataColumn();
  99. this.dataColumn23 = new System.Data.DataColumn();
  100. this.dataColumn24 = new System.Data.DataColumn();
  101. this.dataColumn25 = new System.Data.DataColumn();
  102. this.dataColumn26 = new System.Data.DataColumn();
  103. this.dataColumn27 = new System.Data.DataColumn();
  104. this.dataColumn28 = new System.Data.DataColumn();
  105. this.dataColumn29 = new System.Data.DataColumn();
  106. this.dataColumn30 = new System.Data.DataColumn();
  107. this.dataColumn31 = new System.Data.DataColumn();
  108. this.dataColumn32 = new System.Data.DataColumn();
  109. this.dataColumn33 = new System.Data.DataColumn();
  110. this.dataColumn34 = new System.Data.DataColumn();
  111. this.dataColumn2 = new System.Data.DataColumn();
  112. this.dataColumn41 = new System.Data.DataColumn();
  113. this.dataColumn8 = new System.Data.DataColumn();
  114. this.dataColumn9 = new System.Data.DataColumn();
  115. this.dataColumn15 = new System.Data.DataColumn();
  116. this.dataColumn16 = new System.Data.DataColumn();
  117. this.dataColumn17 = new System.Data.DataColumn();
  118. this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
  119. this.checkBox4 = new System.Windows.Forms.CheckBox();
  120. this.checkBox3 = new System.Windows.Forms.CheckBox();
  121. this.textBoxlicenseMark = new System.Windows.Forms.TextBox();
  122. this.textBoxLicenseNo = new System.Windows.Forms.TextBox();
  123. this.checkBox2 = new System.Windows.Forms.CheckBox();
  124. this.checkBox1 = new System.Windows.Forms.CheckBox();
  125. this.checkBoxORD = new System.Windows.Forms.CheckBox();
  126. this.label13 = new System.Windows.Forms.Label();
  127. this.label14 = new System.Windows.Forms.Label();
  128. this.label15 = new System.Windows.Forms.Label();
  129. this.textBox14 = new System.Windows.Forms.TextBox();
  130. this.textBox15 = new System.Windows.Forms.TextBox();
  131. this.label10 = new System.Windows.Forms.Label();
  132. this.label11 = new System.Windows.Forms.Label();
  133. this.label12 = new System.Windows.Forms.Label();
  134. this.label16 = new System.Windows.Forms.Label();
  135. this.label17 = new System.Windows.Forms.Label();
  136. this.textBox12 = new System.Windows.Forms.TextBox();
  137. this.textBox13 = new System.Windows.Forms.TextBox();
  138. this.textBox10 = new System.Windows.Forms.TextBox();
  139. this.textBox8 = new System.Windows.Forms.TextBox();
  140. this.textBox9 = new System.Windows.Forms.TextBox();
  141. this.textBox11 = new System.Windows.Forms.TextBox();
  142. this.textBox16 = new System.Windows.Forms.TextBox();
  143. this.textBox17 = new System.Windows.Forms.TextBox();
  144. this.checkBox5 = new System.Windows.Forms.CheckBox();
  145. this.checkBox6 = new System.Windows.Forms.CheckBox();
  146. this.textBox18 = new System.Windows.Forms.TextBox();
  147. this.textBox19 = new System.Windows.Forms.TextBox();
  148. this.checkBox7 = new System.Windows.Forms.CheckBox();
  149. this.checkBox8 = new System.Windows.Forms.CheckBox();
  150. this.checkBox9 = new System.Windows.Forms.CheckBox();
  151. this.label18 = new System.Windows.Forms.Label();
  152. this.label19 = new System.Windows.Forms.Label();
  153. this.label20 = new System.Windows.Forms.Label();
  154. this.textBox20 = new System.Windows.Forms.TextBox();
  155. this.textBox21 = new System.Windows.Forms.TextBox();
  156. this.label21 = new System.Windows.Forms.Label();
  157. this.label22 = new System.Windows.Forms.Label();
  158. this.label23 = new System.Windows.Forms.Label();
  159. this.label24 = new System.Windows.Forms.Label();
  160. this.label25 = new System.Windows.Forms.Label();
  161. this.textBox22 = new System.Windows.Forms.TextBox();
  162. this.textBox23 = new System.Windows.Forms.TextBox();
  163. this.textBox24 = new System.Windows.Forms.TextBox();
  164. this.textBox25 = new System.Windows.Forms.TextBox();
  165. this.textBox26 = new System.Windows.Forms.TextBox();
  166. this.textBox27 = new System.Windows.Forms.TextBox();
  167. this.textBox28 = new System.Windows.Forms.TextBox();
  168. this.textBox29 = new System.Windows.Forms.TextBox();
  169. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  170. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  171. this.panel1 = new System.Windows.Forms.Panel();
  172. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  173. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  174. this.panel3 = new System.Windows.Forms.Panel();
  175. this.label5 = new System.Windows.Forms.Label();
  176. this.label6 = new System.Windows.Forms.Label();
  177. this.label8 = new System.Windows.Forms.Label();
  178. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  179. this.label2 = new System.Windows.Forms.Label();
  180. this.label7 = new System.Windows.Forms.Label();
  181. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  182. this.textBox5 = new System.Windows.Forms.TextBox();
  183. this.textBox1 = new System.Windows.Forms.TextBox();
  184. this.label9 = new System.Windows.Forms.Label();
  185. this.label1 = new System.Windows.Forms.Label();
  186. this.textBox7 = new System.Windows.Forms.TextBox();
  187. this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  188. this.textBox3 = new System.Windows.Forms.TextBox();
  189. this.textBox2 = new System.Windows.Forms.TextBox();
  190. this.textBox6 = new System.Windows.Forms.TextBox();
  191. this.label4 = new System.Windows.Forms.Label();
  192. this.label3 = new System.Windows.Forms.Label();
  193. this.textBox4 = new System.Windows.Forms.TextBox();
  194. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  195. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  196. this.label36 = new System.Windows.Forms.Label();
  197. this.textBox45 = new System.Windows.Forms.TextBox();
  198. this.label34 = new System.Windows.Forms.Label();
  199. this.textBox43 = new System.Windows.Forms.TextBox();
  200. this.label35 = new System.Windows.Forms.Label();
  201. this.textBox44 = new System.Windows.Forms.TextBox();
  202. this.textBox42 = new System.Windows.Forms.TextBox();
  203. this.checkBox10 = new System.Windows.Forms.CheckBox();
  204. this.checkBox11 = new System.Windows.Forms.CheckBox();
  205. this.textBox30 = new System.Windows.Forms.TextBox();
  206. this.textBox31 = new System.Windows.Forms.TextBox();
  207. this.checkBox12 = new System.Windows.Forms.CheckBox();
  208. this.checkBox13 = new System.Windows.Forms.CheckBox();
  209. this.checkBox14 = new System.Windows.Forms.CheckBox();
  210. this.label26 = new System.Windows.Forms.Label();
  211. this.label27 = new System.Windows.Forms.Label();
  212. this.label28 = new System.Windows.Forms.Label();
  213. this.textBox32 = new System.Windows.Forms.TextBox();
  214. this.textBox33 = new System.Windows.Forms.TextBox();
  215. this.label29 = new System.Windows.Forms.Label();
  216. this.label30 = new System.Windows.Forms.Label();
  217. this.label31 = new System.Windows.Forms.Label();
  218. this.label32 = new System.Windows.Forms.Label();
  219. this.label33 = new System.Windows.Forms.Label();
  220. this.textBox34 = new System.Windows.Forms.TextBox();
  221. this.textBox35 = new System.Windows.Forms.TextBox();
  222. this.textBox36 = new System.Windows.Forms.TextBox();
  223. this.textBox37 = new System.Windows.Forms.TextBox();
  224. this.textBox38 = new System.Windows.Forms.TextBox();
  225. this.textBox39 = new System.Windows.Forms.TextBox();
  226. this.textBox40 = new System.Windows.Forms.TextBox();
  227. this.textBox41 = new System.Windows.Forms.TextBox();
  228. this.checkBox15 = new System.Windows.Forms.CheckBox();
  229. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  230. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  231. this.ultraPanel2.SuspendLayout();
  232. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  233. this.ultraGroupBox1.SuspendLayout();
  234. this.panel1.SuspendLayout();
  235. this.ultraPanel3.ClientArea.SuspendLayout();
  236. this.ultraPanel3.SuspendLayout();
  237. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  238. this.panel3.SuspendLayout();
  239. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  240. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  241. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
  242. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  243. this.ultraExpandableGroupBox1.SuspendLayout();
  244. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  245. this.SuspendLayout();
  246. //
  247. // dataColumn39
  248. //
  249. this.dataColumn39.Caption = "销售区域";
  250. this.dataColumn39.ColumnName = "XSQY";
  251. //
  252. // dataColumn40
  253. //
  254. this.dataColumn40.Caption = "进程状态";
  255. this.dataColumn40.ColumnName = "CUR_PROG_CD";
  256. //
  257. // dataColumn38
  258. //
  259. this.dataColumn38.Caption = "运输方式";
  260. this.dataColumn38.ColumnName = "DLIV_TP";
  261. //
  262. // saveFileDialog1
  263. //
  264. this.saveFileDialog1.Filter = "表格(*.xls)|*.xls";
  265. //
  266. // dataColumn37
  267. //
  268. this.dataColumn37.Caption = "收货单位";
  269. this.dataColumn37.ColumnName = "ORDCUST_CD";
  270. //
  271. // dataColumn36
  272. //
  273. this.dataColumn36.Caption = "冶炼炉号";
  274. this.dataColumn36.ColumnName = "CHARGE_NO";
  275. //
  276. // dataColumn35
  277. //
  278. this.dataColumn35.Caption = "重量判定";
  279. this.dataColumn35.ColumnName = "WGT_DEC_RST";
  280. //
  281. // dataColumn7
  282. //
  283. this.dataColumn7.Caption = "订单宽度";
  284. this.dataColumn7.ColumnName = "INSTR_COIL_WTH";
  285. //
  286. // dataColumn6
  287. //
  288. this.dataColumn6.Caption = "订单厚度";
  289. this.dataColumn6.ColumnName = "INSTR_COIL_THK";
  290. //
  291. // dataColumn13
  292. //
  293. this.dataColumn13.Caption = "入库操作时间";
  294. this.dataColumn13.ColumnName = "YARD_ENTRY_USE_TIME";
  295. //
  296. // dataColumn10
  297. //
  298. this.dataColumn10.Caption = "重量";
  299. this.dataColumn10.ColumnName = "ACT_WGT";
  300. //
  301. // dataColumn12
  302. //
  303. this.dataColumn12.Caption = "入库时间";
  304. this.dataColumn12.ColumnName = "YARD_ENTRY_DTIME";
  305. //
  306. // dataColumn5
  307. //
  308. this.dataColumn5.Caption = "成品宽度";
  309. this.dataColumn5.ColumnName = "COIL_WTH";
  310. //
  311. // dataColumn11
  312. //
  313. this.dataColumn11.Caption = "堆放位置";
  314. this.dataColumn11.ColumnName = "CUR_LOAD_LOC";
  315. //
  316. // dataSet1
  317. //
  318. this.dataSet1.DataSetName = "NewDataSet";
  319. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  320. this.dataTable1});
  321. //
  322. // dataTable1
  323. //
  324. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  325. this.dataColumn1,
  326. this.dataColumn3,
  327. this.dataColumn4,
  328. this.dataColumn5,
  329. this.dataColumn6,
  330. this.dataColumn7,
  331. this.dataColumn10,
  332. this.dataColumn11,
  333. this.dataColumn12,
  334. this.dataColumn13,
  335. this.dataColumn14,
  336. this.dataColumn22,
  337. this.dataColumn23,
  338. this.dataColumn24,
  339. this.dataColumn25,
  340. this.dataColumn26,
  341. this.dataColumn27,
  342. this.dataColumn28,
  343. this.dataColumn29,
  344. this.dataColumn30,
  345. this.dataColumn31,
  346. this.dataColumn32,
  347. this.dataColumn33,
  348. this.dataColumn34,
  349. this.dataColumn35,
  350. this.dataColumn36,
  351. this.dataColumn37,
  352. this.dataColumn38,
  353. this.dataColumn39,
  354. this.dataColumn40,
  355. this.dataColumn2,
  356. this.dataColumn41,
  357. this.dataColumn8,
  358. this.dataColumn9,
  359. this.dataColumn15,
  360. this.dataColumn16,
  361. this.dataColumn17});
  362. this.dataTable1.TableName = "Table1";
  363. //
  364. // dataColumn1
  365. //
  366. this.dataColumn1.Caption = "钢卷号";
  367. this.dataColumn1.ColumnName = "OLD_SAMPL_NO";
  368. //
  369. // dataColumn3
  370. //
  371. this.dataColumn3.Caption = "热轧牌号";
  372. this.dataColumn3.ColumnName = "SPEC_STL_GRD";
  373. //
  374. // dataColumn4
  375. //
  376. this.dataColumn4.Caption = "成品厚度";
  377. this.dataColumn4.ColumnName = "COIL_THK";
  378. //
  379. // dataColumn14
  380. //
  381. this.dataColumn14.Caption = "轧制时间";
  382. this.dataColumn14.ColumnName = "MILL_DTIME";
  383. //
  384. // dataColumn22
  385. //
  386. this.dataColumn22.Caption = "人库人";
  387. this.dataColumn22.ColumnName = "YARD_ENTRY_REG";
  388. //
  389. // dataColumn23
  390. //
  391. this.dataColumn23.Caption = "入库班次";
  392. this.dataColumn23.ColumnName = "YARD_ENTRY_SHIFT";
  393. //
  394. // dataColumn24
  395. //
  396. this.dataColumn24.Caption = "入库班组";
  397. this.dataColumn24.ColumnName = "YARD_ENTRY_GROUP";
  398. //
  399. // dataColumn25
  400. //
  401. this.dataColumn25.Caption = "订单区分";
  402. this.dataColumn25.ColumnName = "ORD_FL";
  403. //
  404. // dataColumn26
  405. //
  406. this.dataColumn26.Caption = "订单预排期";
  407. this.dataColumn26.ColumnName = "ORD_PLAN_DATA";
  408. //
  409. // dataColumn27
  410. //
  411. this.dataColumn27.Caption = "交货期";
  412. this.dataColumn27.ColumnName = "ORD_DEVLMT_DATE";
  413. //
  414. // dataColumn28
  415. //
  416. this.dataColumn28.Caption = "合同号";
  417. this.dataColumn28.ColumnName = "ORD_NO";
  418. //
  419. // dataColumn29
  420. //
  421. this.dataColumn29.Caption = "订单号";
  422. this.dataColumn29.ColumnName = "ORD_SEQ";
  423. //
  424. // dataColumn30
  425. //
  426. this.dataColumn30.Caption = "综合判定";
  427. this.dataColumn30.ColumnName = "TOT_DEC_GRD";
  428. //
  429. // dataColumn31
  430. //
  431. this.dataColumn31.Caption = "成份判定";
  432. this.dataColumn31.ColumnName = "INGR_DEC_GRD";
  433. //
  434. // dataColumn32
  435. //
  436. this.dataColumn32.Caption = "材质判定";
  437. this.dataColumn32.ColumnName = "MATRL_END_CAUSE_CD";
  438. //
  439. // dataColumn33
  440. //
  441. this.dataColumn33.Caption = "尺寸判定";
  442. this.dataColumn33.ColumnName = "SIZE_DEC_RST";
  443. //
  444. // dataColumn34
  445. //
  446. this.dataColumn34.Caption = "外观判定";
  447. this.dataColumn34.ColumnName = "EXTSHAPE_DEC_GRD";
  448. //
  449. // dataColumn2
  450. //
  451. this.dataColumn2.Caption = "选择";
  452. this.dataColumn2.ColumnName = "CHK";
  453. this.dataColumn2.DefaultValue = "FALSE";
  454. //
  455. // dataColumn41
  456. //
  457. this.dataColumn41.Caption = "包装等级";
  458. this.dataColumn41.ColumnName = "PACKAGE_LEVEL";
  459. //
  460. // dataColumn8
  461. //
  462. this.dataColumn8.ColumnName = "PRINT_TP";
  463. //
  464. // dataColumn9
  465. //
  466. this.dataColumn9.ColumnName = "C_ORD_USE_TP";
  467. //
  468. // dataColumn15
  469. //
  470. this.dataColumn15.ColumnName = "SPEC_ABBSYM";
  471. //
  472. // dataColumn16
  473. //
  474. this.dataColumn16.ColumnName = "DDC_STL_GRD";
  475. //
  476. // dataColumn17
  477. //
  478. this.dataColumn17.ColumnName = "PAKMTH_TP";
  479. //
  480. // checkBox4
  481. //
  482. this.checkBox4.BackColor = System.Drawing.Color.LightBlue;
  483. this.checkBox4.Location = new System.Drawing.Point(596, 44);
  484. this.checkBox4.Name = "checkBox4";
  485. this.checkBox4.Size = new System.Drawing.Size(92, 18);
  486. this.checkBox4.TabIndex = 109;
  487. this.checkBox4.Text = "许可证标识";
  488. this.checkBox4.UseVisualStyleBackColor = false;
  489. //
  490. // checkBox3
  491. //
  492. this.checkBox3.BackColor = System.Drawing.Color.LightBlue;
  493. this.checkBox3.Location = new System.Drawing.Point(596, 13);
  494. this.checkBox3.Name = "checkBox3";
  495. this.checkBox3.Size = new System.Drawing.Size(92, 18);
  496. this.checkBox3.TabIndex = 108;
  497. this.checkBox3.Text = "许可证号";
  498. this.checkBox3.UseVisualStyleBackColor = false;
  499. //
  500. // textBoxlicenseMark
  501. //
  502. this.textBoxlicenseMark.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  503. this.textBoxlicenseMark.Enabled = false;
  504. this.textBoxlicenseMark.Location = new System.Drawing.Point(694, 43);
  505. this.textBoxlicenseMark.Name = "textBoxlicenseMark";
  506. this.textBoxlicenseMark.Size = new System.Drawing.Size(110, 21);
  507. this.textBoxlicenseMark.TabIndex = 107;
  508. this.textBoxlicenseMark.Text = "WISI,MADE IN CHINA";
  509. //
  510. // textBoxLicenseNo
  511. //
  512. this.textBoxLicenseNo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  513. this.textBoxLicenseNo.Enabled = false;
  514. this.textBoxLicenseNo.Location = new System.Drawing.Point(694, 10);
  515. this.textBoxLicenseNo.Name = "textBoxLicenseNo";
  516. this.textBoxLicenseNo.Size = new System.Drawing.Size(110, 21);
  517. this.textBoxLicenseNo.TabIndex = 107;
  518. //
  519. // checkBox2
  520. //
  521. this.checkBox2.AutoSize = true;
  522. this.checkBox2.Location = new System.Drawing.Point(-381, 113);
  523. this.checkBox2.Name = "checkBox2";
  524. this.checkBox2.Size = new System.Drawing.Size(60, 16);
  525. this.checkBox2.TabIndex = 106;
  526. this.checkBox2.Text = "合同号";
  527. this.checkBox2.UseVisualStyleBackColor = true;
  528. //
  529. // checkBox1
  530. //
  531. this.checkBox1.AutoSize = true;
  532. this.checkBox1.Location = new System.Drawing.Point(-378, 46);
  533. this.checkBox1.Name = "checkBox1";
  534. this.checkBox1.Size = new System.Drawing.Size(60, 16);
  535. this.checkBox1.TabIndex = 106;
  536. this.checkBox1.Text = "合同号";
  537. this.checkBox1.UseVisualStyleBackColor = true;
  538. //
  539. // checkBoxORD
  540. //
  541. this.checkBoxORD.BackColor = System.Drawing.Color.LightBlue;
  542. this.checkBoxORD.Location = new System.Drawing.Point(4, 44);
  543. this.checkBoxORD.Name = "checkBoxORD";
  544. this.checkBoxORD.Size = new System.Drawing.Size(75, 18);
  545. this.checkBoxORD.TabIndex = 106;
  546. this.checkBoxORD.Text = " 合同号";
  547. this.checkBoxORD.UseVisualStyleBackColor = false;
  548. //
  549. // label13
  550. //
  551. this.label13.BackColor = System.Drawing.Color.LightBlue;
  552. this.label13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  553. this.label13.Location = new System.Drawing.Point(407, 77);
  554. this.label13.Name = "label13";
  555. this.label13.Size = new System.Drawing.Size(72, 21);
  556. this.label13.TabIndex = 105;
  557. this.label13.Text = "炉号";
  558. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  559. //
  560. // label14
  561. //
  562. this.label14.BackColor = System.Drawing.Color.LightBlue;
  563. this.label14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  564. this.label14.Location = new System.Drawing.Point(407, 43);
  565. this.label14.Name = "label14";
  566. this.label14.Size = new System.Drawing.Size(72, 21);
  567. this.label14.TabIndex = 105;
  568. this.label14.Text = "订单宽度";
  569. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  570. //
  571. // label15
  572. //
  573. this.label15.BackColor = System.Drawing.Color.LightBlue;
  574. this.label15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  575. this.label15.Location = new System.Drawing.Point(222, 43);
  576. this.label15.Name = "label15";
  577. this.label15.Size = new System.Drawing.Size(80, 21);
  578. this.label15.TabIndex = 104;
  579. this.label15.Text = "订单厚度";
  580. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  581. //
  582. // textBox14
  583. //
  584. this.textBox14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  585. this.textBox14.Location = new System.Drawing.Point(480, 43);
  586. this.textBox14.MaxLength = 8;
  587. this.textBox14.Name = "textBox14";
  588. this.textBox14.Size = new System.Drawing.Size(84, 21);
  589. this.textBox14.TabIndex = 103;
  590. //
  591. // textBox15
  592. //
  593. this.textBox15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  594. this.textBox15.Location = new System.Drawing.Point(304, 43);
  595. this.textBox15.MaxLength = 8;
  596. this.textBox15.Name = "textBox15";
  597. this.textBox15.Size = new System.Drawing.Size(85, 21);
  598. this.textBox15.TabIndex = 102;
  599. //
  600. // label10
  601. //
  602. this.label10.BackColor = System.Drawing.Color.LightBlue;
  603. this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  604. this.label10.Location = new System.Drawing.Point(3, 77);
  605. this.label10.Name = "label10";
  606. this.label10.Size = new System.Drawing.Size(80, 21);
  607. this.label10.TabIndex = 101;
  608. this.label10.Text = "牌号";
  609. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  610. //
  611. // label11
  612. //
  613. this.label11.BackColor = System.Drawing.Color.LightBlue;
  614. this.label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  615. this.label11.Location = new System.Drawing.Point(3, 10);
  616. this.label11.Name = "label11";
  617. this.label11.Size = new System.Drawing.Size(80, 21);
  618. this.label11.TabIndex = 101;
  619. this.label11.Text = "钢卷号";
  620. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  621. //
  622. // label12
  623. //
  624. this.label12.BackColor = System.Drawing.Color.LightBlue;
  625. this.label12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  626. this.label12.Location = new System.Drawing.Point(222, 77);
  627. this.label12.Name = "label12";
  628. this.label12.Size = new System.Drawing.Size(80, 21);
  629. this.label12.TabIndex = 101;
  630. this.label12.Text = "标准号";
  631. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  632. //
  633. // label16
  634. //
  635. this.label16.BackColor = System.Drawing.Color.LightBlue;
  636. this.label16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  637. this.label16.Location = new System.Drawing.Point(222, 10);
  638. this.label16.Name = "label16";
  639. this.label16.Size = new System.Drawing.Size(80, 21);
  640. this.label16.TabIndex = 101;
  641. this.label16.Text = "重量";
  642. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  643. //
  644. // label17
  645. //
  646. this.label17.BackColor = System.Drawing.Color.LightBlue;
  647. this.label17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  648. this.label17.Location = new System.Drawing.Point(407, 10);
  649. this.label17.Name = "label17";
  650. this.label17.Size = new System.Drawing.Size(72, 21);
  651. this.label17.TabIndex = 101;
  652. this.label17.Text = "生产时间";
  653. this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  654. //
  655. // textBox12
  656. //
  657. this.textBox12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  658. this.textBox12.Location = new System.Drawing.Point(480, 10);
  659. this.textBox12.MaxLength = 20;
  660. this.textBox12.Name = "textBox12";
  661. this.textBox12.Size = new System.Drawing.Size(84, 21);
  662. this.textBox12.TabIndex = 100;
  663. //
  664. // textBox13
  665. //
  666. this.textBox13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  667. this.textBox13.Location = new System.Drawing.Point(480, 77);
  668. this.textBox13.MaxLength = 20;
  669. this.textBox13.Name = "textBox13";
  670. this.textBox13.Size = new System.Drawing.Size(84, 21);
  671. this.textBox13.TabIndex = 98;
  672. //
  673. // textBox10
  674. //
  675. this.textBox10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  676. this.textBox10.Location = new System.Drawing.Point(304, 10);
  677. this.textBox10.MaxLength = 10;
  678. this.textBox10.Name = "textBox10";
  679. this.textBox10.Size = new System.Drawing.Size(85, 21);
  680. this.textBox10.TabIndex = 96;
  681. //
  682. // textBox8
  683. //
  684. this.textBox8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  685. this.textBox8.Location = new System.Drawing.Point(304, 77);
  686. this.textBox8.MaxLength = 20;
  687. this.textBox8.Name = "textBox8";
  688. this.textBox8.Size = new System.Drawing.Size(84, 21);
  689. this.textBox8.TabIndex = 94;
  690. //
  691. // textBox9
  692. //
  693. this.textBox9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  694. this.textBox9.Enabled = false;
  695. this.textBox9.Location = new System.Drawing.Point(171, 43);
  696. this.textBox9.MaxLength = 3;
  697. this.textBox9.Name = "textBox9";
  698. this.textBox9.Size = new System.Drawing.Size(28, 21);
  699. this.textBox9.TabIndex = 92;
  700. //
  701. // textBox11
  702. //
  703. this.textBox11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  704. this.textBox11.Enabled = false;
  705. this.textBox11.Location = new System.Drawing.Point(82, 43);
  706. this.textBox11.MaxLength = 20;
  707. this.textBox11.Name = "textBox11";
  708. this.textBox11.Size = new System.Drawing.Size(89, 21);
  709. this.textBox11.TabIndex = 86;
  710. //
  711. // textBox16
  712. //
  713. this.textBox16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  714. this.textBox16.Location = new System.Drawing.Point(84, 10);
  715. this.textBox16.MaxLength = 20;
  716. this.textBox16.Name = "textBox16";
  717. this.textBox16.Size = new System.Drawing.Size(113, 21);
  718. this.textBox16.TabIndex = 85;
  719. //
  720. // textBox17
  721. //
  722. this.textBox17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  723. this.textBox17.Location = new System.Drawing.Point(84, 77);
  724. this.textBox17.MaxLength = 20;
  725. this.textBox17.Name = "textBox17";
  726. this.textBox17.Size = new System.Drawing.Size(113, 21);
  727. this.textBox17.TabIndex = 82;
  728. //
  729. // checkBox5
  730. //
  731. this.checkBox5.BackColor = System.Drawing.Color.LightBlue;
  732. this.checkBox5.Location = new System.Drawing.Point(596, 44);
  733. this.checkBox5.Name = "checkBox5";
  734. this.checkBox5.Size = new System.Drawing.Size(92, 18);
  735. this.checkBox5.TabIndex = 109;
  736. this.checkBox5.Text = "许可证标识";
  737. this.checkBox5.UseVisualStyleBackColor = false;
  738. //
  739. // checkBox6
  740. //
  741. this.checkBox6.BackColor = System.Drawing.Color.LightBlue;
  742. this.checkBox6.Location = new System.Drawing.Point(596, 13);
  743. this.checkBox6.Name = "checkBox6";
  744. this.checkBox6.Size = new System.Drawing.Size(92, 18);
  745. this.checkBox6.TabIndex = 108;
  746. this.checkBox6.Text = "许可证号";
  747. this.checkBox6.UseVisualStyleBackColor = false;
  748. //
  749. // textBox18
  750. //
  751. this.textBox18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  752. this.textBox18.Enabled = false;
  753. this.textBox18.Location = new System.Drawing.Point(694, 43);
  754. this.textBox18.Name = "textBox18";
  755. this.textBox18.Size = new System.Drawing.Size(110, 21);
  756. this.textBox18.TabIndex = 107;
  757. this.textBox18.Text = "WISI,MADE IN CHINA";
  758. //
  759. // textBox19
  760. //
  761. this.textBox19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  762. this.textBox19.Enabled = false;
  763. this.textBox19.Location = new System.Drawing.Point(694, 10);
  764. this.textBox19.Name = "textBox19";
  765. this.textBox19.Size = new System.Drawing.Size(110, 21);
  766. this.textBox19.TabIndex = 107;
  767. //
  768. // checkBox7
  769. //
  770. this.checkBox7.AutoSize = true;
  771. this.checkBox7.Location = new System.Drawing.Point(-381, 113);
  772. this.checkBox7.Name = "checkBox7";
  773. this.checkBox7.Size = new System.Drawing.Size(60, 16);
  774. this.checkBox7.TabIndex = 106;
  775. this.checkBox7.Text = "合同号";
  776. this.checkBox7.UseVisualStyleBackColor = true;
  777. //
  778. // checkBox8
  779. //
  780. this.checkBox8.AutoSize = true;
  781. this.checkBox8.Location = new System.Drawing.Point(-378, 46);
  782. this.checkBox8.Name = "checkBox8";
  783. this.checkBox8.Size = new System.Drawing.Size(60, 16);
  784. this.checkBox8.TabIndex = 106;
  785. this.checkBox8.Text = "合同号";
  786. this.checkBox8.UseVisualStyleBackColor = true;
  787. //
  788. // checkBox9
  789. //
  790. this.checkBox9.BackColor = System.Drawing.Color.LightBlue;
  791. this.checkBox9.Location = new System.Drawing.Point(4, 44);
  792. this.checkBox9.Name = "checkBox9";
  793. this.checkBox9.Size = new System.Drawing.Size(75, 18);
  794. this.checkBox9.TabIndex = 106;
  795. this.checkBox9.Text = " 合同号";
  796. this.checkBox9.UseVisualStyleBackColor = false;
  797. //
  798. // label18
  799. //
  800. this.label18.BackColor = System.Drawing.Color.LightBlue;
  801. this.label18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  802. this.label18.Location = new System.Drawing.Point(407, 77);
  803. this.label18.Name = "label18";
  804. this.label18.Size = new System.Drawing.Size(72, 21);
  805. this.label18.TabIndex = 105;
  806. this.label18.Text = "炉号";
  807. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  808. //
  809. // label19
  810. //
  811. this.label19.BackColor = System.Drawing.Color.LightBlue;
  812. this.label19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  813. this.label19.Location = new System.Drawing.Point(407, 43);
  814. this.label19.Name = "label19";
  815. this.label19.Size = new System.Drawing.Size(72, 21);
  816. this.label19.TabIndex = 105;
  817. this.label19.Text = "订单宽度";
  818. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  819. //
  820. // label20
  821. //
  822. this.label20.BackColor = System.Drawing.Color.LightBlue;
  823. this.label20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  824. this.label20.Location = new System.Drawing.Point(222, 43);
  825. this.label20.Name = "label20";
  826. this.label20.Size = new System.Drawing.Size(80, 21);
  827. this.label20.TabIndex = 104;
  828. this.label20.Text = "订单厚度";
  829. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  830. //
  831. // textBox20
  832. //
  833. this.textBox20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  834. this.textBox20.Location = new System.Drawing.Point(480, 43);
  835. this.textBox20.MaxLength = 8;
  836. this.textBox20.Name = "textBox20";
  837. this.textBox20.Size = new System.Drawing.Size(84, 21);
  838. this.textBox20.TabIndex = 103;
  839. //
  840. // textBox21
  841. //
  842. this.textBox21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  843. this.textBox21.Location = new System.Drawing.Point(304, 43);
  844. this.textBox21.MaxLength = 8;
  845. this.textBox21.Name = "textBox21";
  846. this.textBox21.Size = new System.Drawing.Size(85, 21);
  847. this.textBox21.TabIndex = 102;
  848. //
  849. // label21
  850. //
  851. this.label21.BackColor = System.Drawing.Color.LightBlue;
  852. this.label21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  853. this.label21.Location = new System.Drawing.Point(3, 77);
  854. this.label21.Name = "label21";
  855. this.label21.Size = new System.Drawing.Size(80, 21);
  856. this.label21.TabIndex = 101;
  857. this.label21.Text = "牌号";
  858. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  859. //
  860. // label22
  861. //
  862. this.label22.BackColor = System.Drawing.Color.LightBlue;
  863. this.label22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  864. this.label22.Location = new System.Drawing.Point(3, 10);
  865. this.label22.Name = "label22";
  866. this.label22.Size = new System.Drawing.Size(80, 21);
  867. this.label22.TabIndex = 101;
  868. this.label22.Text = "钢卷号";
  869. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  870. //
  871. // label23
  872. //
  873. this.label23.BackColor = System.Drawing.Color.LightBlue;
  874. this.label23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  875. this.label23.Location = new System.Drawing.Point(222, 77);
  876. this.label23.Name = "label23";
  877. this.label23.Size = new System.Drawing.Size(80, 21);
  878. this.label23.TabIndex = 101;
  879. this.label23.Text = "标准号";
  880. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  881. //
  882. // label24
  883. //
  884. this.label24.BackColor = System.Drawing.Color.LightBlue;
  885. this.label24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  886. this.label24.Location = new System.Drawing.Point(222, 10);
  887. this.label24.Name = "label24";
  888. this.label24.Size = new System.Drawing.Size(80, 21);
  889. this.label24.TabIndex = 101;
  890. this.label24.Text = "重量";
  891. this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  892. //
  893. // label25
  894. //
  895. this.label25.BackColor = System.Drawing.Color.LightBlue;
  896. this.label25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  897. this.label25.Location = new System.Drawing.Point(407, 10);
  898. this.label25.Name = "label25";
  899. this.label25.Size = new System.Drawing.Size(72, 21);
  900. this.label25.TabIndex = 101;
  901. this.label25.Text = "生产时间";
  902. this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  903. //
  904. // textBox22
  905. //
  906. this.textBox22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  907. this.textBox22.Location = new System.Drawing.Point(480, 10);
  908. this.textBox22.MaxLength = 20;
  909. this.textBox22.Name = "textBox22";
  910. this.textBox22.Size = new System.Drawing.Size(84, 21);
  911. this.textBox22.TabIndex = 100;
  912. //
  913. // textBox23
  914. //
  915. this.textBox23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  916. this.textBox23.Location = new System.Drawing.Point(480, 77);
  917. this.textBox23.MaxLength = 20;
  918. this.textBox23.Name = "textBox23";
  919. this.textBox23.Size = new System.Drawing.Size(84, 21);
  920. this.textBox23.TabIndex = 98;
  921. //
  922. // textBox24
  923. //
  924. this.textBox24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  925. this.textBox24.Location = new System.Drawing.Point(304, 10);
  926. this.textBox24.MaxLength = 10;
  927. this.textBox24.Name = "textBox24";
  928. this.textBox24.Size = new System.Drawing.Size(85, 21);
  929. this.textBox24.TabIndex = 96;
  930. //
  931. // textBox25
  932. //
  933. this.textBox25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  934. this.textBox25.Location = new System.Drawing.Point(304, 77);
  935. this.textBox25.MaxLength = 20;
  936. this.textBox25.Name = "textBox25";
  937. this.textBox25.Size = new System.Drawing.Size(84, 21);
  938. this.textBox25.TabIndex = 94;
  939. //
  940. // textBox26
  941. //
  942. this.textBox26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  943. this.textBox26.Enabled = false;
  944. this.textBox26.Location = new System.Drawing.Point(171, 43);
  945. this.textBox26.MaxLength = 3;
  946. this.textBox26.Name = "textBox26";
  947. this.textBox26.Size = new System.Drawing.Size(28, 21);
  948. this.textBox26.TabIndex = 92;
  949. //
  950. // textBox27
  951. //
  952. this.textBox27.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  953. this.textBox27.Enabled = false;
  954. this.textBox27.Location = new System.Drawing.Point(82, 43);
  955. this.textBox27.MaxLength = 20;
  956. this.textBox27.Name = "textBox27";
  957. this.textBox27.Size = new System.Drawing.Size(89, 21);
  958. this.textBox27.TabIndex = 86;
  959. //
  960. // textBox28
  961. //
  962. this.textBox28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  963. this.textBox28.Location = new System.Drawing.Point(84, 10);
  964. this.textBox28.MaxLength = 20;
  965. this.textBox28.Name = "textBox28";
  966. this.textBox28.Size = new System.Drawing.Size(113, 21);
  967. this.textBox28.TabIndex = 85;
  968. //
  969. // textBox29
  970. //
  971. this.textBox29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  972. this.textBox29.Location = new System.Drawing.Point(84, 77);
  973. this.textBox29.MaxLength = 20;
  974. this.textBox29.Name = "textBox29";
  975. this.textBox29.Size = new System.Drawing.Size(113, 21);
  976. this.textBox29.TabIndex = 82;
  977. //
  978. // ultraPanel2
  979. //
  980. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  981. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  982. this.ultraPanel2.Name = "ultraPanel2";
  983. this.ultraPanel2.Size = new System.Drawing.Size(1135, 522);
  984. this.ultraPanel2.TabIndex = 4;
  985. //
  986. // ultraGroupBox1
  987. //
  988. appearance1.BackColor = System.Drawing.Color.Gainsboro;
  989. this.ultraGroupBox1.Appearance = appearance1;
  990. this.ultraGroupBox1.Controls.Add(this.panel1);
  991. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  992. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  993. this.ultraGroupBox1.Name = "ultraGroupBox1";
  994. this.ultraGroupBox1.Size = new System.Drawing.Size(1135, 522);
  995. this.ultraGroupBox1.TabIndex = 5;
  996. //
  997. // panel1
  998. //
  999. this.panel1.Controls.Add(this.ultraPanel3);
  1000. this.panel1.Controls.Add(this.panel3);
  1001. this.panel1.Controls.Add(this.ultraExpandableGroupBox1);
  1002. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1003. this.panel1.Location = new System.Drawing.Point(3, 0);
  1004. this.panel1.Name = "panel1";
  1005. this.panel1.Size = new System.Drawing.Size(1129, 519);
  1006. this.panel1.TabIndex = 3;
  1007. //
  1008. // ultraPanel3
  1009. //
  1010. //
  1011. // ultraPanel3.ClientArea
  1012. //
  1013. this.ultraPanel3.ClientArea.Controls.Add(this.ultraGrid1);
  1014. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1015. this.ultraPanel3.Location = new System.Drawing.Point(0, 100);
  1016. this.ultraPanel3.Name = "ultraPanel3";
  1017. this.ultraPanel3.Size = new System.Drawing.Size(1129, 285);
  1018. this.ultraPanel3.TabIndex = 90;
  1019. //
  1020. // ultraGrid1
  1021. //
  1022. this.ultraGrid1.DataSource = this.dataSet1;
  1023. this.ultraGrid1.DisplayLayout.AutoFitStyle = Infragistics.Win.UltraWinGrid.AutoFitStyle.ExtendLastColumn;
  1024. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1025. ultraGridColumn1.Header.VisiblePosition = 0;
  1026. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 2;
  1027. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1028. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(104, 0);
  1029. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  1030. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  1031. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1032. ultraGridColumn2.Header.VisiblePosition = 2;
  1033. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
  1034. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1035. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  1036. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  1037. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  1038. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1039. ultraGridColumn3.Header.VisiblePosition = 3;
  1040. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 16;
  1041. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1042. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1043. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  1044. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  1045. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1046. ultraGridColumn4.Header.VisiblePosition = 4;
  1047. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 18;
  1048. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  1049. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1050. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  1051. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  1052. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1053. ultraGridColumn5.Header.VisiblePosition = 5;
  1054. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 20;
  1055. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1056. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  1057. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  1058. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  1059. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1060. ultraGridColumn6.Header.VisiblePosition = 6;
  1061. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 22;
  1062. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  1063. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1064. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  1065. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  1066. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1067. ultraGridColumn7.Header.VisiblePosition = 7;
  1068. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 24;
  1069. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  1070. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
  1071. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  1072. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  1073. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1074. ultraGridColumn8.Header.VisiblePosition = 1;
  1075. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 14;
  1076. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  1077. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
  1078. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  1079. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  1080. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1081. ultraGridColumn9.Header.VisiblePosition = 8;
  1082. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 26;
  1083. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1084. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
  1085. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  1086. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  1087. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1088. ultraGridColumn10.Header.VisiblePosition = 9;
  1089. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 28;
  1090. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1091. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
  1092. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  1093. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  1094. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1095. ultraGridColumn11.Header.VisiblePosition = 10;
  1096. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 30;
  1097. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1098. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(115, 0);
  1099. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  1100. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  1101. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1102. ultraGridColumn12.Header.VisiblePosition = 11;
  1103. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 32;
  1104. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1105. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  1106. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  1107. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  1108. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1109. ultraGridColumn13.Header.VisiblePosition = 12;
  1110. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 34;
  1111. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1112. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
  1113. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  1114. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  1115. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1116. ultraGridColumn14.Header.VisiblePosition = 13;
  1117. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 36;
  1118. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1119. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
  1120. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  1121. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  1122. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1123. ultraGridColumn15.Header.VisiblePosition = 14;
  1124. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 38;
  1125. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1126. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1127. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  1128. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  1129. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1130. ultraGridColumn16.Header.VisiblePosition = 15;
  1131. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 40;
  1132. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1133. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
  1134. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  1135. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  1136. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1137. ultraGridColumn17.Header.VisiblePosition = 16;
  1138. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 42;
  1139. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1140. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  1141. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  1142. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  1143. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1144. ultraGridColumn18.Header.VisiblePosition = 17;
  1145. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 44;
  1146. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1147. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  1148. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  1149. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  1150. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1151. ultraGridColumn19.Header.VisiblePosition = 18;
  1152. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 46;
  1153. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1154. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
  1155. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  1156. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  1157. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1158. ultraGridColumn20.Header.VisiblePosition = 19;
  1159. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 48;
  1160. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1161. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(74, 0);
  1162. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  1163. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  1164. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1165. ultraGridColumn21.Header.VisiblePosition = 20;
  1166. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 50;
  1167. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1168. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1169. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  1170. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  1171. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1172. ultraGridColumn22.Header.VisiblePosition = 21;
  1173. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 52;
  1174. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1175. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
  1176. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  1177. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  1178. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1179. ultraGridColumn23.Header.VisiblePosition = 22;
  1180. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 54;
  1181. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1182. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1183. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1184. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1185. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1186. ultraGridColumn24.Header.VisiblePosition = 23;
  1187. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 56;
  1188. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1189. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1190. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1191. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1192. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1193. ultraGridColumn25.Header.VisiblePosition = 24;
  1194. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 58;
  1195. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1196. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  1197. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  1198. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  1199. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1200. ultraGridColumn26.Header.VisiblePosition = 25;
  1201. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 60;
  1202. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1203. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
  1204. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  1205. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  1206. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1207. ultraGridColumn27.Header.VisiblePosition = 26;
  1208. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 62;
  1209. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1210. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  1211. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  1212. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1213. ultraGridColumn28.Header.VisiblePosition = 27;
  1214. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 66;
  1215. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1216. ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  1217. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  1218. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  1219. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1220. ultraGridColumn29.Header.VisiblePosition = 28;
  1221. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 68;
  1222. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1223. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  1224. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  1225. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1226. ultraGridColumn30.Header.VisiblePosition = 29;
  1227. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 4;
  1228. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1229. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
  1230. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  1231. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  1232. ultraGridColumn31.Header.VisiblePosition = 30;
  1233. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 0;
  1234. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1235. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
  1236. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  1237. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  1238. ultraGridColumn31.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1239. appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1240. ultraGridColumn32.CellAppearance = appearance3;
  1241. ultraGridColumn32.Header.VisiblePosition = 31;
  1242. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 10;
  1243. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1244. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  1245. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  1246. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
  1247. ultraGridColumn32.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
  1248. ultraGridColumn33.Header.Caption = "打印区分";
  1249. ultraGridColumn33.Header.VisiblePosition = 32;
  1250. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 70;
  1251. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1252. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
  1253. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1254. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1255. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1256. ultraGridColumn34.Header.Caption = "订单用途";
  1257. ultraGridColumn34.Header.VisiblePosition = 33;
  1258. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 64;
  1259. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1260. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1261. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1262. ultraGridColumn35.Header.VisiblePosition = 34;
  1263. ultraGridColumn35.Hidden = true;
  1264. ultraGridColumn36.Header.Caption = "客户牌号";
  1265. ultraGridColumn36.Header.VisiblePosition = 35;
  1266. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 8;
  1267. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1268. ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1269. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
  1270. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  1271. ultraGridColumn37.Header.Caption = "包装要求";
  1272. ultraGridColumn37.Header.VisiblePosition = 36;
  1273. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 12;
  1274. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  1275. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  1276. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
  1277. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
  1278. ultraGridBand1.Columns.AddRange(new object[] {
  1279. ultraGridColumn1,
  1280. ultraGridColumn2,
  1281. ultraGridColumn3,
  1282. ultraGridColumn4,
  1283. ultraGridColumn5,
  1284. ultraGridColumn6,
  1285. ultraGridColumn7,
  1286. ultraGridColumn8,
  1287. ultraGridColumn9,
  1288. ultraGridColumn10,
  1289. ultraGridColumn11,
  1290. ultraGridColumn12,
  1291. ultraGridColumn13,
  1292. ultraGridColumn14,
  1293. ultraGridColumn15,
  1294. ultraGridColumn16,
  1295. ultraGridColumn17,
  1296. ultraGridColumn18,
  1297. ultraGridColumn19,
  1298. ultraGridColumn20,
  1299. ultraGridColumn21,
  1300. ultraGridColumn22,
  1301. ultraGridColumn23,
  1302. ultraGridColumn24,
  1303. ultraGridColumn25,
  1304. ultraGridColumn26,
  1305. ultraGridColumn27,
  1306. ultraGridColumn28,
  1307. ultraGridColumn29,
  1308. ultraGridColumn30,
  1309. ultraGridColumn31,
  1310. ultraGridColumn32,
  1311. ultraGridColumn33,
  1312. ultraGridColumn34,
  1313. ultraGridColumn35,
  1314. ultraGridColumn36,
  1315. ultraGridColumn37});
  1316. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1317. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1318. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  1319. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  1320. appearance10.BackColor = System.Drawing.Color.SkyBlue;
  1321. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  1322. appearance12.BackColor = System.Drawing.Color.GhostWhite;
  1323. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance12;
  1324. this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.HeaderIcons;
  1325. appearance13.BackColor = System.Drawing.Color.LightSteelBlue;
  1326. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance13;
  1327. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1328. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1329. appearance14.BackColor = System.Drawing.Color.LightSteelBlue;
  1330. this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance14;
  1331. appearance15.BackColor = System.Drawing.Color.LightSteelBlue;
  1332. this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderAppearance = appearance15;
  1333. this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1334. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1335. this.ultraGrid1.DisplayLayout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.Standard;
  1336. this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
  1337. this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.None;
  1338. this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1339. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1340. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1341. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1342. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1343. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  1344. this.ultraGrid1.Name = "ultraGrid1";
  1345. this.ultraGrid1.Size = new System.Drawing.Size(1129, 285);
  1346. this.ultraGrid1.TabIndex = 2;
  1347. this.ultraGrid1.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid1_DoubleClickRow);
  1348. this.ultraGrid1.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_CellChange);
  1349. //
  1350. // panel3
  1351. //
  1352. this.panel3.Controls.Add(this.checkBox15);
  1353. this.panel3.Controls.Add(this.label5);
  1354. this.panel3.Controls.Add(this.label6);
  1355. this.panel3.Controls.Add(this.label8);
  1356. this.panel3.Controls.Add(this.ultraComboEditor1);
  1357. this.panel3.Controls.Add(this.label2);
  1358. this.panel3.Controls.Add(this.label7);
  1359. this.panel3.Controls.Add(this.ultraComboEditor2);
  1360. this.panel3.Controls.Add(this.textBox5);
  1361. this.panel3.Controls.Add(this.textBox1);
  1362. this.panel3.Controls.Add(this.label9);
  1363. this.panel3.Controls.Add(this.label1);
  1364. this.panel3.Controls.Add(this.textBox7);
  1365. this.panel3.Controls.Add(this.ultraDateTimeEditor1);
  1366. this.panel3.Controls.Add(this.textBox3);
  1367. this.panel3.Controls.Add(this.textBox2);
  1368. this.panel3.Controls.Add(this.textBox6);
  1369. this.panel3.Controls.Add(this.label4);
  1370. this.panel3.Controls.Add(this.label3);
  1371. this.panel3.Controls.Add(this.textBox4);
  1372. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  1373. this.panel3.Location = new System.Drawing.Point(0, 0);
  1374. this.panel3.Name = "panel3";
  1375. this.panel3.Size = new System.Drawing.Size(1129, 100);
  1376. this.panel3.TabIndex = 89;
  1377. //
  1378. // label5
  1379. //
  1380. this.label5.BackColor = System.Drawing.Color.LightBlue;
  1381. this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1382. this.label5.Location = new System.Drawing.Point(19, 19);
  1383. this.label5.Name = "label5";
  1384. this.label5.Size = new System.Drawing.Size(83, 21);
  1385. this.label5.TabIndex = 85;
  1386. this.label5.Text = "包装状态";
  1387. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1388. //
  1389. // label6
  1390. //
  1391. this.label6.BackColor = System.Drawing.Color.LightBlue;
  1392. this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1393. this.label6.Location = new System.Drawing.Point(233, 51);
  1394. this.label6.Name = "label6";
  1395. this.label6.Size = new System.Drawing.Size(20, 21);
  1396. this.label6.TabIndex = 80;
  1397. this.label6.Text = "总";
  1398. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1399. //
  1400. // label8
  1401. //
  1402. this.label8.BackColor = System.Drawing.Color.LightBlue;
  1403. this.label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1404. this.label8.Location = new System.Drawing.Point(333, 51);
  1405. this.label8.Name = "label8";
  1406. this.label8.Size = new System.Drawing.Size(20, 21);
  1407. this.label8.TabIndex = 80;
  1408. this.label8.Text = "总";
  1409. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1410. //
  1411. // ultraComboEditor1
  1412. //
  1413. this.ultraComboEditor1.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1414. this.ultraComboEditor1.Location = new System.Drawing.Point(631, 51);
  1415. this.ultraComboEditor1.Name = "ultraComboEditor1";
  1416. this.ultraComboEditor1.Size = new System.Drawing.Size(75, 21);
  1417. this.ultraComboEditor1.TabIndex = 83;
  1418. //
  1419. // label2
  1420. //
  1421. this.label2.BackColor = System.Drawing.Color.LightBlue;
  1422. this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1423. this.label2.Location = new System.Drawing.Point(378, 19);
  1424. this.label2.Name = "label2";
  1425. this.label2.Size = new System.Drawing.Size(50, 21);
  1426. this.label2.TabIndex = 80;
  1427. this.label2.Text = "订单号";
  1428. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1429. //
  1430. // label7
  1431. //
  1432. this.label7.BackColor = System.Drawing.Color.LightBlue;
  1433. this.label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1434. this.label7.Location = new System.Drawing.Point(297, 51);
  1435. this.label7.Name = "label7";
  1436. this.label7.Size = new System.Drawing.Size(20, 21);
  1437. this.label7.TabIndex = 80;
  1438. this.label7.Text = "卷";
  1439. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1440. //
  1441. // ultraComboEditor2
  1442. //
  1443. appearance4.BorderColor = System.Drawing.Color.Black;
  1444. this.ultraComboEditor2.Appearance = appearance4;
  1445. this.ultraComboEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1446. this.ultraComboEditor2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1447. valueListItem1.DataValue = "0";
  1448. valueListItem1.DisplayText = "包装作业待机";
  1449. valueListItem2.DataValue = "1";
  1450. valueListItem2.DisplayText = "包装完成";
  1451. this.ultraComboEditor2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1452. valueListItem1,
  1453. valueListItem2});
  1454. this.ultraComboEditor2.Location = new System.Drawing.Point(102, 19);
  1455. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1456. this.ultraComboEditor2.Size = new System.Drawing.Size(119, 21);
  1457. this.ultraComboEditor2.TabIndex = 86;
  1458. //
  1459. // textBox5
  1460. //
  1461. this.textBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1462. this.textBox5.Location = new System.Drawing.Point(353, 51);
  1463. this.textBox5.MaxLength = 5;
  1464. this.textBox5.Name = "textBox5";
  1465. this.textBox5.Size = new System.Drawing.Size(75, 21);
  1466. this.textBox5.TabIndex = 79;
  1467. //
  1468. // textBox1
  1469. //
  1470. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1471. this.textBox1.Location = new System.Drawing.Point(283, 19);
  1472. this.textBox1.MaxLength = 15;
  1473. this.textBox1.Name = "textBox1";
  1474. this.textBox1.Size = new System.Drawing.Size(84, 21);
  1475. this.textBox1.TabIndex = 77;
  1476. //
  1477. // label9
  1478. //
  1479. this.label9.BackColor = System.Drawing.Color.LightBlue;
  1480. this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1481. this.label9.Location = new System.Drawing.Point(428, 51);
  1482. this.label9.Name = "label9";
  1483. this.label9.Size = new System.Drawing.Size(20, 21);
  1484. this.label9.TabIndex = 80;
  1485. this.label9.Text = "KG";
  1486. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1487. //
  1488. // label1
  1489. //
  1490. this.label1.BackColor = System.Drawing.Color.LightBlue;
  1491. this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1492. this.label1.Location = new System.Drawing.Point(233, 19);
  1493. this.label1.Name = "label1";
  1494. this.label1.Size = new System.Drawing.Size(50, 21);
  1495. this.label1.TabIndex = 78;
  1496. this.label1.Text = "合同号";
  1497. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1498. //
  1499. // textBox7
  1500. //
  1501. this.textBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1502. this.textBox7.Location = new System.Drawing.Point(517, 51);
  1503. this.textBox7.MaxLength = 5;
  1504. this.textBox7.Name = "textBox7";
  1505. this.textBox7.Size = new System.Drawing.Size(44, 21);
  1506. this.textBox7.TabIndex = 79;
  1507. //
  1508. // ultraDateTimeEditor1
  1509. //
  1510. appearance2.BorderColor = System.Drawing.Color.Black;
  1511. this.ultraDateTimeEditor1.Appearance = appearance2;
  1512. this.ultraDateTimeEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1513. this.ultraDateTimeEditor1.Location = new System.Drawing.Point(102, 51);
  1514. this.ultraDateTimeEditor1.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw;
  1515. this.ultraDateTimeEditor1.MaskInput = "";
  1516. this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
  1517. this.ultraDateTimeEditor1.PromptChar = ' ';
  1518. this.ultraDateTimeEditor1.Size = new System.Drawing.Size(119, 21);
  1519. this.ultraDateTimeEditor1.TabIndex = 84;
  1520. //
  1521. // textBox3
  1522. //
  1523. this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1524. this.textBox3.Location = new System.Drawing.Point(546, 19);
  1525. this.textBox3.MaxLength = 15;
  1526. this.textBox3.Name = "textBox3";
  1527. this.textBox3.Size = new System.Drawing.Size(85, 21);
  1528. this.textBox3.TabIndex = 81;
  1529. //
  1530. // textBox2
  1531. //
  1532. this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1533. this.textBox2.Location = new System.Drawing.Point(428, 19);
  1534. this.textBox2.MaxLength = 5;
  1535. this.textBox2.Name = "textBox2";
  1536. this.textBox2.Size = new System.Drawing.Size(44, 21);
  1537. this.textBox2.TabIndex = 79;
  1538. //
  1539. // textBox6
  1540. //
  1541. this.textBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1542. this.textBox6.Location = new System.Drawing.Point(467, 51);
  1543. this.textBox6.MaxLength = 5;
  1544. this.textBox6.Name = "textBox6";
  1545. this.textBox6.Size = new System.Drawing.Size(44, 21);
  1546. this.textBox6.TabIndex = 79;
  1547. //
  1548. // label4
  1549. //
  1550. this.label4.BackColor = System.Drawing.Color.LightBlue;
  1551. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1552. this.label4.Location = new System.Drawing.Point(19, 51);
  1553. this.label4.Name = "label4";
  1554. this.label4.Size = new System.Drawing.Size(83, 21);
  1555. this.label4.TabIndex = 83;
  1556. this.label4.Text = "包装日期";
  1557. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1558. //
  1559. // label3
  1560. //
  1561. this.label3.BackColor = System.Drawing.Color.LightBlue;
  1562. this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1563. this.label3.Location = new System.Drawing.Point(495, 19);
  1564. this.label3.Name = "label3";
  1565. this.label3.Size = new System.Drawing.Size(50, 21);
  1566. this.label3.TabIndex = 82;
  1567. this.label3.Text = "钢卷号";
  1568. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1569. //
  1570. // textBox4
  1571. //
  1572. this.textBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1573. this.textBox4.Location = new System.Drawing.Point(253, 51);
  1574. this.textBox4.MaxLength = 5;
  1575. this.textBox4.Name = "textBox4";
  1576. this.textBox4.Size = new System.Drawing.Size(44, 21);
  1577. this.textBox4.TabIndex = 79;
  1578. //
  1579. // ultraExpandableGroupBox1
  1580. //
  1581. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1582. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1583. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1129, 134);
  1584. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 385);
  1585. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1586. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1129, 134);
  1587. this.ultraExpandableGroupBox1.TabIndex = 86;
  1588. this.ultraExpandableGroupBox1.Text = "编辑区域";
  1589. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1590. //
  1591. // ultraExpandableGroupBoxPanel1
  1592. //
  1593. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label36);
  1594. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox45);
  1595. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label34);
  1596. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox43);
  1597. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label35);
  1598. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox44);
  1599. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox42);
  1600. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox10);
  1601. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox11);
  1602. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox30);
  1603. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox31);
  1604. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox12);
  1605. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox13);
  1606. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox14);
  1607. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label26);
  1608. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label27);
  1609. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label28);
  1610. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox32);
  1611. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox33);
  1612. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label29);
  1613. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label30);
  1614. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label31);
  1615. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label32);
  1616. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label33);
  1617. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox34);
  1618. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox35);
  1619. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox36);
  1620. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox37);
  1621. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox38);
  1622. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox39);
  1623. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox40);
  1624. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox41);
  1625. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1626. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 20);
  1627. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1628. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1123, 111);
  1629. this.ultraExpandableGroupBoxPanel1.TabIndex = 1;
  1630. //
  1631. // label36
  1632. //
  1633. this.label36.BackColor = System.Drawing.Color.LightBlue;
  1634. this.label36.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1635. this.label36.Location = new System.Drawing.Point(830, 76);
  1636. this.label36.Name = "label36";
  1637. this.label36.Size = new System.Drawing.Size(80, 21);
  1638. this.label36.TabIndex = 116;
  1639. this.label36.Text = "客户牌号";
  1640. this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1641. //
  1642. // textBox45
  1643. //
  1644. this.textBox45.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1645. this.textBox45.Location = new System.Drawing.Point(911, 76);
  1646. this.textBox45.MaxLength = 20;
  1647. this.textBox45.Name = "textBox45";
  1648. this.textBox45.Size = new System.Drawing.Size(76, 21);
  1649. this.textBox45.TabIndex = 115;
  1650. //
  1651. // label34
  1652. //
  1653. this.label34.BackColor = System.Drawing.Color.LightBlue;
  1654. this.label34.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1655. this.label34.Location = new System.Drawing.Point(830, 43);
  1656. this.label34.Name = "label34";
  1657. this.label34.Size = new System.Drawing.Size(72, 21);
  1658. this.label34.TabIndex = 114;
  1659. this.label34.Text = "产品名称";
  1660. this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1661. //
  1662. // textBox43
  1663. //
  1664. this.textBox43.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1665. this.textBox43.Location = new System.Drawing.Point(903, 43);
  1666. this.textBox43.MaxLength = 8;
  1667. this.textBox43.Name = "textBox43";
  1668. this.textBox43.Size = new System.Drawing.Size(84, 21);
  1669. this.textBox43.TabIndex = 113;
  1670. //
  1671. // label35
  1672. //
  1673. this.label35.BackColor = System.Drawing.Color.LightBlue;
  1674. this.label35.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1675. this.label35.Location = new System.Drawing.Point(830, 10);
  1676. this.label35.Name = "label35";
  1677. this.label35.Size = new System.Drawing.Size(72, 21);
  1678. this.label35.TabIndex = 112;
  1679. this.label35.Text = "收货单位";
  1680. this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1681. //
  1682. // textBox44
  1683. //
  1684. this.textBox44.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1685. this.textBox44.Location = new System.Drawing.Point(903, 10);
  1686. this.textBox44.MaxLength = 20;
  1687. this.textBox44.Name = "textBox44";
  1688. this.textBox44.Size = new System.Drawing.Size(84, 21);
  1689. this.textBox44.TabIndex = 111;
  1690. //
  1691. // textBox42
  1692. //
  1693. this.textBox42.BackColor = System.Drawing.SystemColors.Control;
  1694. this.textBox42.ForeColor = System.Drawing.Color.Brown;
  1695. this.textBox42.Location = new System.Drawing.Point(596, 76);
  1696. this.textBox42.Name = "textBox42";
  1697. this.textBox42.ReadOnly = true;
  1698. this.textBox42.Size = new System.Drawing.Size(178, 21);
  1699. this.textBox42.TabIndex = 110;
  1700. this.textBox42.Text = "双击需要打印的行获取打印数据";
  1701. //
  1702. // checkBox10
  1703. //
  1704. this.checkBox10.BackColor = System.Drawing.Color.LightBlue;
  1705. this.checkBox10.Location = new System.Drawing.Point(596, 44);
  1706. this.checkBox10.Name = "checkBox10";
  1707. this.checkBox10.Size = new System.Drawing.Size(92, 18);
  1708. this.checkBox10.TabIndex = 109;
  1709. this.checkBox10.Text = "许可证标识";
  1710. this.checkBox10.UseVisualStyleBackColor = false;
  1711. this.checkBox10.CheckedChanged += new System.EventHandler(this.checkBox10_CheckedChanged);
  1712. //
  1713. // checkBox11
  1714. //
  1715. this.checkBox11.BackColor = System.Drawing.Color.LightBlue;
  1716. this.checkBox11.Location = new System.Drawing.Point(596, 13);
  1717. this.checkBox11.Name = "checkBox11";
  1718. this.checkBox11.Size = new System.Drawing.Size(92, 18);
  1719. this.checkBox11.TabIndex = 108;
  1720. this.checkBox11.Text = "许可证号";
  1721. this.checkBox11.UseVisualStyleBackColor = false;
  1722. this.checkBox11.CheckedChanged += new System.EventHandler(this.checkBox11_CheckedChanged);
  1723. //
  1724. // textBox30
  1725. //
  1726. this.textBox30.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1727. this.textBox30.Enabled = false;
  1728. this.textBox30.Location = new System.Drawing.Point(694, 43);
  1729. this.textBox30.Name = "textBox30";
  1730. this.textBox30.Size = new System.Drawing.Size(110, 21);
  1731. this.textBox30.TabIndex = 107;
  1732. this.textBox30.Text = "WISI,MADE IN CHINA";
  1733. //
  1734. // textBox31
  1735. //
  1736. this.textBox31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1737. this.textBox31.Enabled = false;
  1738. this.textBox31.Location = new System.Drawing.Point(694, 10);
  1739. this.textBox31.Name = "textBox31";
  1740. this.textBox31.Size = new System.Drawing.Size(110, 21);
  1741. this.textBox31.TabIndex = 107;
  1742. //
  1743. // checkBox12
  1744. //
  1745. this.checkBox12.AutoSize = true;
  1746. this.checkBox12.Location = new System.Drawing.Point(-381, 113);
  1747. this.checkBox12.Name = "checkBox12";
  1748. this.checkBox12.Size = new System.Drawing.Size(60, 16);
  1749. this.checkBox12.TabIndex = 106;
  1750. this.checkBox12.Text = "合同号";
  1751. this.checkBox12.UseVisualStyleBackColor = true;
  1752. //
  1753. // checkBox13
  1754. //
  1755. this.checkBox13.AutoSize = true;
  1756. this.checkBox13.Location = new System.Drawing.Point(-378, 46);
  1757. this.checkBox13.Name = "checkBox13";
  1758. this.checkBox13.Size = new System.Drawing.Size(60, 16);
  1759. this.checkBox13.TabIndex = 106;
  1760. this.checkBox13.Text = "合同号";
  1761. this.checkBox13.UseVisualStyleBackColor = true;
  1762. //
  1763. // checkBox14
  1764. //
  1765. this.checkBox14.BackColor = System.Drawing.Color.LightBlue;
  1766. this.checkBox14.Location = new System.Drawing.Point(4, 44);
  1767. this.checkBox14.Name = "checkBox14";
  1768. this.checkBox14.Size = new System.Drawing.Size(75, 18);
  1769. this.checkBox14.TabIndex = 106;
  1770. this.checkBox14.Text = " 合同号";
  1771. this.checkBox14.UseVisualStyleBackColor = false;
  1772. this.checkBox14.CheckedChanged += new System.EventHandler(this.checkBox14_CheckedChanged);
  1773. //
  1774. // label26
  1775. //
  1776. this.label26.BackColor = System.Drawing.Color.LightBlue;
  1777. this.label26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1778. this.label26.Location = new System.Drawing.Point(407, 77);
  1779. this.label26.Name = "label26";
  1780. this.label26.Size = new System.Drawing.Size(72, 21);
  1781. this.label26.TabIndex = 105;
  1782. this.label26.Text = "炉号";
  1783. this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1784. //
  1785. // label27
  1786. //
  1787. this.label27.BackColor = System.Drawing.Color.LightBlue;
  1788. this.label27.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1789. this.label27.Location = new System.Drawing.Point(407, 43);
  1790. this.label27.Name = "label27";
  1791. this.label27.Size = new System.Drawing.Size(72, 21);
  1792. this.label27.TabIndex = 105;
  1793. this.label27.Text = "订单宽度";
  1794. this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1795. //
  1796. // label28
  1797. //
  1798. this.label28.BackColor = System.Drawing.Color.LightBlue;
  1799. this.label28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1800. this.label28.Location = new System.Drawing.Point(222, 43);
  1801. this.label28.Name = "label28";
  1802. this.label28.Size = new System.Drawing.Size(80, 21);
  1803. this.label28.TabIndex = 104;
  1804. this.label28.Text = "订单厚度";
  1805. this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1806. //
  1807. // textBox32
  1808. //
  1809. this.textBox32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1810. this.textBox32.Location = new System.Drawing.Point(480, 43);
  1811. this.textBox32.MaxLength = 8;
  1812. this.textBox32.Name = "textBox32";
  1813. this.textBox32.Size = new System.Drawing.Size(84, 21);
  1814. this.textBox32.TabIndex = 103;
  1815. //
  1816. // textBox33
  1817. //
  1818. this.textBox33.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1819. this.textBox33.Location = new System.Drawing.Point(304, 43);
  1820. this.textBox33.MaxLength = 8;
  1821. this.textBox33.Name = "textBox33";
  1822. this.textBox33.Size = new System.Drawing.Size(85, 21);
  1823. this.textBox33.TabIndex = 102;
  1824. //
  1825. // label29
  1826. //
  1827. this.label29.BackColor = System.Drawing.Color.LightBlue;
  1828. this.label29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1829. this.label29.Location = new System.Drawing.Point(3, 77);
  1830. this.label29.Name = "label29";
  1831. this.label29.Size = new System.Drawing.Size(80, 21);
  1832. this.label29.TabIndex = 101;
  1833. this.label29.Text = "牌号";
  1834. this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1835. //
  1836. // label30
  1837. //
  1838. this.label30.BackColor = System.Drawing.Color.LightBlue;
  1839. this.label30.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1840. this.label30.Location = new System.Drawing.Point(3, 10);
  1841. this.label30.Name = "label30";
  1842. this.label30.Size = new System.Drawing.Size(80, 21);
  1843. this.label30.TabIndex = 101;
  1844. this.label30.Text = "钢卷号";
  1845. this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1846. //
  1847. // label31
  1848. //
  1849. this.label31.BackColor = System.Drawing.Color.LightBlue;
  1850. this.label31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1851. this.label31.Location = new System.Drawing.Point(222, 77);
  1852. this.label31.Name = "label31";
  1853. this.label31.Size = new System.Drawing.Size(80, 21);
  1854. this.label31.TabIndex = 101;
  1855. this.label31.Text = "标准号";
  1856. this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1857. //
  1858. // label32
  1859. //
  1860. this.label32.BackColor = System.Drawing.Color.LightBlue;
  1861. this.label32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1862. this.label32.Location = new System.Drawing.Point(222, 10);
  1863. this.label32.Name = "label32";
  1864. this.label32.Size = new System.Drawing.Size(80, 21);
  1865. this.label32.TabIndex = 101;
  1866. this.label32.Text = "重量";
  1867. this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1868. //
  1869. // label33
  1870. //
  1871. this.label33.BackColor = System.Drawing.Color.LightBlue;
  1872. this.label33.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1873. this.label33.Location = new System.Drawing.Point(407, 10);
  1874. this.label33.Name = "label33";
  1875. this.label33.Size = new System.Drawing.Size(72, 21);
  1876. this.label33.TabIndex = 101;
  1877. this.label33.Text = "生产时间";
  1878. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1879. //
  1880. // textBox34
  1881. //
  1882. this.textBox34.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1883. this.textBox34.Location = new System.Drawing.Point(480, 10);
  1884. this.textBox34.MaxLength = 20;
  1885. this.textBox34.Name = "textBox34";
  1886. this.textBox34.Size = new System.Drawing.Size(84, 21);
  1887. this.textBox34.TabIndex = 100;
  1888. //
  1889. // textBox35
  1890. //
  1891. this.textBox35.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1892. this.textBox35.Location = new System.Drawing.Point(480, 77);
  1893. this.textBox35.MaxLength = 20;
  1894. this.textBox35.Name = "textBox35";
  1895. this.textBox35.Size = new System.Drawing.Size(84, 21);
  1896. this.textBox35.TabIndex = 98;
  1897. //
  1898. // textBox36
  1899. //
  1900. this.textBox36.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1901. this.textBox36.Location = new System.Drawing.Point(304, 10);
  1902. this.textBox36.MaxLength = 10;
  1903. this.textBox36.Name = "textBox36";
  1904. this.textBox36.Size = new System.Drawing.Size(85, 21);
  1905. this.textBox36.TabIndex = 96;
  1906. //
  1907. // textBox37
  1908. //
  1909. this.textBox37.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1910. this.textBox37.Location = new System.Drawing.Point(304, 77);
  1911. this.textBox37.MaxLength = 20;
  1912. this.textBox37.Name = "textBox37";
  1913. this.textBox37.Size = new System.Drawing.Size(84, 21);
  1914. this.textBox37.TabIndex = 94;
  1915. //
  1916. // textBox38
  1917. //
  1918. this.textBox38.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1919. this.textBox38.Enabled = false;
  1920. this.textBox38.Location = new System.Drawing.Point(171, 43);
  1921. this.textBox38.MaxLength = 3;
  1922. this.textBox38.Name = "textBox38";
  1923. this.textBox38.Size = new System.Drawing.Size(28, 21);
  1924. this.textBox38.TabIndex = 92;
  1925. //
  1926. // textBox39
  1927. //
  1928. this.textBox39.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1929. this.textBox39.Enabled = false;
  1930. this.textBox39.Location = new System.Drawing.Point(82, 43);
  1931. this.textBox39.MaxLength = 20;
  1932. this.textBox39.Name = "textBox39";
  1933. this.textBox39.Size = new System.Drawing.Size(89, 21);
  1934. this.textBox39.TabIndex = 86;
  1935. //
  1936. // textBox40
  1937. //
  1938. this.textBox40.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1939. this.textBox40.Location = new System.Drawing.Point(84, 10);
  1940. this.textBox40.MaxLength = 20;
  1941. this.textBox40.Name = "textBox40";
  1942. this.textBox40.Size = new System.Drawing.Size(113, 21);
  1943. this.textBox40.TabIndex = 85;
  1944. //
  1945. // textBox41
  1946. //
  1947. this.textBox41.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1948. this.textBox41.Location = new System.Drawing.Point(84, 77);
  1949. this.textBox41.MaxLength = 20;
  1950. this.textBox41.Name = "textBox41";
  1951. this.textBox41.Size = new System.Drawing.Size(113, 21);
  1952. this.textBox41.TabIndex = 82;
  1953. //
  1954. // checkBox15
  1955. //
  1956. this.checkBox15.BackColor = System.Drawing.Color.LightBlue;
  1957. this.checkBox15.Location = new System.Drawing.Point(658, 20);
  1958. this.checkBox15.Name = "checkBox15";
  1959. this.checkBox15.Size = new System.Drawing.Size(119, 23);
  1960. this.checkBox15.TabIndex = 108;
  1961. this.checkBox15.Text = "酸洗待包装查询";
  1962. this.checkBox15.UseVisualStyleBackColor = false;
  1963. //
  1964. // UIM020020
  1965. //
  1966. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1967. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1968. this.ClientSize = new System.Drawing.Size(1135, 522);
  1969. this.Controls.Add(this.ultraGroupBox1);
  1970. this.Controls.Add(this.ultraPanel2);
  1971. this.Margin = new System.Windows.Forms.Padding(4);
  1972. this.Name = "UIM020020";
  1973. this.Text = "UIM020020";
  1974. this.Load += new System.EventHandler(this.UIM020020_Load);
  1975. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1976. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1977. this.ultraPanel2.ResumeLayout(false);
  1978. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1979. this.ultraGroupBox1.ResumeLayout(false);
  1980. this.panel1.ResumeLayout(false);
  1981. this.ultraPanel3.ClientArea.ResumeLayout(false);
  1982. this.ultraPanel3.ResumeLayout(false);
  1983. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1984. this.panel3.ResumeLayout(false);
  1985. this.panel3.PerformLayout();
  1986. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  1987. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  1988. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
  1989. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1990. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1991. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1992. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  1993. this.ResumeLayout(false);
  1994. }
  1995. #endregion
  1996. private System.Data.DataColumn dataColumn39;
  1997. private System.Data.DataColumn dataColumn40;
  1998. private System.Data.DataColumn dataColumn38;
  1999. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  2000. private System.Data.DataColumn dataColumn37;
  2001. private System.Data.DataColumn dataColumn36;
  2002. private System.Data.DataColumn dataColumn35;
  2003. private System.Data.DataColumn dataColumn7;
  2004. private System.Data.DataColumn dataColumn6;
  2005. private System.Data.DataColumn dataColumn13;
  2006. private System.Data.DataColumn dataColumn10;
  2007. private System.Data.DataColumn dataColumn12;
  2008. private System.Data.DataColumn dataColumn5;
  2009. private System.Data.DataColumn dataColumn11;
  2010. private System.Data.DataSet dataSet1;
  2011. private System.Data.DataTable dataTable1;
  2012. private System.Data.DataColumn dataColumn1;
  2013. private System.Data.DataColumn dataColumn3;
  2014. private System.Data.DataColumn dataColumn4;
  2015. private System.Data.DataColumn dataColumn14;
  2016. private System.Data.DataColumn dataColumn22;
  2017. private System.Data.DataColumn dataColumn23;
  2018. private System.Data.DataColumn dataColumn24;
  2019. private System.Data.DataColumn dataColumn25;
  2020. private System.Data.DataColumn dataColumn26;
  2021. private System.Data.DataColumn dataColumn27;
  2022. private System.Data.DataColumn dataColumn28;
  2023. private System.Data.DataColumn dataColumn29;
  2024. private System.Data.DataColumn dataColumn30;
  2025. private System.Data.DataColumn dataColumn31;
  2026. private System.Data.DataColumn dataColumn32;
  2027. private System.Data.DataColumn dataColumn33;
  2028. private System.Data.DataColumn dataColumn34;
  2029. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter ultraGridExcelExporter1;
  2030. private System.Data.DataColumn dataColumn2;
  2031. private System.Data.DataColumn dataColumn41;
  2032. private System.Windows.Forms.CheckBox checkBox4;
  2033. private System.Windows.Forms.CheckBox checkBox3;
  2034. private System.Windows.Forms.TextBox textBoxlicenseMark;
  2035. private System.Windows.Forms.TextBox textBoxLicenseNo;
  2036. private System.Windows.Forms.CheckBox checkBox2;
  2037. private System.Windows.Forms.CheckBox checkBox1;
  2038. private System.Windows.Forms.CheckBox checkBoxORD;
  2039. private System.Windows.Forms.Label label13;
  2040. private System.Windows.Forms.Label label14;
  2041. private System.Windows.Forms.Label label15;
  2042. private System.Windows.Forms.TextBox textBox14;
  2043. private System.Windows.Forms.TextBox textBox15;
  2044. private System.Windows.Forms.Label label10;
  2045. private System.Windows.Forms.Label label11;
  2046. private System.Windows.Forms.Label label12;
  2047. private System.Windows.Forms.Label label16;
  2048. private System.Windows.Forms.Label label17;
  2049. private System.Windows.Forms.TextBox textBox12;
  2050. private System.Windows.Forms.TextBox textBox13;
  2051. private System.Windows.Forms.TextBox textBox10;
  2052. private System.Windows.Forms.TextBox textBox8;
  2053. private System.Windows.Forms.TextBox textBox9;
  2054. private System.Windows.Forms.TextBox textBox11;
  2055. private System.Windows.Forms.TextBox textBox16;
  2056. private System.Windows.Forms.TextBox textBox17;
  2057. private System.Windows.Forms.CheckBox checkBox5;
  2058. private System.Windows.Forms.CheckBox checkBox6;
  2059. private System.Windows.Forms.TextBox textBox18;
  2060. private System.Windows.Forms.TextBox textBox19;
  2061. private System.Windows.Forms.CheckBox checkBox7;
  2062. private System.Windows.Forms.CheckBox checkBox8;
  2063. private System.Windows.Forms.CheckBox checkBox9;
  2064. private System.Windows.Forms.Label label18;
  2065. private System.Windows.Forms.Label label19;
  2066. private System.Windows.Forms.Label label20;
  2067. private System.Windows.Forms.TextBox textBox20;
  2068. private System.Windows.Forms.TextBox textBox21;
  2069. private System.Windows.Forms.Label label21;
  2070. private System.Windows.Forms.Label label22;
  2071. private System.Windows.Forms.Label label23;
  2072. private System.Windows.Forms.Label label24;
  2073. private System.Windows.Forms.Label label25;
  2074. private System.Windows.Forms.TextBox textBox22;
  2075. private System.Windows.Forms.TextBox textBox23;
  2076. private System.Windows.Forms.TextBox textBox24;
  2077. private System.Windows.Forms.TextBox textBox25;
  2078. private System.Windows.Forms.TextBox textBox26;
  2079. private System.Windows.Forms.TextBox textBox27;
  2080. private System.Windows.Forms.TextBox textBox28;
  2081. private System.Windows.Forms.TextBox textBox29;
  2082. private System.Data.DataColumn dataColumn8;
  2083. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  2084. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2085. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  2086. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  2087. private System.Windows.Forms.CheckBox checkBox10;
  2088. private System.Windows.Forms.CheckBox checkBox11;
  2089. private System.Windows.Forms.TextBox textBox30;
  2090. private System.Windows.Forms.TextBox textBox31;
  2091. private System.Windows.Forms.CheckBox checkBox12;
  2092. private System.Windows.Forms.CheckBox checkBox13;
  2093. private System.Windows.Forms.CheckBox checkBox14;
  2094. private System.Windows.Forms.Label label26;
  2095. private System.Windows.Forms.Label label27;
  2096. private System.Windows.Forms.Label label28;
  2097. private System.Windows.Forms.TextBox textBox32;
  2098. private System.Windows.Forms.TextBox textBox33;
  2099. private System.Windows.Forms.Label label29;
  2100. private System.Windows.Forms.Label label30;
  2101. private System.Windows.Forms.Label label31;
  2102. private System.Windows.Forms.Label label32;
  2103. private System.Windows.Forms.Label label33;
  2104. private System.Windows.Forms.TextBox textBox34;
  2105. private System.Windows.Forms.TextBox textBox35;
  2106. private System.Windows.Forms.TextBox textBox36;
  2107. private System.Windows.Forms.TextBox textBox37;
  2108. private System.Windows.Forms.TextBox textBox38;
  2109. private System.Windows.Forms.TextBox textBox39;
  2110. private System.Windows.Forms.TextBox textBox40;
  2111. private System.Windows.Forms.TextBox textBox41;
  2112. private System.Windows.Forms.Panel panel1;
  2113. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  2114. private System.Windows.Forms.Label label5;
  2115. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  2116. private System.Windows.Forms.TextBox textBox1;
  2117. private System.Windows.Forms.Label label1;
  2118. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
  2119. private System.Windows.Forms.TextBox textBox2;
  2120. private System.Windows.Forms.Label label4;
  2121. private System.Windows.Forms.TextBox textBox4;
  2122. private System.Windows.Forms.Label label3;
  2123. private System.Windows.Forms.TextBox textBox6;
  2124. private System.Windows.Forms.TextBox textBox3;
  2125. private System.Windows.Forms.TextBox textBox7;
  2126. private System.Windows.Forms.Label label9;
  2127. private System.Windows.Forms.TextBox textBox5;
  2128. private System.Windows.Forms.Label label7;
  2129. private System.Windows.Forms.Label label2;
  2130. private System.Windows.Forms.Label label8;
  2131. private System.Windows.Forms.Label label6;
  2132. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  2133. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2134. private System.Windows.Forms.Panel panel3;
  2135. private System.Windows.Forms.TextBox textBox42;
  2136. private System.Windows.Forms.Label label34;
  2137. private System.Windows.Forms.TextBox textBox43;
  2138. private System.Windows.Forms.Label label35;
  2139. private System.Windows.Forms.TextBox textBox44;
  2140. private System.Data.DataColumn dataColumn9;
  2141. private System.Data.DataColumn dataColumn15;
  2142. private System.Data.DataColumn dataColumn16;
  2143. private System.Windows.Forms.Label label36;
  2144. private System.Windows.Forms.TextBox textBox45;
  2145. private System.Data.DataColumn dataColumn17;
  2146. private System.Windows.Forms.CheckBox checkBox15;
  2147. }
  2148. }