UIM020060.Designer.cs 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638
  1. namespace Core.LZMes.Client.UIM.UIM02
  2. {
  3. partial class UIM020060
  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.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_STL_GRD");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CUR_LOAD_LOC");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_DTIME");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_USE_TIME");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MILL_DTIME");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_REG");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_SHIFT");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YARD_ENTRY_GROUP");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_FL");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_PLAN_DATA");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_DEVLMT_DATE");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INGR_DEC_GRD");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATRL_END_CAUSE_CD");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIZE_DEC_RST");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EXTSHAPE_DEC_GRD");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WGT_DEC_RST");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHARGE_NO");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDCUST_CD");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DLIV_TP");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XSQY");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CUR_PROG_CD");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACKAGE_LEVEL");
  61. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_ABBSYM");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRINT_SIZE");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORG_ORD_NO");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORG_ORD_SEQ");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRINT_TP");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DLIV_DIRNO");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LINE_TP");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DDC_STL_GRD");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PAKMTH_TP");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SB");
  73. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  81. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  82. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  83. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  84. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  85. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  86. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  87. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  88. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  89. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  92. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  93. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  94. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  95. this.dataSet1 = new System.Data.DataSet();
  96. this.dataTable1 = new System.Data.DataTable();
  97. this.dataColumn1 = new System.Data.DataColumn();
  98. this.dataColumn3 = new System.Data.DataColumn();
  99. this.dataColumn4 = new System.Data.DataColumn();
  100. this.dataColumn5 = new System.Data.DataColumn();
  101. this.dataColumn6 = new System.Data.DataColumn();
  102. this.dataColumn7 = new System.Data.DataColumn();
  103. this.dataColumn10 = new System.Data.DataColumn();
  104. this.dataColumn11 = new System.Data.DataColumn();
  105. this.dataColumn12 = new System.Data.DataColumn();
  106. this.dataColumn13 = new System.Data.DataColumn();
  107. this.dataColumn14 = new System.Data.DataColumn();
  108. this.dataColumn22 = new System.Data.DataColumn();
  109. this.dataColumn23 = new System.Data.DataColumn();
  110. this.dataColumn24 = new System.Data.DataColumn();
  111. this.dataColumn25 = new System.Data.DataColumn();
  112. this.dataColumn26 = new System.Data.DataColumn();
  113. this.dataColumn27 = new System.Data.DataColumn();
  114. this.dataColumn28 = new System.Data.DataColumn();
  115. this.dataColumn29 = new System.Data.DataColumn();
  116. this.dataColumn30 = new System.Data.DataColumn();
  117. this.dataColumn31 = new System.Data.DataColumn();
  118. this.dataColumn32 = new System.Data.DataColumn();
  119. this.dataColumn33 = new System.Data.DataColumn();
  120. this.dataColumn34 = new System.Data.DataColumn();
  121. this.dataColumn35 = new System.Data.DataColumn();
  122. this.dataColumn36 = new System.Data.DataColumn();
  123. this.dataColumn37 = new System.Data.DataColumn();
  124. this.dataColumn38 = new System.Data.DataColumn();
  125. this.dataColumn39 = new System.Data.DataColumn();
  126. this.dataColumn40 = new System.Data.DataColumn();
  127. this.dataColumn41 = new System.Data.DataColumn();
  128. this.dataColumn8 = new System.Data.DataColumn();
  129. this.dataColumn9 = new System.Data.DataColumn();
  130. this.dataColumn15 = new System.Data.DataColumn();
  131. this.dataColumn16 = new System.Data.DataColumn();
  132. this.dataColumn17 = new System.Data.DataColumn();
  133. this.dataColumn18 = new System.Data.DataColumn();
  134. this.dataColumn2 = new System.Data.DataColumn();
  135. this.dataColumn19 = new System.Data.DataColumn();
  136. this.dataColumn20 = new System.Data.DataColumn();
  137. this.dataColumn21 = new System.Data.DataColumn();
  138. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  139. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  140. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  141. this.label16 = new System.Windows.Forms.Label();
  142. this.textBox6 = new System.Windows.Forms.TextBox();
  143. this.checkBox4 = new System.Windows.Forms.CheckBox();
  144. this.checkBox3 = new System.Windows.Forms.CheckBox();
  145. this.textBoxlicenseMark = new System.Windows.Forms.TextBox();
  146. this.textBoxLicenseNo = new System.Windows.Forms.TextBox();
  147. this.checkBox2 = new System.Windows.Forms.CheckBox();
  148. this.checkBox1 = new System.Windows.Forms.CheckBox();
  149. this.checkBoxORD = new System.Windows.Forms.CheckBox();
  150. this.label13 = new System.Windows.Forms.Label();
  151. this.label14 = new System.Windows.Forms.Label();
  152. this.label15 = new System.Windows.Forms.Label();
  153. this.textBox14 = new System.Windows.Forms.TextBox();
  154. this.textBox15 = new System.Windows.Forms.TextBox();
  155. this.label9 = new System.Windows.Forms.Label();
  156. this.label6 = new System.Windows.Forms.Label();
  157. this.label8 = new System.Windows.Forms.Label();
  158. this.label10 = new System.Windows.Forms.Label();
  159. this.label12 = new System.Windows.Forms.Label();
  160. this.textBox12 = new System.Windows.Forms.TextBox();
  161. this.textBox13 = new System.Windows.Forms.TextBox();
  162. this.textBox10 = new System.Windows.Forms.TextBox();
  163. this.textBox8 = new System.Windows.Forms.TextBox();
  164. this.textBox7 = new System.Windows.Forms.TextBox();
  165. this.textBox11 = new System.Windows.Forms.TextBox();
  166. this.textBox9 = new System.Windows.Forms.TextBox();
  167. this.textBox5 = new System.Windows.Forms.TextBox();
  168. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  169. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  170. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  171. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  172. this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  173. this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  174. this.label7 = new System.Windows.Forms.Label();
  175. this.label2 = new System.Windows.Forms.Label();
  176. this.label23 = new System.Windows.Forms.Label();
  177. this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  178. this.ultraDateTimeEditor3 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  179. this.button1 = new System.Windows.Forms.Button();
  180. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  181. this.label5 = new System.Windows.Forms.Label();
  182. this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  183. this.label4 = new System.Windows.Forms.Label();
  184. this.label11 = new System.Windows.Forms.Label();
  185. this.label3 = new System.Windows.Forms.Label();
  186. this.textBox4 = new System.Windows.Forms.TextBox();
  187. this.textBox3 = new System.Windows.Forms.TextBox();
  188. this.textBox2 = new System.Windows.Forms.TextBox();
  189. this.label1 = new System.Windows.Forms.Label();
  190. this.textBox1 = new System.Windows.Forms.TextBox();
  191. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  192. this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
  193. this.dataColumn42 = new System.Data.DataColumn();
  194. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  195. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  196. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  197. this.ultraPanel3.ClientArea.SuspendLayout();
  198. this.ultraPanel3.SuspendLayout();
  199. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  200. this.ultraExpandableGroupBox1.SuspendLayout();
  201. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  202. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  203. this.ultraPanel1.ClientArea.SuspendLayout();
  204. this.ultraPanel1.SuspendLayout();
  205. this.ultraPanel2.ClientArea.SuspendLayout();
  206. this.ultraPanel2.SuspendLayout();
  207. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  208. this.ultraGroupBox1.SuspendLayout();
  209. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
  212. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).BeginInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
  215. this.SuspendLayout();
  216. //
  217. // ultraGrid1
  218. //
  219. this.ultraGrid1.DataSource = this.dataSet1;
  220. this.ultraGrid1.DisplayLayout.AutoFitStyle = Infragistics.Win.UltraWinGrid.AutoFitStyle.ExtendLastColumn;
  221. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  222. ultraGridColumn1.Header.VisiblePosition = 0;
  223. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 4;
  224. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  225. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(113, 23);
  226. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  227. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  228. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  229. ultraGridColumn2.Header.VisiblePosition = 2;
  230. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 16;
  231. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  232. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 23);
  233. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  234. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  235. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  236. ultraGridColumn3.Header.VisiblePosition = 3;
  237. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 22;
  238. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  239. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 23);
  240. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  241. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  242. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  243. ultraGridColumn4.Header.VisiblePosition = 4;
  244. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 24;
  245. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  246. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 23);
  247. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  248. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  249. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  250. ultraGridColumn5.Header.VisiblePosition = 5;
  251. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 26;
  252. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  253. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 23);
  254. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  255. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  256. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  257. ultraGridColumn6.Header.VisiblePosition = 6;
  258. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 28;
  259. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  260. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 23);
  261. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  262. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  263. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  264. ultraGridColumn7.Header.VisiblePosition = 7;
  265. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 30;
  266. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  267. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 23);
  268. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  269. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  270. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  271. ultraGridColumn8.Header.VisiblePosition = 1;
  272. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 8;
  273. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  274. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 23);
  275. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  276. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  277. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  278. ultraGridColumn9.Header.VisiblePosition = 8;
  279. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 32;
  280. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  281. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 23);
  282. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  283. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  284. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  285. ultraGridColumn10.Header.VisiblePosition = 9;
  286. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 34;
  287. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  288. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 23);
  289. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  290. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  291. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  292. ultraGridColumn11.Header.VisiblePosition = 10;
  293. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 36;
  294. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  295. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 23);
  296. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  297. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  298. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  299. ultraGridColumn12.Header.VisiblePosition = 11;
  300. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 38;
  301. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  302. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 23);
  303. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  304. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  305. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  306. ultraGridColumn13.Header.VisiblePosition = 12;
  307. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 40;
  308. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  309. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 23);
  310. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  311. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  312. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  313. ultraGridColumn14.Header.VisiblePosition = 13;
  314. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 42;
  315. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  316. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 23);
  317. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  318. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  319. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  320. ultraGridColumn15.Header.VisiblePosition = 14;
  321. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 44;
  322. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  323. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 23);
  324. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  325. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  326. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  327. ultraGridColumn16.Header.VisiblePosition = 15;
  328. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 46;
  329. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  330. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 23);
  331. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  332. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  333. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  334. ultraGridColumn17.Header.VisiblePosition = 16;
  335. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 48;
  336. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  337. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 23);
  338. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  339. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  340. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  341. ultraGridColumn18.Header.VisiblePosition = 17;
  342. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 50;
  343. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  344. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 23);
  345. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  346. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  347. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  348. ultraGridColumn19.Header.VisiblePosition = 18;
  349. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 52;
  350. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  351. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 23);
  352. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  353. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  354. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  355. ultraGridColumn20.Header.VisiblePosition = 19;
  356. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 58;
  357. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  358. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 23);
  359. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  360. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  361. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  362. ultraGridColumn21.Header.VisiblePosition = 20;
  363. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 60;
  364. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  365. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 23);
  366. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  367. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  368. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  369. ultraGridColumn22.Header.VisiblePosition = 21;
  370. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 62;
  371. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  372. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 23);
  373. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  374. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  375. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  376. ultraGridColumn23.Header.VisiblePosition = 22;
  377. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 64;
  378. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  379. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 23);
  380. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  381. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  382. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  383. ultraGridColumn24.Header.VisiblePosition = 23;
  384. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 66;
  385. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  386. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 23);
  387. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  388. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  389. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  390. ultraGridColumn25.Header.VisiblePosition = 24;
  391. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 68;
  392. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  393. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 23);
  394. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  395. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  396. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  397. ultraGridColumn26.Header.VisiblePosition = 25;
  398. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 70;
  399. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  400. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 23);
  401. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  402. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  403. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  404. ultraGridColumn27.Header.VisiblePosition = 26;
  405. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 72;
  406. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  407. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 23);
  408. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  409. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  410. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  411. ultraGridColumn28.Header.VisiblePosition = 27;
  412. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 74;
  413. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  414. ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 23);
  415. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  416. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  417. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  418. ultraGridColumn29.Header.VisiblePosition = 28;
  419. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 76;
  420. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  421. ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 23);
  422. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  423. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  424. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  425. ultraGridColumn30.Header.VisiblePosition = 29;
  426. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 6;
  427. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  428. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 23);
  429. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  430. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  431. appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  432. ultraGridColumn31.CellAppearance = appearance6;
  433. ultraGridColumn31.Header.VisiblePosition = 30;
  434. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 12;
  435. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  436. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 23);
  437. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  438. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  439. ultraGridColumn31.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
  440. ultraGridColumn32.Header.VisiblePosition = 31;
  441. ultraGridColumn32.Hidden = true;
  442. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  443. ultraGridColumn33.Header.VisiblePosition = 32;
  444. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 20;
  445. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  446. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 23);
  447. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  448. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  449. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  450. ultraGridColumn34.Header.VisiblePosition = 33;
  451. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 54;
  452. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  453. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 23);
  454. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  455. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  456. ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  457. ultraGridColumn35.Header.VisiblePosition = 34;
  458. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 56;
  459. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  460. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 23);
  461. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  462. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  463. ultraGridColumn36.Header.VisiblePosition = 35;
  464. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 78;
  465. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  466. ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 23);
  467. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
  468. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  469. ultraGridColumn37.Header.VisiblePosition = 36;
  470. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 2;
  471. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  472. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 23);
  473. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
  474. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
  475. ultraGridColumn38.Header.VisiblePosition = 37;
  476. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 0;
  477. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  478. ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 23);
  479. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
  480. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
  481. ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  482. ultraGridColumn39.Header.VisiblePosition = 38;
  483. ultraGridColumn39.Hidden = true;
  484. ultraGridColumn40.Header.VisiblePosition = 39;
  485. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 18;
  486. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  487. ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
  488. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
  489. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
  490. ultraGridColumn41.Header.VisiblePosition = 40;
  491. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 10;
  492. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  493. ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
  494. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
  495. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
  496. ultraGridColumn42.Header.Caption = "色标要求";
  497. ultraGridColumn42.Header.VisiblePosition = 41;
  498. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 14;
  499. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  500. ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
  501. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  502. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  503. ultraGridBand1.Columns.AddRange(new object[] {
  504. ultraGridColumn1,
  505. ultraGridColumn2,
  506. ultraGridColumn3,
  507. ultraGridColumn4,
  508. ultraGridColumn5,
  509. ultraGridColumn6,
  510. ultraGridColumn7,
  511. ultraGridColumn8,
  512. ultraGridColumn9,
  513. ultraGridColumn10,
  514. ultraGridColumn11,
  515. ultraGridColumn12,
  516. ultraGridColumn13,
  517. ultraGridColumn14,
  518. ultraGridColumn15,
  519. ultraGridColumn16,
  520. ultraGridColumn17,
  521. ultraGridColumn18,
  522. ultraGridColumn19,
  523. ultraGridColumn20,
  524. ultraGridColumn21,
  525. ultraGridColumn22,
  526. ultraGridColumn23,
  527. ultraGridColumn24,
  528. ultraGridColumn25,
  529. ultraGridColumn26,
  530. ultraGridColumn27,
  531. ultraGridColumn28,
  532. ultraGridColumn29,
  533. ultraGridColumn30,
  534. ultraGridColumn31,
  535. ultraGridColumn32,
  536. ultraGridColumn33,
  537. ultraGridColumn34,
  538. ultraGridColumn35,
  539. ultraGridColumn36,
  540. ultraGridColumn37,
  541. ultraGridColumn38,
  542. ultraGridColumn39,
  543. ultraGridColumn40,
  544. ultraGridColumn41,
  545. ultraGridColumn42});
  546. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  547. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  548. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  549. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  550. appearance16.BackColor = System.Drawing.Color.SkyBlue;
  551. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance16;
  552. appearance17.BackColor = System.Drawing.Color.GhostWhite;
  553. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance17;
  554. this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.HeaderIcons;
  555. appearance18.BackColor = System.Drawing.Color.LightSteelBlue;
  556. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance18;
  557. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  558. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  559. appearance19.BackColor = System.Drawing.Color.LightSteelBlue;
  560. this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance19;
  561. appearance20.BackColor = System.Drawing.Color.LightSteelBlue;
  562. this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderAppearance = appearance20;
  563. this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  564. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  565. this.ultraGrid1.DisplayLayout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.Standard;
  566. this.ultraGrid1.DisplayLayout.Override.RowSizing = Infragistics.Win.UltraWinGrid.RowSizing.Fixed;
  567. this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
  568. this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.None;
  569. this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  570. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  571. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  572. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  573. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  574. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  575. this.ultraGrid1.Name = "ultraGrid1";
  576. this.ultraGrid1.Size = new System.Drawing.Size(1008, 525);
  577. this.ultraGrid1.TabIndex = 2;
  578. this.ultraGrid1.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_CellChange);
  579. //
  580. // dataSet1
  581. //
  582. this.dataSet1.DataSetName = "NewDataSet";
  583. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  584. this.dataTable1});
  585. //
  586. // dataTable1
  587. //
  588. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  589. this.dataColumn1,
  590. this.dataColumn3,
  591. this.dataColumn4,
  592. this.dataColumn5,
  593. this.dataColumn6,
  594. this.dataColumn7,
  595. this.dataColumn10,
  596. this.dataColumn11,
  597. this.dataColumn12,
  598. this.dataColumn13,
  599. this.dataColumn14,
  600. this.dataColumn22,
  601. this.dataColumn23,
  602. this.dataColumn24,
  603. this.dataColumn25,
  604. this.dataColumn26,
  605. this.dataColumn27,
  606. this.dataColumn28,
  607. this.dataColumn29,
  608. this.dataColumn30,
  609. this.dataColumn31,
  610. this.dataColumn32,
  611. this.dataColumn33,
  612. this.dataColumn34,
  613. this.dataColumn35,
  614. this.dataColumn36,
  615. this.dataColumn37,
  616. this.dataColumn38,
  617. this.dataColumn39,
  618. this.dataColumn40,
  619. this.dataColumn41,
  620. this.dataColumn8,
  621. this.dataColumn9,
  622. this.dataColumn15,
  623. this.dataColumn16,
  624. this.dataColumn17,
  625. this.dataColumn18,
  626. this.dataColumn2,
  627. this.dataColumn19,
  628. this.dataColumn20,
  629. this.dataColumn21,
  630. this.dataColumn42});
  631. this.dataTable1.TableName = "Table1";
  632. //
  633. // dataColumn1
  634. //
  635. this.dataColumn1.Caption = "钢卷号";
  636. this.dataColumn1.ColumnName = "OLD_SAMPL_NO";
  637. //
  638. // dataColumn3
  639. //
  640. this.dataColumn3.Caption = "牌号";
  641. this.dataColumn3.ColumnName = "SPEC_STL_GRD";
  642. //
  643. // dataColumn4
  644. //
  645. this.dataColumn4.Caption = "成品厚度";
  646. this.dataColumn4.ColumnName = "COIL_THK";
  647. //
  648. // dataColumn5
  649. //
  650. this.dataColumn5.Caption = "成品宽度";
  651. this.dataColumn5.ColumnName = "COIL_WTH";
  652. //
  653. // dataColumn6
  654. //
  655. this.dataColumn6.Caption = "订单厚度";
  656. this.dataColumn6.ColumnName = "INSTR_COIL_THK";
  657. //
  658. // dataColumn7
  659. //
  660. this.dataColumn7.Caption = "订单宽度";
  661. this.dataColumn7.ColumnName = "INSTR_COIL_WTH";
  662. //
  663. // dataColumn10
  664. //
  665. this.dataColumn10.Caption = "重量";
  666. this.dataColumn10.ColumnName = "ACT_WGT";
  667. //
  668. // dataColumn11
  669. //
  670. this.dataColumn11.Caption = "堆放位置";
  671. this.dataColumn11.ColumnName = "CUR_LOAD_LOC";
  672. //
  673. // dataColumn12
  674. //
  675. this.dataColumn12.Caption = "入库时间";
  676. this.dataColumn12.ColumnName = "YARD_ENTRY_DTIME";
  677. //
  678. // dataColumn13
  679. //
  680. this.dataColumn13.Caption = "入库操作时间";
  681. this.dataColumn13.ColumnName = "YARD_ENTRY_USE_TIME";
  682. //
  683. // dataColumn14
  684. //
  685. this.dataColumn14.Caption = "轧制时间";
  686. this.dataColumn14.ColumnName = "MILL_DTIME";
  687. //
  688. // dataColumn22
  689. //
  690. this.dataColumn22.Caption = "人库人";
  691. this.dataColumn22.ColumnName = "YARD_ENTRY_REG";
  692. //
  693. // dataColumn23
  694. //
  695. this.dataColumn23.Caption = "入库班次";
  696. this.dataColumn23.ColumnName = "YARD_ENTRY_SHIFT";
  697. //
  698. // dataColumn24
  699. //
  700. this.dataColumn24.Caption = "入库班组";
  701. this.dataColumn24.ColumnName = "YARD_ENTRY_GROUP";
  702. //
  703. // dataColumn25
  704. //
  705. this.dataColumn25.Caption = "订单区分";
  706. this.dataColumn25.ColumnName = "ORD_FL";
  707. //
  708. // dataColumn26
  709. //
  710. this.dataColumn26.Caption = "订单预排期";
  711. this.dataColumn26.ColumnName = "ORD_PLAN_DATA";
  712. //
  713. // dataColumn27
  714. //
  715. this.dataColumn27.Caption = "交货期";
  716. this.dataColumn27.ColumnName = "ORD_DEVLMT_DATE";
  717. //
  718. // dataColumn28
  719. //
  720. this.dataColumn28.Caption = "合同号";
  721. this.dataColumn28.ColumnName = "ORD_NO";
  722. //
  723. // dataColumn29
  724. //
  725. this.dataColumn29.Caption = "订单号";
  726. this.dataColumn29.ColumnName = "ORD_SEQ";
  727. //
  728. // dataColumn30
  729. //
  730. this.dataColumn30.Caption = "综合判定";
  731. this.dataColumn30.ColumnName = "TOT_DEC_GRD";
  732. //
  733. // dataColumn31
  734. //
  735. this.dataColumn31.Caption = "成份判定";
  736. this.dataColumn31.ColumnName = "INGR_DEC_GRD";
  737. //
  738. // dataColumn32
  739. //
  740. this.dataColumn32.Caption = "材质判定";
  741. this.dataColumn32.ColumnName = "MATRL_END_CAUSE_CD";
  742. //
  743. // dataColumn33
  744. //
  745. this.dataColumn33.Caption = "尺寸判定";
  746. this.dataColumn33.ColumnName = "SIZE_DEC_RST";
  747. //
  748. // dataColumn34
  749. //
  750. this.dataColumn34.Caption = "外观判定";
  751. this.dataColumn34.ColumnName = "EXTSHAPE_DEC_GRD";
  752. //
  753. // dataColumn35
  754. //
  755. this.dataColumn35.Caption = "重量判定";
  756. this.dataColumn35.ColumnName = "WGT_DEC_RST";
  757. //
  758. // dataColumn36
  759. //
  760. this.dataColumn36.Caption = "冶炼炉号";
  761. this.dataColumn36.ColumnName = "CHARGE_NO";
  762. //
  763. // dataColumn37
  764. //
  765. this.dataColumn37.Caption = "收货单位";
  766. this.dataColumn37.ColumnName = "ORDCUST_CD";
  767. //
  768. // dataColumn38
  769. //
  770. this.dataColumn38.Caption = "运输方式";
  771. this.dataColumn38.ColumnName = "DLIV_TP";
  772. //
  773. // dataColumn39
  774. //
  775. this.dataColumn39.Caption = "销售区域";
  776. this.dataColumn39.ColumnName = "XSQY";
  777. //
  778. // dataColumn40
  779. //
  780. this.dataColumn40.Caption = "进程状态";
  781. this.dataColumn40.ColumnName = "CUR_PROG_CD";
  782. //
  783. // dataColumn41
  784. //
  785. this.dataColumn41.Caption = "包装等级";
  786. this.dataColumn41.ColumnName = "PACKAGE_LEVEL";
  787. //
  788. // dataColumn8
  789. //
  790. this.dataColumn8.ColumnName = "SPEC_ABBSYM";
  791. //
  792. // dataColumn9
  793. //
  794. this.dataColumn9.Caption = "打印规格";
  795. this.dataColumn9.ColumnName = "PRINT_SIZE";
  796. //
  797. // dataColumn15
  798. //
  799. this.dataColumn15.Caption = "原合同";
  800. this.dataColumn15.ColumnName = "ORG_ORD_NO";
  801. //
  802. // dataColumn16
  803. //
  804. this.dataColumn16.Caption = "原订单";
  805. this.dataColumn16.ColumnName = "ORG_ORD_SEQ";
  806. //
  807. // dataColumn17
  808. //
  809. this.dataColumn17.Caption = "标识";
  810. this.dataColumn17.ColumnName = "PRINT_TP";
  811. //
  812. // dataColumn18
  813. //
  814. this.dataColumn18.Caption = "发运号";
  815. this.dataColumn18.ColumnName = "DLIV_DIRNO";
  816. //
  817. // dataColumn2
  818. //
  819. this.dataColumn2.Caption = "选择";
  820. this.dataColumn2.ColumnName = "CHK";
  821. //
  822. // dataColumn19
  823. //
  824. this.dataColumn19.ColumnName = "LINE_TP";
  825. //
  826. // dataColumn20
  827. //
  828. this.dataColumn20.Caption = "客户牌号";
  829. this.dataColumn20.ColumnName = "DDC_STL_GRD";
  830. //
  831. // dataColumn21
  832. //
  833. this.dataColumn21.Caption = "订单包装要求";
  834. this.dataColumn21.ColumnName = "PAKMTH_TP";
  835. //
  836. // ultraPanel3
  837. //
  838. //
  839. // ultraPanel3.ClientArea
  840. //
  841. this.ultraPanel3.ClientArea.Controls.Add(this.ultraGrid1);
  842. this.ultraPanel3.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
  843. this.ultraPanel3.ClientArea.Controls.Add(this.ultraComboEditor1);
  844. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  845. this.ultraPanel3.Location = new System.Drawing.Point(0, 71);
  846. this.ultraPanel3.Name = "ultraPanel3";
  847. this.ultraPanel3.Size = new System.Drawing.Size(1008, 659);
  848. this.ultraPanel3.TabIndex = 1;
  849. //
  850. // ultraExpandableGroupBox1
  851. //
  852. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  853. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  854. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1008, 134);
  855. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 525);
  856. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  857. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1008, 134);
  858. this.ultraExpandableGroupBox1.TabIndex = 84;
  859. this.ultraExpandableGroupBox1.Text = "编辑区域";
  860. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  861. //
  862. // ultraExpandableGroupBoxPanel1
  863. //
  864. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label16);
  865. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox6);
  866. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox4);
  867. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox3);
  868. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBoxlicenseMark);
  869. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBoxLicenseNo);
  870. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox2);
  871. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBox1);
  872. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.checkBoxORD);
  873. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label13);
  874. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label14);
  875. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label15);
  876. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox14);
  877. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox15);
  878. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label9);
  879. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label6);
  880. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label8);
  881. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label10);
  882. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label12);
  883. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox12);
  884. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox13);
  885. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox10);
  886. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox8);
  887. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox7);
  888. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox11);
  889. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox9);
  890. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.textBox5);
  891. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  892. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 20);
  893. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  894. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1002, 111);
  895. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  896. //
  897. // label16
  898. //
  899. this.label16.BackColor = System.Drawing.Color.LightBlue;
  900. this.label16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  901. this.label16.Location = new System.Drawing.Point(610, 77);
  902. this.label16.Name = "label16";
  903. this.label16.Size = new System.Drawing.Size(72, 21);
  904. this.label16.TabIndex = 111;
  905. this.label16.Text = "客户牌号";
  906. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  907. //
  908. // textBox6
  909. //
  910. this.textBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  911. this.textBox6.Enabled = false;
  912. this.textBox6.Location = new System.Drawing.Point(683, 77);
  913. this.textBox6.MaxLength = 20;
  914. this.textBox6.Name = "textBox6";
  915. this.textBox6.Size = new System.Drawing.Size(121, 21);
  916. this.textBox6.TabIndex = 110;
  917. //
  918. // checkBox4
  919. //
  920. this.checkBox4.BackColor = System.Drawing.Color.LightBlue;
  921. this.checkBox4.Enabled = false;
  922. this.checkBox4.Location = new System.Drawing.Point(608, 44);
  923. this.checkBox4.Name = "checkBox4";
  924. this.checkBox4.Size = new System.Drawing.Size(84, 18);
  925. this.checkBox4.TabIndex = 109;
  926. this.checkBox4.Text = "许可证标识";
  927. this.checkBox4.UseVisualStyleBackColor = false;
  928. this.checkBox4.Click += new System.EventHandler(this.checkBox4_Click);
  929. //
  930. // checkBox3
  931. //
  932. this.checkBox3.BackColor = System.Drawing.Color.LightBlue;
  933. this.checkBox3.Enabled = false;
  934. this.checkBox3.Location = new System.Drawing.Point(608, 12);
  935. this.checkBox3.Name = "checkBox3";
  936. this.checkBox3.Size = new System.Drawing.Size(84, 18);
  937. this.checkBox3.TabIndex = 108;
  938. this.checkBox3.Text = "许可证号";
  939. this.checkBox3.UseVisualStyleBackColor = false;
  940. this.checkBox3.Click += new System.EventHandler(this.checkBox3_Click);
  941. //
  942. // textBoxlicenseMark
  943. //
  944. this.textBoxlicenseMark.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  945. this.textBoxlicenseMark.Enabled = false;
  946. this.textBoxlicenseMark.Location = new System.Drawing.Point(694, 43);
  947. this.textBoxlicenseMark.Name = "textBoxlicenseMark";
  948. this.textBoxlicenseMark.Size = new System.Drawing.Size(110, 21);
  949. this.textBoxlicenseMark.TabIndex = 107;
  950. this.textBoxlicenseMark.Text = "WISI,MADE IN CHINA";
  951. //
  952. // textBoxLicenseNo
  953. //
  954. this.textBoxLicenseNo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  955. this.textBoxLicenseNo.Enabled = false;
  956. this.textBoxLicenseNo.Location = new System.Drawing.Point(694, 10);
  957. this.textBoxLicenseNo.Name = "textBoxLicenseNo";
  958. this.textBoxLicenseNo.Size = new System.Drawing.Size(110, 21);
  959. this.textBoxLicenseNo.TabIndex = 107;
  960. //
  961. // checkBox2
  962. //
  963. this.checkBox2.AutoSize = true;
  964. this.checkBox2.Location = new System.Drawing.Point(-381, 113);
  965. this.checkBox2.Name = "checkBox2";
  966. this.checkBox2.Size = new System.Drawing.Size(60, 16);
  967. this.checkBox2.TabIndex = 106;
  968. this.checkBox2.Text = "合同号";
  969. this.checkBox2.UseVisualStyleBackColor = true;
  970. //
  971. // checkBox1
  972. //
  973. this.checkBox1.AutoSize = true;
  974. this.checkBox1.Location = new System.Drawing.Point(-378, 46);
  975. this.checkBox1.Name = "checkBox1";
  976. this.checkBox1.Size = new System.Drawing.Size(60, 16);
  977. this.checkBox1.TabIndex = 106;
  978. this.checkBox1.Text = "合同号";
  979. this.checkBox1.UseVisualStyleBackColor = true;
  980. //
  981. // checkBoxORD
  982. //
  983. this.checkBoxORD.BackColor = System.Drawing.Color.LightBlue;
  984. this.checkBoxORD.Enabled = false;
  985. this.checkBoxORD.Location = new System.Drawing.Point(4, 44);
  986. this.checkBoxORD.Name = "checkBoxORD";
  987. this.checkBoxORD.Size = new System.Drawing.Size(75, 18);
  988. this.checkBoxORD.TabIndex = 106;
  989. this.checkBoxORD.Text = " 合同号";
  990. this.checkBoxORD.UseVisualStyleBackColor = false;
  991. this.checkBoxORD.Click += new System.EventHandler(this.checkBoxORD_Click);
  992. //
  993. // label13
  994. //
  995. this.label13.BackColor = System.Drawing.Color.LightBlue;
  996. this.label13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  997. this.label13.Location = new System.Drawing.Point(407, 77);
  998. this.label13.Name = "label13";
  999. this.label13.Size = new System.Drawing.Size(72, 21);
  1000. this.label13.TabIndex = 105;
  1001. this.label13.Text = "炉号";
  1002. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1003. //
  1004. // label14
  1005. //
  1006. this.label14.BackColor = System.Drawing.Color.LightBlue;
  1007. this.label14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1008. this.label14.Location = new System.Drawing.Point(407, 43);
  1009. this.label14.Name = "label14";
  1010. this.label14.Size = new System.Drawing.Size(72, 21);
  1011. this.label14.TabIndex = 105;
  1012. this.label14.Text = "订单宽度";
  1013. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1014. //
  1015. // label15
  1016. //
  1017. this.label15.BackColor = System.Drawing.Color.LightBlue;
  1018. this.label15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1019. this.label15.Location = new System.Drawing.Point(222, 43);
  1020. this.label15.Name = "label15";
  1021. this.label15.Size = new System.Drawing.Size(80, 21);
  1022. this.label15.TabIndex = 104;
  1023. this.label15.Text = "订单厚度";
  1024. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1025. //
  1026. // textBox14
  1027. //
  1028. this.textBox14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1029. this.textBox14.Enabled = false;
  1030. this.textBox14.Location = new System.Drawing.Point(480, 43);
  1031. this.textBox14.MaxLength = 8;
  1032. this.textBox14.Name = "textBox14";
  1033. this.textBox14.Size = new System.Drawing.Size(110, 21);
  1034. this.textBox14.TabIndex = 103;
  1035. //
  1036. // textBox15
  1037. //
  1038. this.textBox15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1039. this.textBox15.Enabled = false;
  1040. this.textBox15.Location = new System.Drawing.Point(304, 43);
  1041. this.textBox15.MaxLength = 8;
  1042. this.textBox15.Name = "textBox15";
  1043. this.textBox15.Size = new System.Drawing.Size(85, 21);
  1044. this.textBox15.TabIndex = 102;
  1045. //
  1046. // label9
  1047. //
  1048. this.label9.BackColor = System.Drawing.Color.LightBlue;
  1049. this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1050. this.label9.Location = new System.Drawing.Point(3, 77);
  1051. this.label9.Name = "label9";
  1052. this.label9.Size = new System.Drawing.Size(80, 21);
  1053. this.label9.TabIndex = 101;
  1054. this.label9.Text = "牌号";
  1055. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1056. //
  1057. // label6
  1058. //
  1059. this.label6.BackColor = System.Drawing.Color.LightBlue;
  1060. this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1061. this.label6.Location = new System.Drawing.Point(3, 10);
  1062. this.label6.Name = "label6";
  1063. this.label6.Size = new System.Drawing.Size(80, 21);
  1064. this.label6.TabIndex = 101;
  1065. this.label6.Text = "钢卷号";
  1066. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1067. //
  1068. // label8
  1069. //
  1070. this.label8.BackColor = System.Drawing.Color.LightBlue;
  1071. this.label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1072. this.label8.Location = new System.Drawing.Point(222, 77);
  1073. this.label8.Name = "label8";
  1074. this.label8.Size = new System.Drawing.Size(80, 21);
  1075. this.label8.TabIndex = 101;
  1076. this.label8.Text = "标准号";
  1077. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1078. //
  1079. // label10
  1080. //
  1081. this.label10.BackColor = System.Drawing.Color.LightBlue;
  1082. this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1083. this.label10.Location = new System.Drawing.Point(222, 10);
  1084. this.label10.Name = "label10";
  1085. this.label10.Size = new System.Drawing.Size(80, 21);
  1086. this.label10.TabIndex = 101;
  1087. this.label10.Text = "重量";
  1088. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1089. //
  1090. // label12
  1091. //
  1092. this.label12.BackColor = System.Drawing.Color.LightBlue;
  1093. this.label12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1094. this.label12.Location = new System.Drawing.Point(407, 10);
  1095. this.label12.Name = "label12";
  1096. this.label12.Size = new System.Drawing.Size(72, 21);
  1097. this.label12.TabIndex = 101;
  1098. this.label12.Text = "生产时间";
  1099. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1100. //
  1101. // textBox12
  1102. //
  1103. this.textBox12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1104. this.textBox12.Enabled = false;
  1105. this.textBox12.Location = new System.Drawing.Point(480, 10);
  1106. this.textBox12.MaxLength = 20;
  1107. this.textBox12.Name = "textBox12";
  1108. this.textBox12.Size = new System.Drawing.Size(110, 21);
  1109. this.textBox12.TabIndex = 100;
  1110. //
  1111. // textBox13
  1112. //
  1113. this.textBox13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1114. this.textBox13.Enabled = false;
  1115. this.textBox13.Location = new System.Drawing.Point(480, 77);
  1116. this.textBox13.MaxLength = 20;
  1117. this.textBox13.Name = "textBox13";
  1118. this.textBox13.Size = new System.Drawing.Size(110, 21);
  1119. this.textBox13.TabIndex = 98;
  1120. //
  1121. // textBox10
  1122. //
  1123. this.textBox10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1124. this.textBox10.Enabled = false;
  1125. this.textBox10.Location = new System.Drawing.Point(304, 10);
  1126. this.textBox10.MaxLength = 10;
  1127. this.textBox10.Name = "textBox10";
  1128. this.textBox10.Size = new System.Drawing.Size(85, 21);
  1129. this.textBox10.TabIndex = 96;
  1130. //
  1131. // textBox8
  1132. //
  1133. this.textBox8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1134. this.textBox8.Enabled = false;
  1135. this.textBox8.Location = new System.Drawing.Point(304, 77);
  1136. this.textBox8.MaxLength = 20;
  1137. this.textBox8.Name = "textBox8";
  1138. this.textBox8.Size = new System.Drawing.Size(84, 21);
  1139. this.textBox8.TabIndex = 94;
  1140. //
  1141. // textBox7
  1142. //
  1143. this.textBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1144. this.textBox7.Enabled = false;
  1145. this.textBox7.Location = new System.Drawing.Point(171, 43);
  1146. this.textBox7.MaxLength = 3;
  1147. this.textBox7.Name = "textBox7";
  1148. this.textBox7.Size = new System.Drawing.Size(28, 21);
  1149. this.textBox7.TabIndex = 92;
  1150. //
  1151. // textBox11
  1152. //
  1153. this.textBox11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1154. this.textBox11.Enabled = false;
  1155. this.textBox11.Location = new System.Drawing.Point(82, 43);
  1156. this.textBox11.MaxLength = 20;
  1157. this.textBox11.Name = "textBox11";
  1158. this.textBox11.Size = new System.Drawing.Size(89, 21);
  1159. this.textBox11.TabIndex = 86;
  1160. //
  1161. // textBox9
  1162. //
  1163. this.textBox9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1164. this.textBox9.Enabled = false;
  1165. this.textBox9.Location = new System.Drawing.Point(84, 10);
  1166. this.textBox9.MaxLength = 20;
  1167. this.textBox9.Name = "textBox9";
  1168. this.textBox9.Size = new System.Drawing.Size(113, 21);
  1169. this.textBox9.TabIndex = 85;
  1170. //
  1171. // textBox5
  1172. //
  1173. this.textBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1174. this.textBox5.Enabled = false;
  1175. this.textBox5.Location = new System.Drawing.Point(84, 77);
  1176. this.textBox5.MaxLength = 20;
  1177. this.textBox5.Name = "textBox5";
  1178. this.textBox5.Size = new System.Drawing.Size(113, 21);
  1179. this.textBox5.TabIndex = 82;
  1180. //
  1181. // ultraComboEditor1
  1182. //
  1183. this.ultraComboEditor1.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1184. this.ultraComboEditor1.Location = new System.Drawing.Point(360, 49);
  1185. this.ultraComboEditor1.Name = "ultraComboEditor1";
  1186. this.ultraComboEditor1.Size = new System.Drawing.Size(75, 21);
  1187. this.ultraComboEditor1.TabIndex = 83;
  1188. this.ultraComboEditor1.Visible = false;
  1189. //
  1190. // ultraPanel1
  1191. //
  1192. //
  1193. // ultraPanel1.ClientArea
  1194. //
  1195. this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel3);
  1196. this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel2);
  1197. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1198. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  1199. this.ultraPanel1.Name = "ultraPanel1";
  1200. this.ultraPanel1.Size = new System.Drawing.Size(1008, 730);
  1201. this.ultraPanel1.TabIndex = 3;
  1202. //
  1203. // ultraPanel2
  1204. //
  1205. //
  1206. // ultraPanel2.ClientArea
  1207. //
  1208. this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
  1209. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
  1210. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  1211. this.ultraPanel2.Name = "ultraPanel2";
  1212. this.ultraPanel2.Size = new System.Drawing.Size(1008, 71);
  1213. this.ultraPanel2.TabIndex = 0;
  1214. //
  1215. // ultraGroupBox1
  1216. //
  1217. appearance1.BackColor = System.Drawing.Color.Gainsboro;
  1218. this.ultraGroupBox1.Appearance = appearance1;
  1219. this.ultraGroupBox1.Controls.Add(this.ultraCheckEditor1);
  1220. this.ultraGroupBox1.Controls.Add(this.ultraComboEditor3);
  1221. this.ultraGroupBox1.Controls.Add(this.label7);
  1222. this.ultraGroupBox1.Controls.Add(this.label2);
  1223. this.ultraGroupBox1.Controls.Add(this.label23);
  1224. this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor2);
  1225. this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor3);
  1226. this.ultraGroupBox1.Controls.Add(this.button1);
  1227. this.ultraGroupBox1.Controls.Add(this.ultraComboEditor2);
  1228. this.ultraGroupBox1.Controls.Add(this.label5);
  1229. this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor1);
  1230. this.ultraGroupBox1.Controls.Add(this.label4);
  1231. this.ultraGroupBox1.Controls.Add(this.label11);
  1232. this.ultraGroupBox1.Controls.Add(this.label3);
  1233. this.ultraGroupBox1.Controls.Add(this.textBox4);
  1234. this.ultraGroupBox1.Controls.Add(this.textBox3);
  1235. this.ultraGroupBox1.Controls.Add(this.textBox2);
  1236. this.ultraGroupBox1.Controls.Add(this.label1);
  1237. this.ultraGroupBox1.Controls.Add(this.textBox1);
  1238. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1239. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1240. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1241. this.ultraGroupBox1.Size = new System.Drawing.Size(1008, 71);
  1242. this.ultraGroupBox1.TabIndex = 0;
  1243. //
  1244. // ultraCheckEditor1
  1245. //
  1246. this.ultraCheckEditor1.BackColor = System.Drawing.Color.LightBlue;
  1247. this.ultraCheckEditor1.BackColorInternal = System.Drawing.Color.LightBlue;
  1248. this.ultraCheckEditor1.Location = new System.Drawing.Point(473, 41);
  1249. this.ultraCheckEditor1.Name = "ultraCheckEditor1";
  1250. this.ultraCheckEditor1.Size = new System.Drawing.Size(111, 24);
  1251. this.ultraCheckEditor1.TabIndex = 94;
  1252. this.ultraCheckEditor1.Text = "禁用日期查询";
  1253. this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
  1254. //
  1255. // ultraComboEditor3
  1256. //
  1257. appearance10.BorderColor = System.Drawing.Color.Black;
  1258. this.ultraComboEditor3.Appearance = appearance10;
  1259. this.ultraComboEditor3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1260. this.ultraComboEditor3.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1261. valueListItem1.DataValue = "DCB";
  1262. valueListItem1.DisplayText = "包装作业待机";
  1263. valueListItem6.DataValue = "";
  1264. valueListItem6.DisplayText = "全部";
  1265. valueListItem2.DataValue = "DED";
  1266. valueListItem2.DisplayText = "综合判定待机";
  1267. valueListItem5.DataValue = "DRC";
  1268. valueListItem5.DisplayText = "充当待机";
  1269. valueListItem7.DataValue = "DDD";
  1270. valueListItem7.DisplayText = "二级库存";
  1271. valueListItem8.DataValue = "DFB";
  1272. valueListItem8.DisplayText = "运送待机";
  1273. valueListItem9.DataValue = "DBA";
  1274. valueListItem9.DisplayText = "重卷指示待机";
  1275. valueListItem10.DataValue = "DBB";
  1276. valueListItem10.DisplayText = "重卷作业待机";
  1277. this.ultraComboEditor3.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1278. valueListItem1,
  1279. valueListItem6,
  1280. valueListItem2,
  1281. valueListItem5,
  1282. valueListItem7,
  1283. valueListItem8,
  1284. valueListItem9,
  1285. valueListItem10});
  1286. this.ultraComboEditor3.Location = new System.Drawing.Point(773, 9);
  1287. this.ultraComboEditor3.Name = "ultraComboEditor3";
  1288. this.ultraComboEditor3.Size = new System.Drawing.Size(119, 21);
  1289. this.ultraComboEditor3.TabIndex = 93;
  1290. //
  1291. // label7
  1292. //
  1293. this.label7.BackColor = System.Drawing.Color.LightBlue;
  1294. this.label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1295. this.label7.Location = new System.Drawing.Point(686, 9);
  1296. this.label7.Name = "label7";
  1297. this.label7.Size = new System.Drawing.Size(85, 21);
  1298. this.label7.TabIndex = 92;
  1299. this.label7.Text = "进程状态";
  1300. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1301. //
  1302. // label2
  1303. //
  1304. this.label2.BackColor = System.Drawing.Color.LightBlue;
  1305. this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1306. this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1307. this.label2.Location = new System.Drawing.Point(802, 41);
  1308. this.label2.Name = "label2";
  1309. this.label2.Size = new System.Drawing.Size(10, 23);
  1310. this.label2.TabIndex = 91;
  1311. this.label2.Text = "-";
  1312. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1313. //
  1314. // label23
  1315. //
  1316. this.label23.BackColor = System.Drawing.Color.LightBlue;
  1317. this.label23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1318. this.label23.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1319. this.label23.Location = new System.Drawing.Point(590, 41);
  1320. this.label23.Name = "label23";
  1321. this.label23.Size = new System.Drawing.Size(74, 23);
  1322. this.label23.TabIndex = 90;
  1323. this.label23.Text = "生产日期";
  1324. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1325. //
  1326. // ultraDateTimeEditor2
  1327. //
  1328. appearance4.BorderColor = System.Drawing.Color.Black;
  1329. this.ultraDateTimeEditor2.Appearance = appearance4;
  1330. this.ultraDateTimeEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1331. this.ultraDateTimeEditor2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1332. this.ultraDateTimeEditor2.Location = new System.Drawing.Point(812, 41);
  1333. this.ultraDateTimeEditor2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw;
  1334. this.ultraDateTimeEditor2.MaskInput = "";
  1335. this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
  1336. this.ultraDateTimeEditor2.PromptChar = ' ';
  1337. this.ultraDateTimeEditor2.Size = new System.Drawing.Size(143, 23);
  1338. this.ultraDateTimeEditor2.TabIndex = 89;
  1339. //
  1340. // ultraDateTimeEditor3
  1341. //
  1342. appearance3.BorderColor = System.Drawing.Color.Black;
  1343. this.ultraDateTimeEditor3.Appearance = appearance3;
  1344. this.ultraDateTimeEditor3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1345. this.ultraDateTimeEditor3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1346. this.ultraDateTimeEditor3.Location = new System.Drawing.Point(663, 41);
  1347. this.ultraDateTimeEditor3.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw;
  1348. this.ultraDateTimeEditor3.MaskInput = "";
  1349. this.ultraDateTimeEditor3.Name = "ultraDateTimeEditor3";
  1350. this.ultraDateTimeEditor3.PromptChar = ' ';
  1351. this.ultraDateTimeEditor3.Size = new System.Drawing.Size(139, 23);
  1352. this.ultraDateTimeEditor3.TabIndex = 88;
  1353. //
  1354. // button1
  1355. //
  1356. this.button1.Location = new System.Drawing.Point(910, 9);
  1357. this.button1.Name = "button1";
  1358. this.button1.Size = new System.Drawing.Size(75, 23);
  1359. this.button1.TabIndex = 87;
  1360. this.button1.Text = "打印测试";
  1361. this.button1.UseVisualStyleBackColor = false;
  1362. this.button1.Visible = false;
  1363. this.button1.Click += new System.EventHandler(this.button1_Click);
  1364. //
  1365. // ultraComboEditor2
  1366. //
  1367. appearance12.BorderColor = System.Drawing.Color.Black;
  1368. this.ultraComboEditor2.Appearance = appearance12;
  1369. this.ultraComboEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1370. this.ultraComboEditor2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1371. valueListItem3.DataValue = "0";
  1372. valueListItem3.DisplayText = "包装作业待机";
  1373. valueListItem4.DataValue = "1";
  1374. valueListItem4.DisplayText = "包装完成";
  1375. this.ultraComboEditor2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1376. valueListItem3,
  1377. valueListItem4});
  1378. this.ultraComboEditor2.Location = new System.Drawing.Point(92, 9);
  1379. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1380. this.ultraComboEditor2.Size = new System.Drawing.Size(119, 21);
  1381. this.ultraComboEditor2.TabIndex = 86;
  1382. //
  1383. // label5
  1384. //
  1385. this.label5.BackColor = System.Drawing.Color.LightBlue;
  1386. this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1387. this.label5.Location = new System.Drawing.Point(5, 9);
  1388. this.label5.Name = "label5";
  1389. this.label5.Size = new System.Drawing.Size(85, 21);
  1390. this.label5.TabIndex = 85;
  1391. this.label5.Text = "包装状态";
  1392. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1393. //
  1394. // ultraDateTimeEditor1
  1395. //
  1396. appearance2.BorderColor = System.Drawing.Color.Black;
  1397. this.ultraDateTimeEditor1.Appearance = appearance2;
  1398. this.ultraDateTimeEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1399. this.ultraDateTimeEditor1.Location = new System.Drawing.Point(92, 41);
  1400. this.ultraDateTimeEditor1.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw;
  1401. this.ultraDateTimeEditor1.MaskInput = "";
  1402. this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
  1403. this.ultraDateTimeEditor1.PromptChar = ' ';
  1404. this.ultraDateTimeEditor1.Size = new System.Drawing.Size(119, 21);
  1405. this.ultraDateTimeEditor1.TabIndex = 84;
  1406. //
  1407. // label4
  1408. //
  1409. this.label4.BackColor = System.Drawing.Color.LightBlue;
  1410. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1411. this.label4.Location = new System.Drawing.Point(5, 41);
  1412. this.label4.Name = "label4";
  1413. this.label4.Size = new System.Drawing.Size(85, 21);
  1414. this.label4.TabIndex = 83;
  1415. this.label4.Text = "包装日期";
  1416. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1417. //
  1418. // label11
  1419. //
  1420. this.label11.BackColor = System.Drawing.Color.LightBlue;
  1421. this.label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1422. this.label11.Location = new System.Drawing.Point(229, 41);
  1423. this.label11.Name = "label11";
  1424. this.label11.Size = new System.Drawing.Size(85, 21);
  1425. this.label11.TabIndex = 82;
  1426. this.label11.Text = "发运号";
  1427. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1428. //
  1429. // label3
  1430. //
  1431. this.label3.BackColor = System.Drawing.Color.LightBlue;
  1432. this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1433. this.label3.Location = new System.Drawing.Point(473, 9);
  1434. this.label3.Name = "label3";
  1435. this.label3.Size = new System.Drawing.Size(85, 21);
  1436. this.label3.TabIndex = 82;
  1437. this.label3.Text = "钢卷号";
  1438. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1439. //
  1440. // textBox4
  1441. //
  1442. this.textBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1443. this.textBox4.Location = new System.Drawing.Point(316, 41);
  1444. this.textBox4.MaxLength = 15;
  1445. this.textBox4.Name = "textBox4";
  1446. this.textBox4.Size = new System.Drawing.Size(100, 21);
  1447. this.textBox4.TabIndex = 81;
  1448. //
  1449. // textBox3
  1450. //
  1451. this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1452. this.textBox3.Location = new System.Drawing.Point(560, 9);
  1453. this.textBox3.MaxLength = 15;
  1454. this.textBox3.Name = "textBox3";
  1455. this.textBox3.Size = new System.Drawing.Size(100, 21);
  1456. this.textBox3.TabIndex = 81;
  1457. //
  1458. // textBox2
  1459. //
  1460. this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1461. this.textBox2.Location = new System.Drawing.Point(418, 9);
  1462. this.textBox2.MaxLength = 5;
  1463. this.textBox2.Name = "textBox2";
  1464. this.textBox2.Size = new System.Drawing.Size(44, 21);
  1465. this.textBox2.TabIndex = 79;
  1466. //
  1467. // label1
  1468. //
  1469. this.label1.BackColor = System.Drawing.Color.LightBlue;
  1470. this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1471. this.label1.Location = new System.Drawing.Point(229, 9);
  1472. this.label1.Name = "label1";
  1473. this.label1.Size = new System.Drawing.Size(85, 21);
  1474. this.label1.TabIndex = 78;
  1475. this.label1.Text = "合同号";
  1476. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1477. //
  1478. // textBox1
  1479. //
  1480. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1481. this.textBox1.Location = new System.Drawing.Point(316, 9);
  1482. this.textBox1.MaxLength = 15;
  1483. this.textBox1.Name = "textBox1";
  1484. this.textBox1.Size = new System.Drawing.Size(100, 21);
  1485. this.textBox1.TabIndex = 77;
  1486. //
  1487. // saveFileDialog1
  1488. //
  1489. this.saveFileDialog1.Filter = "表格(*.xls)|*.xls";
  1490. //
  1491. // dataColumn42
  1492. //
  1493. this.dataColumn42.ColumnName = "ORD_SB";
  1494. //
  1495. // UIM020060
  1496. //
  1497. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1498. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1499. this.ClientSize = new System.Drawing.Size(1008, 730);
  1500. this.Controls.Add(this.ultraPanel1);
  1501. this.Name = "UIM020060";
  1502. this.Text = "UIM020060";
  1503. this.Load += new System.EventHandler(this.UIM020060_Load);
  1504. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1505. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1506. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1507. this.ultraPanel3.ClientArea.ResumeLayout(false);
  1508. this.ultraPanel3.ClientArea.PerformLayout();
  1509. this.ultraPanel3.ResumeLayout(false);
  1510. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1511. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1512. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1513. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  1514. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  1515. this.ultraPanel1.ClientArea.ResumeLayout(false);
  1516. this.ultraPanel1.ResumeLayout(false);
  1517. this.ultraPanel2.ClientArea.ResumeLayout(false);
  1518. this.ultraPanel2.ResumeLayout(false);
  1519. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1520. this.ultraGroupBox1.ResumeLayout(false);
  1521. this.ultraGroupBox1.PerformLayout();
  1522. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
  1523. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
  1524. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
  1525. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).EndInit();
  1526. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  1527. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
  1528. this.ResumeLayout(false);
  1529. }
  1530. #endregion
  1531. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1532. private System.Data.DataSet dataSet1;
  1533. private System.Data.DataTable dataTable1;
  1534. private System.Data.DataColumn dataColumn1;
  1535. private System.Data.DataColumn dataColumn3;
  1536. private System.Data.DataColumn dataColumn4;
  1537. private System.Data.DataColumn dataColumn5;
  1538. private System.Data.DataColumn dataColumn6;
  1539. private System.Data.DataColumn dataColumn7;
  1540. private System.Data.DataColumn dataColumn10;
  1541. private System.Data.DataColumn dataColumn11;
  1542. private System.Data.DataColumn dataColumn12;
  1543. private System.Data.DataColumn dataColumn13;
  1544. private System.Data.DataColumn dataColumn14;
  1545. private System.Data.DataColumn dataColumn22;
  1546. private System.Data.DataColumn dataColumn23;
  1547. private System.Data.DataColumn dataColumn24;
  1548. private System.Data.DataColumn dataColumn25;
  1549. private System.Data.DataColumn dataColumn26;
  1550. private System.Data.DataColumn dataColumn27;
  1551. private System.Data.DataColumn dataColumn28;
  1552. private System.Data.DataColumn dataColumn29;
  1553. private System.Data.DataColumn dataColumn30;
  1554. private System.Data.DataColumn dataColumn31;
  1555. private System.Data.DataColumn dataColumn32;
  1556. private System.Data.DataColumn dataColumn33;
  1557. private System.Data.DataColumn dataColumn34;
  1558. private System.Data.DataColumn dataColumn35;
  1559. private System.Data.DataColumn dataColumn36;
  1560. private System.Data.DataColumn dataColumn37;
  1561. private System.Data.DataColumn dataColumn38;
  1562. private System.Data.DataColumn dataColumn39;
  1563. private System.Data.DataColumn dataColumn40;
  1564. private System.Data.DataColumn dataColumn41;
  1565. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  1566. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  1567. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  1568. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  1569. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1570. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  1571. private System.Windows.Forms.Label label5;
  1572. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
  1573. private System.Windows.Forms.Label label4;
  1574. private System.Windows.Forms.Label label3;
  1575. private System.Windows.Forms.TextBox textBox3;
  1576. private System.Windows.Forms.TextBox textBox2;
  1577. private System.Windows.Forms.Label label1;
  1578. private System.Windows.Forms.TextBox textBox1;
  1579. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  1580. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter ultraGridExcelExporter1;
  1581. private System.Data.DataColumn dataColumn8;
  1582. private System.Data.DataColumn dataColumn9;
  1583. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  1584. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1585. private System.Windows.Forms.TextBox textBox7;
  1586. private System.Windows.Forms.TextBox textBox11;
  1587. private System.Windows.Forms.TextBox textBox9;
  1588. private System.Windows.Forms.TextBox textBox5;
  1589. private System.Windows.Forms.TextBox textBox8;
  1590. private System.Windows.Forms.Label label12;
  1591. private System.Windows.Forms.TextBox textBox12;
  1592. private System.Windows.Forms.TextBox textBox13;
  1593. private System.Windows.Forms.TextBox textBox10;
  1594. private System.Windows.Forms.Label label14;
  1595. private System.Windows.Forms.Label label15;
  1596. private System.Windows.Forms.TextBox textBox14;
  1597. private System.Windows.Forms.TextBox textBox15;
  1598. private System.Windows.Forms.Button button1;
  1599. private System.Data.DataColumn dataColumn15;
  1600. private System.Data.DataColumn dataColumn16;
  1601. private System.Data.DataColumn dataColumn17;
  1602. private System.Data.DataColumn dataColumn18;
  1603. private System.Windows.Forms.Label label11;
  1604. private System.Windows.Forms.TextBox textBox4;
  1605. private System.Data.DataColumn dataColumn2;
  1606. private System.Data.DataColumn dataColumn19;
  1607. private System.Windows.Forms.CheckBox checkBox2;
  1608. private System.Windows.Forms.CheckBox checkBox1;
  1609. private System.Windows.Forms.Label label13;
  1610. private System.Windows.Forms.Label label9;
  1611. private System.Windows.Forms.Label label6;
  1612. private System.Windows.Forms.Label label8;
  1613. private System.Windows.Forms.Label label10;
  1614. private System.Windows.Forms.TextBox textBoxlicenseMark;
  1615. private System.Windows.Forms.TextBox textBoxLicenseNo;
  1616. private System.Windows.Forms.CheckBox checkBoxORD;
  1617. private System.Windows.Forms.CheckBox checkBox4;
  1618. private System.Windows.Forms.CheckBox checkBox3;
  1619. private System.Windows.Forms.Label label2;
  1620. private System.Windows.Forms.Label label23;
  1621. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
  1622. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor3;
  1623. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
  1624. private System.Windows.Forms.Label label7;
  1625. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
  1626. private System.Data.DataColumn dataColumn20;
  1627. private System.Windows.Forms.Label label16;
  1628. private System.Windows.Forms.TextBox textBox6;
  1629. private System.Data.DataColumn dataColumn21;
  1630. private System.Data.DataColumn dataColumn42;
  1631. }
  1632. }