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

Frm_00_Retan_rcp.Designer.vb 99KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Frm_00_Retan_rcp
  3. Inherits System.Windows.Forms.Form
  4. 'Form 重写 Dispose,以清理组件列表。
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Windows 窗体设计器所必需的
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下过程是 Windows 窗体设计器所必需的
  18. '可以使用 Windows 窗体设计器修改它。
  19. '不要使用代码编辑器修改它。
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Me.components = New System.ComponentModel.Container()
  23. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Me.Label5 = New System.Windows.Forms.Label()
  26. Me.Label6 = New System.Windows.Forms.Label()
  27. Me.Label7 = New System.Windows.Forms.Label()
  28. Me.Label8 = New System.Windows.Forms.Label()
  29. Me.Label9 = New System.Windows.Forms.Label()
  30. Me.Label10 = New System.Windows.Forms.Label()
  31. Me.Label19 = New System.Windows.Forms.Label()
  32. Me.Label28 = New System.Windows.Forms.Label()
  33. Me.Label29 = New System.Windows.Forms.Label()
  34. Me.烤膠_bt = New System.Windows.Forms.TextBox()
  35. Me.助劑_tb = New System.Windows.Forms.TextBox()
  36. Me.染料_tb = New System.Windows.Forms.TextBox()
  37. Me.單寧_tb = New System.Windows.Forms.TextBox()
  38. Me.复鞣剂_tb = New System.Windows.Forms.TextBox()
  39. Me.txtsize = New System.Windows.Forms.TextBox()
  40. Me.Label12 = New System.Windows.Forms.Label()
  41. Me.丙烯酸_tb = New System.Windows.Forms.TextBox()
  42. Me.油脂_tb = New System.Windows.Forms.TextBox()
  43. Me.txtwb_weight = New System.Windows.Forms.TextBox()
  44. Me.Label4 = New System.Windows.Forms.Label()
  45. Me.GroupBox5 = New System.Windows.Forms.GroupBox()
  46. Me.重新讀取_bt = New System.Windows.Forms.Button()
  47. Me.RadioButtonDCS = New System.Windows.Forms.RadioButton()
  48. Me.RadioButtonJD = New System.Windows.Forms.RadioButton()
  49. Me.RadioButtonCW = New System.Windows.Forms.RadioButton()
  50. Me.RadioButtonSM = New System.Windows.Forms.RadioButton()
  51. Me.RadioButtonXJM = New System.Windows.Forms.RadioButton()
  52. Me.RadioButtonZY = New System.Windows.Forms.RadioButton()
  53. Me.RadioButtonHS = New System.Windows.Forms.RadioButton()
  54. Me.RadioButtonYT = New System.Windows.Forms.RadioButton()
  55. Me.RadioButtonDB = New System.Windows.Forms.RadioButton()
  56. Me.RadioButtonHD = New System.Windows.Forms.RadioButton()
  57. Me.模式通知_lb = New System.Windows.Forms.Label()
  58. Me.平均尺数_tb = New System.Windows.Forms.TextBox()
  59. Me.每尺合計_dgv = New System.Windows.Forms.DataGridView()
  60. Me.合計_dgv = New System.Windows.Forms.DataGridView()
  61. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  62. Me.txtjc = New System.Windows.Forms.TextBox()
  63. Me.txtsum = New System.Windows.Forms.TextBox()
  64. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  65. Me.dgv_record = New System.Windows.Forms.DataGridView()
  66. Me.Label23 = New System.Windows.Forms.Label()
  67. Me.開削_lb = New System.Windows.Forms.Label()
  68. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  69. Me.品名_lb = New System.Windows.Forms.Label()
  70. Me.dgv2 = New System.Windows.Forms.DataGridView()
  71. Me.處方_dgv = New System.Windows.Forms.DataGridView()
  72. Me.ListBox2 = New System.Windows.Forms.ListBox()
  73. Me.TXT_PID = New System.Windows.Forms.TextBox()
  74. Me.處方清單_dgv = New System.Windows.Forms.DataGridView()
  75. Me.Button21 = New System.Windows.Forms.Button()
  76. Me.dgv_chem_detail = New System.Windows.Forms.DataGridView()
  77. Me.dgv_cost = New System.Windows.Forms.DataGridView()
  78. Me.Button15 = New System.Windows.Forms.Button()
  79. Me.Button14 = New System.Windows.Forms.Button()
  80. Me.Button13 = New System.Windows.Forms.Button()
  81. Me.Button12 = New System.Windows.Forms.Button()
  82. Me.Button11 = New System.Windows.Forms.Button()
  83. Me.TextBox4 = New System.Windows.Forms.TextBox()
  84. Me.TextBox3 = New System.Windows.Forms.TextBox()
  85. Me.TextBox2 = New System.Windows.Forms.TextBox()
  86. Me.ListBox4 = New System.Windows.Forms.ListBox()
  87. Me.ListBox3 = New System.Windows.Forms.ListBox()
  88. Me.Button20 = New System.Windows.Forms.Button()
  89. Me.Button18 = New System.Windows.Forms.Button()
  90. Me.Button17 = New System.Windows.Forms.Button()
  91. Me.Button10 = New System.Windows.Forms.Button()
  92. Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
  93. Me.TextBox12 = New System.Windows.Forms.TextBox()
  94. Me.cmdAddrcp = New System.Windows.Forms.Button()
  95. Me.Button8 = New System.Windows.Forms.Button()
  96. Me.cmdcanceladd = New System.Windows.Forms.Button()
  97. Me.Label2 = New System.Windows.Forms.Label()
  98. Me.Label14 = New System.Windows.Forms.Label()
  99. Me.Label15 = New System.Windows.Forms.Label()
  100. Me.Label16 = New System.Windows.Forms.Label()
  101. Me.成本_bt = New System.Windows.Forms.Button()
  102. Me.TextBox5 = New System.Windows.Forms.TextBox()
  103. Me.cmdCancelEdit = New System.Windows.Forms.Button()
  104. Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
  105. Me.TextBox10 = New System.Windows.Forms.TextBox()
  106. Me.Button24 = New System.Windows.Forms.Button()
  107. Me.Panel1 = New System.Windows.Forms.Panel()
  108. Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  109. Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
  110. Me.Panel2 = New System.Windows.Forms.Panel()
  111. Me.Panel3 = New System.Windows.Forms.Panel()
  112. Me.系统分类_ch = New System.Windows.Forms.CheckBox()
  113. Me.进货单价_ch = New System.Windows.Forms.CheckBox()
  114. Me.系统代码_ch = New System.Windows.Forms.CheckBox()
  115. Me.系统品名_ch = New System.Windows.Forms.CheckBox()
  116. Me.zdhc_code_ch = New System.Windows.Forms.CheckBox()
  117. Me.类别_ch = New System.Windows.Forms.CheckBox()
  118. Me.化工分类_ch = New System.Windows.Forms.CheckBox()
  119. Me.存檔_bt = New System.Windows.Forms.Button()
  120. Me.刪除工藝_bt = New System.Windows.Forms.Button()
  121. Me.另存工藝_bt = New System.Windows.Forms.Button()
  122. Me.打印標籤_bt = New System.Windows.Forms.Button()
  123. Me.打印工藝_bt = New System.Windows.Forms.Button()
  124. Me.查詢_bt = New System.Windows.Forms.Button()
  125. Me.領料_bt = New System.Windows.Forms.Button()
  126. Me.處方縮放_bt = New System.Windows.Forms.Button()
  127. Me.計算_bt = New System.Windows.Forms.Button()
  128. Me.刪除一行_bt = New System.Windows.Forms.Button()
  129. Me.修改指定_bt = New System.Windows.Forms.Button()
  130. Me.插入一行_bt = New System.Windows.Forms.Button()
  131. Me.修改存檔_bt = New System.Windows.Forms.Button()
  132. Me.Label22 = New System.Windows.Forms.Label()
  133. Me.Label3 = New System.Windows.Forms.Label()
  134. Me.Label11 = New System.Windows.Forms.Label()
  135. Me.Label24 = New System.Windows.Forms.Label()
  136. Me.建立日期_lb = New System.Windows.Forms.Label()
  137. Me.流程卡号_lb = New System.Windows.Forms.Label()
  138. Me.片数_lb = New System.Windows.Forms.Label()
  139. Me.重量_lb = New System.Windows.Forms.Label()
  140. Me.选级_lb = New System.Windows.Forms.Label()
  141. Me.平均_lb = New System.Windows.Forms.Label()
  142. Me.GroupBox5.SuspendLayout()
  143. CType(Me.每尺合計_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  144. CType(Me.合計_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  145. Me.GroupBox1.SuspendLayout()
  146. Me.GroupBox4.SuspendLayout()
  147. CType(Me.dgv_record, System.ComponentModel.ISupportInitialize).BeginInit()
  148. CType(Me.dgv2, System.ComponentModel.ISupportInitialize).BeginInit()
  149. CType(Me.處方_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  150. CType(Me.處方清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  151. CType(Me.dgv_chem_detail, System.ComponentModel.ISupportInitialize).BeginInit()
  152. CType(Me.dgv_cost, System.ComponentModel.ISupportInitialize).BeginInit()
  153. Me.Panel1.SuspendLayout()
  154. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  155. CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit()
  156. Me.SplitContainer1.Panel1.SuspendLayout()
  157. Me.SplitContainer1.Panel2.SuspendLayout()
  158. Me.SplitContainer1.SuspendLayout()
  159. Me.Panel2.SuspendLayout()
  160. Me.Panel3.SuspendLayout()
  161. Me.SuspendLayout()
  162. '
  163. 'Label5
  164. '
  165. Me.Label5.AutoSize = True
  166. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  167. Me.Label5.Location = New System.Drawing.Point(35, 260)
  168. Me.Label5.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  169. Me.Label5.Name = "Label5"
  170. Me.Label5.Size = New System.Drawing.Size(31, 16)
  171. Me.Label5.TabIndex = 207
  172. Me.Label5.Text = "合計"
  173. '
  174. 'Label6
  175. '
  176. Me.Label6.AutoSize = True
  177. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  178. Me.Label6.Location = New System.Drawing.Point(24, 187)
  179. Me.Label6.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  180. Me.Label6.Name = "Label6"
  181. Me.Label6.Size = New System.Drawing.Size(43, 16)
  182. Me.Label6.TabIndex = 206
  183. Me.Label6.Text = "丙烯酸"
  184. Me.Label6.Visible = False
  185. '
  186. 'Label7
  187. '
  188. Me.Label7.AutoSize = True
  189. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  190. Me.Label7.Location = New System.Drawing.Point(24, 211)
  191. Me.Label7.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  192. Me.Label7.Name = "Label7"
  193. Me.Label7.Size = New System.Drawing.Size(43, 16)
  194. Me.Label7.TabIndex = 205
  195. Me.Label7.Text = "复鞣剂"
  196. Me.Label7.Visible = False
  197. '
  198. 'Label8
  199. '
  200. Me.Label8.AutoSize = True
  201. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  202. Me.Label8.Location = New System.Drawing.Point(12, 236)
  203. Me.Label8.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  204. Me.Label8.Name = "Label8"
  205. Me.Label8.Size = New System.Drawing.Size(55, 16)
  206. Me.Label8.TabIndex = 204
  207. Me.Label8.Text = "基础化工"
  208. Me.Label8.Visible = False
  209. '
  210. 'Label9
  211. '
  212. Me.Label9.AutoSize = True
  213. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  214. Me.Label9.Location = New System.Drawing.Point(33, 163)
  215. Me.Label9.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  216. Me.Label9.Name = "Label9"
  217. Me.Label9.Size = New System.Drawing.Size(34, 17)
  218. Me.Label9.TabIndex = 203
  219. Me.Label9.Text = "助剂"
  220. Me.Label9.Visible = False
  221. '
  222. 'Label10
  223. '
  224. Me.Label10.AutoSize = True
  225. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  226. Me.Label10.Location = New System.Drawing.Point(32, 139)
  227. Me.Label10.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  228. Me.Label10.Name = "Label10"
  229. Me.Label10.Size = New System.Drawing.Size(34, 17)
  230. Me.Label10.TabIndex = 202
  231. Me.Label10.Text = "染料"
  232. Me.Label10.Visible = False
  233. '
  234. 'Label19
  235. '
  236. Me.Label19.AutoSize = True
  237. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  238. Me.Label19.Location = New System.Drawing.Point(33, 117)
  239. Me.Label19.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  240. Me.Label19.Name = "Label19"
  241. Me.Label19.Size = New System.Drawing.Size(31, 16)
  242. Me.Label19.TabIndex = 201
  243. Me.Label19.Text = "油脂"
  244. Me.Label19.Visible = False
  245. '
  246. 'Label28
  247. '
  248. Me.Label28.AutoSize = True
  249. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  250. Me.Label28.Location = New System.Drawing.Point(33, 93)
  251. Me.Label28.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  252. Me.Label28.Name = "Label28"
  253. Me.Label28.Size = New System.Drawing.Size(31, 16)
  254. Me.Label28.TabIndex = 200
  255. Me.Label28.Text = "栲膠"
  256. Me.Label28.Visible = False
  257. '
  258. 'Label29
  259. '
  260. Me.Label29.AutoSize = True
  261. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  262. Me.Label29.Location = New System.Drawing.Point(33, 68)
  263. Me.Label29.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  264. Me.Label29.Name = "Label29"
  265. Me.Label29.Size = New System.Drawing.Size(31, 16)
  266. Me.Label29.TabIndex = 199
  267. Me.Label29.Text = "單寧"
  268. Me.Label29.Visible = False
  269. '
  270. '烤膠_bt
  271. '
  272. Me.烤膠_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  273. Me.烤膠_bt.Location = New System.Drawing.Point(69, 88)
  274. Me.烤膠_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  275. Me.烤膠_bt.Name = "烤膠_bt"
  276. Me.烤膠_bt.Size = New System.Drawing.Size(112, 23)
  277. Me.烤膠_bt.TabIndex = 34
  278. '
  279. '助劑_tb
  280. '
  281. Me.助劑_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  282. Me.助劑_tb.Location = New System.Drawing.Point(69, 160)
  283. Me.助劑_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  284. Me.助劑_tb.Name = "助劑_tb"
  285. Me.助劑_tb.Size = New System.Drawing.Size(112, 23)
  286. Me.助劑_tb.TabIndex = 5
  287. '
  288. '染料_tb
  289. '
  290. Me.染料_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  291. Me.染料_tb.Location = New System.Drawing.Point(69, 136)
  292. Me.染料_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  293. Me.染料_tb.Name = "染料_tb"
  294. Me.染料_tb.Size = New System.Drawing.Size(112, 23)
  295. Me.染料_tb.TabIndex = 4
  296. '
  297. '單寧_tb
  298. '
  299. Me.單寧_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  300. Me.單寧_tb.Location = New System.Drawing.Point(69, 64)
  301. Me.單寧_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  302. Me.單寧_tb.Name = "單寧_tb"
  303. Me.單寧_tb.Size = New System.Drawing.Size(112, 23)
  304. Me.單寧_tb.TabIndex = 2
  305. '
  306. '复鞣剂_tb
  307. '
  308. Me.复鞣剂_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  309. Me.复鞣剂_tb.Location = New System.Drawing.Point(69, 208)
  310. Me.复鞣剂_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  311. Me.复鞣剂_tb.Name = "复鞣剂_tb"
  312. Me.复鞣剂_tb.Size = New System.Drawing.Size(112, 23)
  313. Me.复鞣剂_tb.TabIndex = 7
  314. '
  315. 'txtsize
  316. '
  317. Me.txtsize.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  318. Me.txtsize.Location = New System.Drawing.Point(69, 40)
  319. Me.txtsize.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  320. Me.txtsize.Name = "txtsize"
  321. Me.txtsize.Size = New System.Drawing.Size(112, 23)
  322. Me.txtsize.TabIndex = 1
  323. '
  324. 'Label12
  325. '
  326. Me.Label12.AutoSize = True
  327. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  328. Me.Label12.Location = New System.Drawing.Point(7, 43)
  329. Me.Label12.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  330. Me.Label12.Name = "Label12"
  331. Me.Label12.Size = New System.Drawing.Size(55, 16)
  332. Me.Label12.TabIndex = 33
  333. Me.Label12.Text = "成品呎數"
  334. '
  335. '丙烯酸_tb
  336. '
  337. Me.丙烯酸_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  338. Me.丙烯酸_tb.Location = New System.Drawing.Point(69, 184)
  339. Me.丙烯酸_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  340. Me.丙烯酸_tb.Name = "丙烯酸_tb"
  341. Me.丙烯酸_tb.Size = New System.Drawing.Size(112, 23)
  342. Me.丙烯酸_tb.TabIndex = 6
  343. '
  344. '油脂_tb
  345. '
  346. Me.油脂_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  347. Me.油脂_tb.Location = New System.Drawing.Point(69, 112)
  348. Me.油脂_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  349. Me.油脂_tb.Name = "油脂_tb"
  350. Me.油脂_tb.Size = New System.Drawing.Size(112, 23)
  351. Me.油脂_tb.TabIndex = 3
  352. '
  353. 'txtwb_weight
  354. '
  355. Me.txtwb_weight.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  356. Me.txtwb_weight.Location = New System.Drawing.Point(69, 16)
  357. Me.txtwb_weight.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  358. Me.txtwb_weight.Name = "txtwb_weight"
  359. Me.txtwb_weight.Size = New System.Drawing.Size(112, 23)
  360. Me.txtwb_weight.TabIndex = 10
  361. '
  362. 'Label4
  363. '
  364. Me.Label4.AutoSize = True
  365. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  366. Me.Label4.Location = New System.Drawing.Point(7, 20)
  367. Me.Label4.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  368. Me.Label4.Name = "Label4"
  369. Me.Label4.Size = New System.Drawing.Size(55, 16)
  370. Me.Label4.TabIndex = 19
  371. Me.Label4.Text = "藍皮重量"
  372. '
  373. 'GroupBox5
  374. '
  375. Me.GroupBox5.Controls.Add(Me.重新讀取_bt)
  376. Me.GroupBox5.Controls.Add(Me.RadioButtonDCS)
  377. Me.GroupBox5.Controls.Add(Me.RadioButtonJD)
  378. Me.GroupBox5.Controls.Add(Me.RadioButtonCW)
  379. Me.GroupBox5.Controls.Add(Me.RadioButtonSM)
  380. Me.GroupBox5.Controls.Add(Me.RadioButtonXJM)
  381. Me.GroupBox5.Controls.Add(Me.RadioButtonZY)
  382. Me.GroupBox5.Controls.Add(Me.RadioButtonHS)
  383. Me.GroupBox5.Controls.Add(Me.RadioButtonYT)
  384. Me.GroupBox5.Controls.Add(Me.RadioButtonDB)
  385. Me.GroupBox5.Controls.Add(Me.RadioButtonHD)
  386. Me.GroupBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  387. Me.GroupBox5.ForeColor = System.Drawing.Color.Red
  388. Me.GroupBox5.Location = New System.Drawing.Point(3, 1)
  389. Me.GroupBox5.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  390. Me.GroupBox5.Name = "GroupBox5"
  391. Me.GroupBox5.Padding = New System.Windows.Forms.Padding(2, 3, 2, 3)
  392. Me.GroupBox5.Size = New System.Drawing.Size(894, 40)
  393. Me.GroupBox5.TabIndex = 305
  394. Me.GroupBox5.TabStop = False
  395. Me.GroupBox5.Text = "客户"
  396. '
  397. '重新讀取_bt
  398. '
  399. Me.重新讀取_bt.BackgroundImage = Global.WindowsApp1.My.Resources.Resources.renew
  400. Me.重新讀取_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  401. Me.重新讀取_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  402. Me.重新讀取_bt.Location = New System.Drawing.Point(863, 8)
  403. Me.重新讀取_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  404. Me.重新讀取_bt.Name = "重新讀取_bt"
  405. Me.重新讀取_bt.Size = New System.Drawing.Size(32, 32)
  406. Me.重新讀取_bt.TabIndex = 293
  407. Me.重新讀取_bt.UseVisualStyleBackColor = True
  408. '
  409. 'RadioButtonDCS
  410. '
  411. Me.RadioButtonDCS.AutoSize = True
  412. Me.RadioButtonDCS.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  413. Me.RadioButtonDCS.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  414. Me.RadioButtonDCS.Location = New System.Drawing.Point(447, 16)
  415. Me.RadioButtonDCS.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  416. Me.RadioButtonDCS.Name = "RadioButtonDCS"
  417. Me.RadioButtonDCS.Size = New System.Drawing.Size(49, 20)
  418. Me.RadioButtonDCS.TabIndex = 9
  419. Me.RadioButtonDCS.TabStop = True
  420. Me.RadioButtonDCS.Text = "DCS"
  421. Me.RadioButtonDCS.UseVisualStyleBackColor = True
  422. '
  423. 'RadioButtonJD
  424. '
  425. Me.RadioButtonJD.AutoSize = True
  426. Me.RadioButtonJD.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  427. Me.RadioButtonJD.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  428. Me.RadioButtonJD.Location = New System.Drawing.Point(8, 16)
  429. Me.RadioButtonJD.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  430. Me.RadioButtonJD.Name = "RadioButtonJD"
  431. Me.RadioButtonJD.Size = New System.Drawing.Size(46, 20)
  432. Me.RadioButtonJD.TabIndex = 8
  433. Me.RadioButtonJD.TabStop = True
  434. Me.RadioButtonJD.Text = "ALL"
  435. Me.RadioButtonJD.UseVisualStyleBackColor = True
  436. '
  437. 'RadioButtonCW
  438. '
  439. Me.RadioButtonCW.AutoSize = True
  440. Me.RadioButtonCW.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  441. Me.RadioButtonCW.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  442. Me.RadioButtonCW.Location = New System.Drawing.Point(351, 16)
  443. Me.RadioButtonCW.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  444. Me.RadioButtonCW.Name = "RadioButtonCW"
  445. Me.RadioButtonCW.Size = New System.Drawing.Size(45, 20)
  446. Me.RadioButtonCW.TabIndex = 7
  447. Me.RadioButtonCW.TabStop = True
  448. Me.RadioButtonCW.Text = "CW"
  449. Me.RadioButtonCW.UseVisualStyleBackColor = True
  450. '
  451. 'RadioButtonSM
  452. '
  453. Me.RadioButtonSM.AutoSize = True
  454. Me.RadioButtonSM.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  455. Me.RadioButtonSM.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  456. Me.RadioButtonSM.Location = New System.Drawing.Point(304, 16)
  457. Me.RadioButtonSM.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  458. Me.RadioButtonSM.Name = "RadioButtonSM"
  459. Me.RadioButtonSM.Size = New System.Drawing.Size(44, 20)
  460. Me.RadioButtonSM.TabIndex = 6
  461. Me.RadioButtonSM.TabStop = True
  462. Me.RadioButtonSM.Text = "SM"
  463. Me.RadioButtonSM.UseVisualStyleBackColor = True
  464. '
  465. 'RadioButtonXJM
  466. '
  467. Me.RadioButtonXJM.AutoSize = True
  468. Me.RadioButtonXJM.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  469. Me.RadioButtonXJM.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  470. Me.RadioButtonXJM.Location = New System.Drawing.Point(250, 16)
  471. Me.RadioButtonXJM.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  472. Me.RadioButtonXJM.Name = "RadioButtonXJM"
  473. Me.RadioButtonXJM.Size = New System.Drawing.Size(50, 20)
  474. Me.RadioButtonXJM.TabIndex = 5
  475. Me.RadioButtonXJM.TabStop = True
  476. Me.RadioButtonXJM.Text = "XJM"
  477. Me.RadioButtonXJM.UseVisualStyleBackColor = True
  478. '
  479. 'RadioButtonZY
  480. '
  481. Me.RadioButtonZY.AutoSize = True
  482. Me.RadioButtonZY.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  483. Me.RadioButtonZY.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  484. Me.RadioButtonZY.Location = New System.Drawing.Point(204, 16)
  485. Me.RadioButtonZY.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  486. Me.RadioButtonZY.Name = "RadioButtonZY"
  487. Me.RadioButtonZY.Size = New System.Drawing.Size(40, 20)
  488. Me.RadioButtonZY.TabIndex = 4
  489. Me.RadioButtonZY.TabStop = True
  490. Me.RadioButtonZY.Text = "ZY"
  491. Me.RadioButtonZY.UseVisualStyleBackColor = True
  492. '
  493. 'RadioButtonHS
  494. '
  495. Me.RadioButtonHS.AutoSize = True
  496. Me.RadioButtonHS.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  497. Me.RadioButtonHS.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  498. Me.RadioButtonHS.Location = New System.Drawing.Point(156, 16)
  499. Me.RadioButtonHS.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  500. Me.RadioButtonHS.Name = "RadioButtonHS"
  501. Me.RadioButtonHS.Size = New System.Drawing.Size(41, 20)
  502. Me.RadioButtonHS.TabIndex = 3
  503. Me.RadioButtonHS.TabStop = True
  504. Me.RadioButtonHS.Text = "HS"
  505. Me.RadioButtonHS.UseVisualStyleBackColor = True
  506. '
  507. 'RadioButtonYT
  508. '
  509. Me.RadioButtonYT.AutoSize = True
  510. Me.RadioButtonYT.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  511. Me.RadioButtonYT.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  512. Me.RadioButtonYT.Location = New System.Drawing.Point(400, 16)
  513. Me.RadioButtonYT.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  514. Me.RadioButtonYT.Name = "RadioButtonYT"
  515. Me.RadioButtonYT.Size = New System.Drawing.Size(39, 20)
  516. Me.RadioButtonYT.TabIndex = 2
  517. Me.RadioButtonYT.TabStop = True
  518. Me.RadioButtonYT.Text = "YT"
  519. Me.RadioButtonYT.UseVisualStyleBackColor = True
  520. '
  521. 'RadioButtonDB
  522. '
  523. Me.RadioButtonDB.AutoSize = True
  524. Me.RadioButtonDB.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  525. Me.RadioButtonDB.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  526. Me.RadioButtonDB.Location = New System.Drawing.Point(108, 16)
  527. Me.RadioButtonDB.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  528. Me.RadioButtonDB.Name = "RadioButtonDB"
  529. Me.RadioButtonDB.Size = New System.Drawing.Size(42, 20)
  530. Me.RadioButtonDB.TabIndex = 1
  531. Me.RadioButtonDB.TabStop = True
  532. Me.RadioButtonDB.Text = "DB"
  533. Me.RadioButtonDB.UseVisualStyleBackColor = True
  534. '
  535. 'RadioButtonHD
  536. '
  537. Me.RadioButtonHD.AutoSize = True
  538. Me.RadioButtonHD.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  539. Me.RadioButtonHD.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  540. Me.RadioButtonHD.Location = New System.Drawing.Point(60, 16)
  541. Me.RadioButtonHD.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  542. Me.RadioButtonHD.Name = "RadioButtonHD"
  543. Me.RadioButtonHD.Size = New System.Drawing.Size(43, 20)
  544. Me.RadioButtonHD.TabIndex = 0
  545. Me.RadioButtonHD.TabStop = True
  546. Me.RadioButtonHD.Text = "HD"
  547. Me.RadioButtonHD.UseVisualStyleBackColor = True
  548. '
  549. '模式通知_lb
  550. '
  551. Me.模式通知_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  552. Me.模式通知_lb.AutoSize = True
  553. Me.模式通知_lb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  554. Me.模式通知_lb.ForeColor = System.Drawing.Color.Red
  555. Me.模式通知_lb.Location = New System.Drawing.Point(1425, 13)
  556. Me.模式通知_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  557. Me.模式通知_lb.Name = "模式通知_lb"
  558. Me.模式通知_lb.Size = New System.Drawing.Size(106, 21)
  559. Me.模式通知_lb.TabIndex = 246
  560. Me.模式通知_lb.Text = "新增處方模式"
  561. Me.模式通知_lb.UseWaitCursor = True
  562. Me.模式通知_lb.Visible = False
  563. '
  564. '平均尺数_tb
  565. '
  566. Me.平均尺数_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  567. Me.平均尺数_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  568. Me.平均尺数_tb.ForeColor = System.Drawing.Color.Red
  569. Me.平均尺数_tb.Location = New System.Drawing.Point(1716, 1012)
  570. Me.平均尺数_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  571. Me.平均尺数_tb.Name = "平均尺数_tb"
  572. Me.平均尺数_tb.Size = New System.Drawing.Size(63, 25)
  573. Me.平均尺数_tb.TabIndex = 304
  574. Me.平均尺数_tb.WordWrap = False
  575. '
  576. '每尺合計_dgv
  577. '
  578. Me.每尺合計_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  579. Me.每尺合計_dgv.BackgroundColor = System.Drawing.Color.White
  580. Me.每尺合計_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  581. Me.每尺合計_dgv.Dock = System.Windows.Forms.DockStyle.Fill
  582. Me.每尺合計_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
  583. Me.每尺合計_dgv.Location = New System.Drawing.Point(0, 0)
  584. Me.每尺合計_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  585. Me.每尺合計_dgv.Name = "每尺合計_dgv"
  586. Me.每尺合計_dgv.RowHeadersWidth = 5
  587. Me.每尺合計_dgv.RowTemplate.Height = 24
  588. Me.每尺合計_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  589. Me.每尺合計_dgv.Size = New System.Drawing.Size(230, 439)
  590. Me.每尺合計_dgv.TabIndex = 303
  591. '
  592. '合計_dgv
  593. '
  594. Me.合計_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  595. Me.合計_dgv.BackgroundColor = System.Drawing.Color.White
  596. Me.合計_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  597. Me.合計_dgv.Dock = System.Windows.Forms.DockStyle.Fill
  598. Me.合計_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
  599. Me.合計_dgv.Location = New System.Drawing.Point(0, 0)
  600. Me.合計_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  601. Me.合計_dgv.Name = "合計_dgv"
  602. Me.合計_dgv.RowHeadersWidth = 5
  603. Me.合計_dgv.RowTemplate.Height = 24
  604. Me.合計_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  605. Me.合計_dgv.Size = New System.Drawing.Size(230, 450)
  606. Me.合計_dgv.TabIndex = 302
  607. '
  608. 'GroupBox1
  609. '
  610. Me.GroupBox1.Controls.Add(Me.Label5)
  611. Me.GroupBox1.Controls.Add(Me.Label6)
  612. Me.GroupBox1.Controls.Add(Me.Label7)
  613. Me.GroupBox1.Controls.Add(Me.Label8)
  614. Me.GroupBox1.Controls.Add(Me.Label9)
  615. Me.GroupBox1.Controls.Add(Me.Label10)
  616. Me.GroupBox1.Controls.Add(Me.Label19)
  617. Me.GroupBox1.Controls.Add(Me.Label28)
  618. Me.GroupBox1.Controls.Add(Me.Label29)
  619. Me.GroupBox1.Controls.Add(Me.烤膠_bt)
  620. Me.GroupBox1.Controls.Add(Me.txtsize)
  621. Me.GroupBox1.Controls.Add(Me.Label12)
  622. Me.GroupBox1.Controls.Add(Me.丙烯酸_tb)
  623. Me.GroupBox1.Controls.Add(Me.油脂_tb)
  624. Me.GroupBox1.Controls.Add(Me.助劑_tb)
  625. Me.GroupBox1.Controls.Add(Me.染料_tb)
  626. Me.GroupBox1.Controls.Add(Me.單寧_tb)
  627. Me.GroupBox1.Controls.Add(Me.复鞣剂_tb)
  628. Me.GroupBox1.Controls.Add(Me.txtwb_weight)
  629. Me.GroupBox1.Controls.Add(Me.Label4)
  630. Me.GroupBox1.Controls.Add(Me.txtjc)
  631. Me.GroupBox1.Controls.Add(Me.txtsum)
  632. Me.GroupBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  633. Me.GroupBox1.Location = New System.Drawing.Point(209, 198)
  634. Me.GroupBox1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  635. Me.GroupBox1.Name = "GroupBox1"
  636. Me.GroupBox1.Padding = New System.Windows.Forms.Padding(2, 5, 2, 5)
  637. Me.GroupBox1.Size = New System.Drawing.Size(186, 286)
  638. Me.GroupBox1.TabIndex = 292
  639. Me.GroupBox1.TabStop = False
  640. Me.GroupBox1.Text = "成本計算"
  641. Me.GroupBox1.Visible = False
  642. '
  643. 'txtjc
  644. '
  645. Me.txtjc.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  646. Me.txtjc.Location = New System.Drawing.Point(69, 232)
  647. Me.txtjc.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  648. Me.txtjc.Name = "txtjc"
  649. Me.txtjc.Size = New System.Drawing.Size(112, 23)
  650. Me.txtjc.TabIndex = 142
  651. Me.txtjc.Visible = False
  652. '
  653. 'txtsum
  654. '
  655. Me.txtsum.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  656. Me.txtsum.Location = New System.Drawing.Point(69, 257)
  657. Me.txtsum.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  658. Me.txtsum.Name = "txtsum"
  659. Me.txtsum.Size = New System.Drawing.Size(112, 23)
  660. Me.txtsum.TabIndex = 144
  661. Me.txtsum.Visible = False
  662. '
  663. 'GroupBox4
  664. '
  665. Me.GroupBox4.Controls.Add(Me.dgv_record)
  666. Me.GroupBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  667. Me.GroupBox4.Location = New System.Drawing.Point(408, 214)
  668. Me.GroupBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  669. Me.GroupBox4.Name = "GroupBox4"
  670. Me.GroupBox4.Padding = New System.Windows.Forms.Padding(2, 5, 2, 5)
  671. Me.GroupBox4.Size = New System.Drawing.Size(203, 162)
  672. Me.GroupBox4.TabIndex = 291
  673. Me.GroupBox4.TabStop = False
  674. Me.GroupBox4.Text = "成本計算"
  675. Me.GroupBox4.Visible = False
  676. '
  677. 'dgv_record
  678. '
  679. Me.dgv_record.BorderStyle = System.Windows.Forms.BorderStyle.None
  680. Me.dgv_record.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  681. Me.dgv_record.Location = New System.Drawing.Point(101, 14)
  682. Me.dgv_record.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  683. Me.dgv_record.Name = "dgv_record"
  684. Me.dgv_record.RowHeadersWidth = 66
  685. Me.dgv_record.RowTemplate.Height = 24
  686. Me.dgv_record.Size = New System.Drawing.Size(94, 140)
  687. Me.dgv_record.TabIndex = 135
  688. Me.dgv_record.VirtualMode = True
  689. Me.dgv_record.Visible = False
  690. '
  691. 'Label23
  692. '
  693. Me.Label23.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  694. Me.Label23.AutoSize = True
  695. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  696. Me.Label23.ForeColor = System.Drawing.Color.Red
  697. Me.Label23.Location = New System.Drawing.Point(1720, 992)
  698. Me.Label23.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  699. Me.Label23.Name = "Label23"
  700. Me.Label23.Size = New System.Drawing.Size(60, 17)
  701. Me.Label23.TabIndex = 287
  702. Me.Label23.Text = "平均尺数"
  703. '
  704. '開削_lb
  705. '
  706. Me.開削_lb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  707. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  708. Me.開削_lb.BackColor = System.Drawing.Color.LightCoral
  709. Me.開削_lb.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  710. Me.開削_lb.ForeColor = System.Drawing.SystemColors.ButtonHighlight
  711. Me.開削_lb.Location = New System.Drawing.Point(2, 44)
  712. Me.開削_lb.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0)
  713. Me.開削_lb.Name = "開削_lb"
  714. Me.開削_lb.Size = New System.Drawing.Size(514, 42)
  715. Me.開削_lb.TabIndex = 281
  716. Me.開削_lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
  717. '
  718. 'ProgressBar1
  719. '
  720. Me.ProgressBar1.Location = New System.Drawing.Point(726, 42)
  721. Me.ProgressBar1.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  722. Me.ProgressBar1.Name = "ProgressBar1"
  723. Me.ProgressBar1.Size = New System.Drawing.Size(171, 45)
  724. Me.ProgressBar1.TabIndex = 280
  725. '
  726. '品名_lb
  727. '
  728. Me.品名_lb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  729. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  730. Me.品名_lb.BackColor = System.Drawing.Color.LightCoral
  731. Me.品名_lb.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  732. Me.品名_lb.ForeColor = System.Drawing.SystemColors.ButtonHighlight
  733. Me.品名_lb.Location = New System.Drawing.Point(2, 1)
  734. Me.品名_lb.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0)
  735. Me.品名_lb.Name = "品名_lb"
  736. Me.品名_lb.Size = New System.Drawing.Size(514, 42)
  737. Me.品名_lb.TabIndex = 279
  738. Me.品名_lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
  739. '
  740. 'dgv2
  741. '
  742. Me.dgv2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  743. Me.dgv2.Location = New System.Drawing.Point(12, 5)
  744. Me.dgv2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  745. Me.dgv2.Name = "dgv2"
  746. Me.dgv2.RowHeadersWidth = 66
  747. Me.dgv2.RowTemplate.Height = 24
  748. Me.dgv2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  749. Me.dgv2.Size = New System.Drawing.Size(128, 105)
  750. Me.dgv2.TabIndex = 277
  751. Me.dgv2.Visible = False
  752. '
  753. '處方_dgv
  754. '
  755. Me.處方_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  756. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  757. Me.處方_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  758. Me.處方_dgv.BackgroundColor = System.Drawing.Color.White
  759. DataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  760. DataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control
  761. DataGridViewCellStyle1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  762. DataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText
  763. DataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
  764. DataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black
  765. DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  766. Me.處方_dgv.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle1
  767. Me.處方_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  768. DataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  769. DataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window
  770. DataGridViewCellStyle2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  771. DataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText
  772. DataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
  773. DataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black
  774. DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
  775. Me.處方_dgv.DefaultCellStyle = DataGridViewCellStyle2
  776. Me.處方_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
  777. Me.處方_dgv.Location = New System.Drawing.Point(900, 90)
  778. Me.處方_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  779. Me.處方_dgv.Name = "處方_dgv"
  780. Me.處方_dgv.RowHeadersWidth = 5
  781. Me.處方_dgv.RowTemplate.Height = 24
  782. Me.處方_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  783. Me.處方_dgv.Size = New System.Drawing.Size(771, 897)
  784. Me.處方_dgv.TabIndex = 278
  785. '
  786. 'ListBox2
  787. '
  788. Me.ListBox2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  789. Me.ListBox2.FormattingEnabled = True
  790. Me.ListBox2.ItemHeight = 17
  791. Me.ListBox2.Location = New System.Drawing.Point(342, 97)
  792. Me.ListBox2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  793. Me.ListBox2.Name = "ListBox2"
  794. Me.ListBox2.Size = New System.Drawing.Size(109, 140)
  795. Me.ListBox2.TabIndex = 261
  796. Me.ListBox2.Visible = False
  797. '
  798. 'TXT_PID
  799. '
  800. Me.TXT_PID.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  801. Me.TXT_PID.Location = New System.Drawing.Point(257, 59)
  802. Me.TXT_PID.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  803. Me.TXT_PID.Name = "TXT_PID"
  804. Me.TXT_PID.Size = New System.Drawing.Size(107, 25)
  805. Me.TXT_PID.TabIndex = 250
  806. Me.TXT_PID.Visible = False
  807. '
  808. '處方清單_dgv
  809. '
  810. Me.處方清單_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  811. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  812. Me.處方清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  813. Me.處方清單_dgv.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders
  814. Me.處方清單_dgv.BackgroundColor = System.Drawing.Color.White
  815. Me.處方清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  816. Me.處方清單_dgv.Location = New System.Drawing.Point(2, 90)
  817. Me.處方清單_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  818. Me.處方清單_dgv.Name = "處方清單_dgv"
  819. Me.處方清單_dgv.RowHeadersWidth = 5
  820. Me.處方清單_dgv.RowTemplate.DefaultCellStyle.Font = New System.Drawing.Font("微软雅黑", 7.8!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
  821. Me.處方清單_dgv.RowTemplate.Height = 24
  822. Me.處方清單_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  823. Me.處方清單_dgv.Size = New System.Drawing.Size(896, 950)
  824. Me.處方清單_dgv.TabIndex = 245
  825. '
  826. 'Button21
  827. '
  828. Me.Button21.Location = New System.Drawing.Point(572, 32)
  829. Me.Button21.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  830. Me.Button21.Name = "Button21"
  831. Me.Button21.Size = New System.Drawing.Size(94, 47)
  832. Me.Button21.TabIndex = 274
  833. Me.Button21.Text = "領料存檔"
  834. Me.Button21.UseVisualStyleBackColor = True
  835. Me.Button21.UseWaitCursor = True
  836. Me.Button21.Visible = False
  837. '
  838. 'dgv_chem_detail
  839. '
  840. Me.dgv_chem_detail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  841. Me.dgv_chem_detail.Location = New System.Drawing.Point(67, 198)
  842. Me.dgv_chem_detail.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  843. Me.dgv_chem_detail.Name = "dgv_chem_detail"
  844. Me.dgv_chem_detail.RowHeadersWidth = 66
  845. Me.dgv_chem_detail.RowTemplate.Height = 24
  846. Me.dgv_chem_detail.Size = New System.Drawing.Size(138, 161)
  847. Me.dgv_chem_detail.TabIndex = 273
  848. Me.dgv_chem_detail.Visible = False
  849. '
  850. 'dgv_cost
  851. '
  852. Me.dgv_cost.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  853. Me.dgv_cost.Location = New System.Drawing.Point(12, 198)
  854. Me.dgv_cost.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  855. Me.dgv_cost.Name = "dgv_cost"
  856. Me.dgv_cost.RowHeadersWidth = 66
  857. Me.dgv_cost.RowTemplate.Height = 24
  858. Me.dgv_cost.Size = New System.Drawing.Size(51, 161)
  859. Me.dgv_cost.TabIndex = 272
  860. Me.dgv_cost.Visible = False
  861. '
  862. 'Button15
  863. '
  864. Me.Button15.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  865. Me.Button15.Location = New System.Drawing.Point(12, 155)
  866. Me.Button15.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  867. Me.Button15.Name = "Button15"
  868. Me.Button15.Size = New System.Drawing.Size(71, 41)
  869. Me.Button15.TabIndex = 271
  870. Me.Button15.Text = "取消"
  871. Me.Button15.UseVisualStyleBackColor = True
  872. Me.Button15.Visible = False
  873. '
  874. 'Button14
  875. '
  876. Me.Button14.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  877. Me.Button14.Location = New System.Drawing.Point(12, 113)
  878. Me.Button14.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  879. Me.Button14.Name = "Button14"
  880. Me.Button14.Size = New System.Drawing.Size(71, 41)
  881. Me.Button14.TabIndex = 270
  882. Me.Button14.Text = "新增"
  883. Me.Button14.UseVisualStyleBackColor = True
  884. Me.Button14.Visible = False
  885. '
  886. 'Button13
  887. '
  888. Me.Button13.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  889. Me.Button13.Location = New System.Drawing.Point(237, 155)
  890. Me.Button13.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  891. Me.Button13.Name = "Button13"
  892. Me.Button13.Size = New System.Drawing.Size(145, 41)
  893. Me.Button13.TabIndex = 269
  894. Me.Button13.Text = "新增顏色"
  895. Me.Button13.UseVisualStyleBackColor = True
  896. Me.Button13.Visible = False
  897. '
  898. 'Button12
  899. '
  900. Me.Button12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.Button12.Location = New System.Drawing.Point(236, 114)
  902. Me.Button12.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  903. Me.Button12.Name = "Button12"
  904. Me.Button12.Size = New System.Drawing.Size(145, 41)
  905. Me.Button12.TabIndex = 268
  906. Me.Button12.Text = "新增產品"
  907. Me.Button12.UseVisualStyleBackColor = True
  908. Me.Button12.Visible = False
  909. '
  910. 'Button11
  911. '
  912. Me.Button11.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  913. Me.Button11.Location = New System.Drawing.Point(87, 113)
  914. Me.Button11.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  915. Me.Button11.Name = "Button11"
  916. Me.Button11.Size = New System.Drawing.Size(145, 41)
  917. Me.Button11.TabIndex = 267
  918. Me.Button11.Text = "新增客戶"
  919. Me.Button11.UseVisualStyleBackColor = True
  920. Me.Button11.Visible = False
  921. '
  922. 'TextBox4
  923. '
  924. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  925. Me.TextBox4.Location = New System.Drawing.Point(145, 5)
  926. Me.TextBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  927. Me.TextBox4.Name = "TextBox4"
  928. Me.TextBox4.Size = New System.Drawing.Size(143, 25)
  929. Me.TextBox4.TabIndex = 266
  930. Me.TextBox4.Visible = False
  931. '
  932. 'TextBox3
  933. '
  934. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  935. Me.TextBox3.Location = New System.Drawing.Point(144, 32)
  936. Me.TextBox3.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  937. Me.TextBox3.Name = "TextBox3"
  938. Me.TextBox3.Size = New System.Drawing.Size(143, 25)
  939. Me.TextBox3.TabIndex = 265
  940. Me.TextBox3.Visible = False
  941. '
  942. 'TextBox2
  943. '
  944. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  945. Me.TextBox2.Location = New System.Drawing.Point(209, 337)
  946. Me.TextBox2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  947. Me.TextBox2.Name = "TextBox2"
  948. Me.TextBox2.Size = New System.Drawing.Size(143, 25)
  949. Me.TextBox2.TabIndex = 264
  950. Me.TextBox2.Visible = False
  951. '
  952. 'ListBox4
  953. '
  954. Me.ListBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  955. Me.ListBox4.FormattingEnabled = True
  956. Me.ListBox4.ItemHeight = 17
  957. Me.ListBox4.Location = New System.Drawing.Point(44, 97)
  958. Me.ListBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  959. Me.ListBox4.Name = "ListBox4"
  960. Me.ListBox4.Size = New System.Drawing.Size(143, 140)
  961. Me.ListBox4.TabIndex = 263
  962. Me.ListBox4.Visible = False
  963. '
  964. 'ListBox3
  965. '
  966. Me.ListBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  967. Me.ListBox3.FormattingEnabled = True
  968. Me.ListBox3.ItemHeight = 17
  969. Me.ListBox3.Location = New System.Drawing.Point(195, 97)
  970. Me.ListBox3.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  971. Me.ListBox3.Name = "ListBox3"
  972. Me.ListBox3.Size = New System.Drawing.Size(143, 140)
  973. Me.ListBox3.TabIndex = 262
  974. Me.ListBox3.Visible = False
  975. '
  976. 'Button20
  977. '
  978. Me.Button20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  979. Me.Button20.Location = New System.Drawing.Point(385, 117)
  980. Me.Button20.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  981. Me.Button20.Name = "Button20"
  982. Me.Button20.Size = New System.Drawing.Size(86, 37)
  983. Me.Button20.TabIndex = 260
  984. Me.Button20.Text = "刪除處方"
  985. Me.Button20.UseVisualStyleBackColor = True
  986. Me.Button20.UseWaitCursor = True
  987. Me.Button20.Visible = False
  988. '
  989. 'Button18
  990. '
  991. Me.Button18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  992. Me.Button18.Location = New System.Drawing.Point(385, 80)
  993. Me.Button18.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  994. Me.Button18.Name = "Button18"
  995. Me.Button18.Size = New System.Drawing.Size(86, 37)
  996. Me.Button18.TabIndex = 258
  997. Me.Button18.Text = "修改處方名"
  998. Me.Button18.UseVisualStyleBackColor = True
  999. Me.Button18.UseWaitCursor = True
  1000. Me.Button18.Visible = False
  1001. '
  1002. 'Button17
  1003. '
  1004. Me.Button17.Location = New System.Drawing.Point(568, 81)
  1005. Me.Button17.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1006. Me.Button17.Name = "Button17"
  1007. Me.Button17.Size = New System.Drawing.Size(98, 37)
  1008. Me.Button17.TabIndex = 257
  1009. Me.Button17.Text = "確定另存"
  1010. Me.Button17.UseVisualStyleBackColor = True
  1011. Me.Button17.UseWaitCursor = True
  1012. Me.Button17.Visible = False
  1013. '
  1014. 'Button10
  1015. '
  1016. Me.Button10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1017. Me.Button10.Location = New System.Drawing.Point(477, 80)
  1018. Me.Button10.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1019. Me.Button10.Name = "Button10"
  1020. Me.Button10.Size = New System.Drawing.Size(86, 37)
  1021. Me.Button10.TabIndex = 256
  1022. Me.Button10.Text = "另存處方"
  1023. Me.Button10.UseVisualStyleBackColor = True
  1024. Me.Button10.UseWaitCursor = True
  1025. Me.Button10.Visible = False
  1026. '
  1027. 'DateTimePicker1
  1028. '
  1029. Me.DateTimePicker1.Location = New System.Drawing.Point(209, 363)
  1030. Me.DateTimePicker1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1031. Me.DateTimePicker1.Name = "DateTimePicker1"
  1032. Me.DateTimePicker1.Size = New System.Drawing.Size(102, 23)
  1033. Me.DateTimePicker1.TabIndex = 255
  1034. Me.DateTimePicker1.Visible = False
  1035. '
  1036. 'TextBox12
  1037. '
  1038. Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1039. Me.TextBox12.Location = New System.Drawing.Point(257, 86)
  1040. Me.TextBox12.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1041. Me.TextBox12.Name = "TextBox12"
  1042. Me.TextBox12.Size = New System.Drawing.Size(107, 25)
  1043. Me.TextBox12.TabIndex = 254
  1044. Me.TextBox12.Visible = False
  1045. '
  1046. 'cmdAddrcp
  1047. '
  1048. Me.cmdAddrcp.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1049. Me.cmdAddrcp.Location = New System.Drawing.Point(385, 42)
  1050. Me.cmdAddrcp.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1051. Me.cmdAddrcp.Name = "cmdAddrcp"
  1052. Me.cmdAddrcp.Size = New System.Drawing.Size(86, 37)
  1053. Me.cmdAddrcp.TabIndex = 243
  1054. Me.cmdAddrcp.Text = "確定新增"
  1055. Me.cmdAddrcp.UseVisualStyleBackColor = True
  1056. Me.cmdAddrcp.UseWaitCursor = True
  1057. Me.cmdAddrcp.Visible = False
  1058. '
  1059. 'Button8
  1060. '
  1061. Me.Button8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1062. Me.Button8.Location = New System.Drawing.Point(385, 5)
  1063. Me.Button8.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1064. Me.Button8.Name = "Button8"
  1065. Me.Button8.Size = New System.Drawing.Size(86, 37)
  1066. Me.Button8.TabIndex = 242
  1067. Me.Button8.Text = "新增工艺"
  1068. Me.Button8.UseVisualStyleBackColor = True
  1069. Me.Button8.UseWaitCursor = True
  1070. Me.Button8.Visible = False
  1071. '
  1072. 'cmdcanceladd
  1073. '
  1074. Me.cmdcanceladd.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1075. Me.cmdcanceladd.Location = New System.Drawing.Point(477, 42)
  1076. Me.cmdcanceladd.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1077. Me.cmdcanceladd.Name = "cmdcanceladd"
  1078. Me.cmdcanceladd.Size = New System.Drawing.Size(86, 37)
  1079. Me.cmdcanceladd.TabIndex = 244
  1080. Me.cmdcanceladd.Text = "取消新增(&C)"
  1081. Me.cmdcanceladd.UseVisualStyleBackColor = True
  1082. Me.cmdcanceladd.UseWaitCursor = True
  1083. Me.cmdcanceladd.Visible = False
  1084. '
  1085. 'Label2
  1086. '
  1087. Me.Label2.AutoSize = True
  1088. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1089. Me.Label2.Location = New System.Drawing.Point(572, 188)
  1090. Me.Label2.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1091. Me.Label2.Name = "Label2"
  1092. Me.Label2.Size = New System.Drawing.Size(55, 16)
  1093. Me.Label2.TabIndex = 72
  1094. Me.Label2.Text = "修改人員"
  1095. Me.Label2.UseWaitCursor = True
  1096. '
  1097. 'Label14
  1098. '
  1099. Me.Label14.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1100. Me.Label14.AutoSize = True
  1101. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1102. Me.Label14.Location = New System.Drawing.Point(1690, 3)
  1103. Me.Label14.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1104. Me.Label14.Name = "Label14"
  1105. Me.Label14.Size = New System.Drawing.Size(40, 16)
  1106. Me.Label14.TabIndex = 48
  1107. Me.Label14.Text = "片数 : "
  1108. Me.Label14.UseWaitCursor = True
  1109. '
  1110. 'Label15
  1111. '
  1112. Me.Label15.AutoSize = True
  1113. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1114. Me.Label15.Location = New System.Drawing.Point(572, 160)
  1115. Me.Label15.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1116. Me.Label15.Name = "Label15"
  1117. Me.Label15.Size = New System.Drawing.Size(55, 16)
  1118. Me.Label15.TabIndex = 47
  1119. Me.Label15.Text = "最後修改"
  1120. Me.Label15.UseWaitCursor = True
  1121. '
  1122. 'Label16
  1123. '
  1124. Me.Label16.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1125. Me.Label16.AutoSize = True
  1126. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1127. Me.Label16.Location = New System.Drawing.Point(1538, 3)
  1128. Me.Label16.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1129. Me.Label16.Name = "Label16"
  1130. Me.Label16.Size = New System.Drawing.Size(64, 16)
  1131. Me.Label16.TabIndex = 46
  1132. Me.Label16.Text = "建立日期 : "
  1133. Me.Label16.UseWaitCursor = True
  1134. '
  1135. '成本_bt
  1136. '
  1137. Me.成本_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1138. Me.成本_bt.Location = New System.Drawing.Point(491, 382)
  1139. Me.成本_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1140. Me.成本_bt.Name = "成本_bt"
  1141. Me.成本_bt.Size = New System.Drawing.Size(120, 47)
  1142. Me.成本_bt.TabIndex = 252
  1143. Me.成本_bt.Text = "成本"
  1144. Me.成本_bt.UseVisualStyleBackColor = True
  1145. Me.成本_bt.UseWaitCursor = True
  1146. Me.成本_bt.Visible = False
  1147. '
  1148. 'TextBox5
  1149. '
  1150. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1151. Me.TextBox5.Location = New System.Drawing.Point(145, 86)
  1152. Me.TextBox5.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1153. Me.TextBox5.Name = "TextBox5"
  1154. Me.TextBox5.Size = New System.Drawing.Size(107, 25)
  1155. Me.TextBox5.TabIndex = 251
  1156. Me.TextBox5.Visible = False
  1157. '
  1158. 'cmdCancelEdit
  1159. '
  1160. Me.cmdCancelEdit.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1161. Me.cmdCancelEdit.Location = New System.Drawing.Point(87, 157)
  1162. Me.cmdCancelEdit.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1163. Me.cmdCancelEdit.Name = "cmdCancelEdit"
  1164. Me.cmdCancelEdit.Size = New System.Drawing.Size(71, 37)
  1165. Me.cmdCancelEdit.TabIndex = 249
  1166. Me.cmdCancelEdit.Text = "取消修改"
  1167. Me.cmdCancelEdit.UseVisualStyleBackColor = True
  1168. Me.cmdCancelEdit.UseWaitCursor = True
  1169. Me.cmdCancelEdit.Visible = False
  1170. '
  1171. 'Timer1
  1172. '
  1173. Me.Timer1.Interval = 1000
  1174. '
  1175. 'TextBox10
  1176. '
  1177. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1178. Me.TextBox10.Location = New System.Drawing.Point(145, 59)
  1179. Me.TextBox10.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1180. Me.TextBox10.Name = "TextBox10"
  1181. Me.TextBox10.Size = New System.Drawing.Size(107, 25)
  1182. Me.TextBox10.TabIndex = 253
  1183. Me.TextBox10.Visible = False
  1184. '
  1185. 'Button24
  1186. '
  1187. Me.Button24.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1188. Me.Button24.Location = New System.Drawing.Point(388, 155)
  1189. Me.Button24.Margin = New System.Windows.Forms.Padding(4)
  1190. Me.Button24.Name = "Button24"
  1191. Me.Button24.Size = New System.Drawing.Size(121, 39)
  1192. Me.Button24.TabIndex = 306
  1193. Me.Button24.Text = "Button24"
  1194. Me.Button24.UseVisualStyleBackColor = True
  1195. Me.Button24.Visible = False
  1196. '
  1197. 'Panel1
  1198. '
  1199. Me.Panel1.Controls.Add(Me.dgv2)
  1200. Me.Panel1.Controls.Add(Me.Label2)
  1201. Me.Panel1.Controls.Add(Me.TextBox4)
  1202. Me.Panel1.Controls.Add(Me.TextBox3)
  1203. Me.Panel1.Controls.Add(Me.Button24)
  1204. Me.Panel1.Controls.Add(Me.TextBox10)
  1205. Me.Panel1.Controls.Add(Me.TextBox5)
  1206. Me.Panel1.Controls.Add(Me.Label15)
  1207. Me.Panel1.Controls.Add(Me.TextBox12)
  1208. Me.Panel1.Controls.Add(Me.TXT_PID)
  1209. Me.Panel1.Controls.Add(Me.GroupBox4)
  1210. Me.Panel1.Controls.Add(Me.Button14)
  1211. Me.Panel1.Controls.Add(Me.Button15)
  1212. Me.Panel1.Controls.Add(Me.cmdCancelEdit)
  1213. Me.Panel1.Controls.Add(Me.Button11)
  1214. Me.Panel1.Controls.Add(Me.Button12)
  1215. Me.Panel1.Controls.Add(Me.GroupBox1)
  1216. Me.Panel1.Controls.Add(Me.Button13)
  1217. Me.Panel1.Controls.Add(Me.Button8)
  1218. Me.Panel1.Controls.Add(Me.cmdcanceladd)
  1219. Me.Panel1.Controls.Add(Me.cmdAddrcp)
  1220. Me.Panel1.Controls.Add(Me.Button10)
  1221. Me.Panel1.Controls.Add(Me.Button17)
  1222. Me.Panel1.Controls.Add(Me.Button21)
  1223. Me.Panel1.Controls.Add(Me.Button18)
  1224. Me.Panel1.Controls.Add(Me.TextBox2)
  1225. Me.Panel1.Controls.Add(Me.Button20)
  1226. Me.Panel1.Controls.Add(Me.PictureBox1)
  1227. Me.Panel1.Controls.Add(Me.成本_bt)
  1228. Me.Panel1.Controls.Add(Me.dgv_chem_detail)
  1229. Me.Panel1.Controls.Add(Me.DateTimePicker1)
  1230. Me.Panel1.Controls.Add(Me.dgv_cost)
  1231. Me.Panel1.Location = New System.Drawing.Point(32, 343)
  1232. Me.Panel1.Margin = New System.Windows.Forms.Padding(4)
  1233. Me.Panel1.Name = "Panel1"
  1234. Me.Panel1.Size = New System.Drawing.Size(692, 491)
  1235. Me.Panel1.TabIndex = 307
  1236. '
  1237. 'PictureBox1
  1238. '
  1239. Me.PictureBox1.BackgroundImage = Global.WindowsApp1.My.Resources.Resources._9
  1240. Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1241. Me.PictureBox1.Location = New System.Drawing.Point(631, 128)
  1242. Me.PictureBox1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1243. Me.PictureBox1.Name = "PictureBox1"
  1244. Me.PictureBox1.Size = New System.Drawing.Size(55, 55)
  1245. Me.PictureBox1.TabIndex = 275
  1246. Me.PictureBox1.TabStop = False
  1247. Me.PictureBox1.Visible = False
  1248. '
  1249. 'SplitContainer1
  1250. '
  1251. Me.SplitContainer1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1252. Or System.Windows.Forms.AnchorStyles.Left) _
  1253. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1254. Me.SplitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1255. Me.SplitContainer1.Location = New System.Drawing.Point(1671, 90)
  1256. Me.SplitContainer1.Name = "SplitContainer1"
  1257. Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
  1258. '
  1259. 'SplitContainer1.Panel1
  1260. '
  1261. Me.SplitContainer1.Panel1.Controls.Add(Me.合計_dgv)
  1262. '
  1263. 'SplitContainer1.Panel2
  1264. '
  1265. Me.SplitContainer1.Panel2.Controls.Add(Me.每尺合計_dgv)
  1266. Me.SplitContainer1.Size = New System.Drawing.Size(232, 897)
  1267. Me.SplitContainer1.SplitterDistance = 452
  1268. Me.SplitContainer1.TabIndex = 308
  1269. '
  1270. 'Panel2
  1271. '
  1272. Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1273. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1274. Me.Panel2.Controls.Add(Me.品名_lb)
  1275. Me.Panel2.Controls.Add(Me.開削_lb)
  1276. Me.Panel2.Location = New System.Drawing.Point(902, 2)
  1277. Me.Panel2.Name = "Panel2"
  1278. Me.Panel2.Size = New System.Drawing.Size(518, 87)
  1279. Me.Panel2.TabIndex = 309
  1280. '
  1281. 'Panel3
  1282. '
  1283. Me.Panel3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1284. Me.Panel3.Controls.Add(Me.系统分类_ch)
  1285. Me.Panel3.Controls.Add(Me.进货单价_ch)
  1286. Me.Panel3.Controls.Add(Me.系统代码_ch)
  1287. Me.Panel3.Controls.Add(Me.系统品名_ch)
  1288. Me.Panel3.Controls.Add(Me.zdhc_code_ch)
  1289. Me.Panel3.Controls.Add(Me.类别_ch)
  1290. Me.Panel3.Controls.Add(Me.化工分类_ch)
  1291. Me.Panel3.Location = New System.Drawing.Point(1023, 990)
  1292. Me.Panel3.Name = "Panel3"
  1293. Me.Panel3.Size = New System.Drawing.Size(376, 48)
  1294. Me.Panel3.TabIndex = 310
  1295. '
  1296. '系统分类_ch
  1297. '
  1298. Me.系统分类_ch.AutoSize = True
  1299. Me.系统分类_ch.Location = New System.Drawing.Point(191, 25)
  1300. Me.系统分类_ch.Name = "系统分类_ch"
  1301. Me.系统分类_ch.Size = New System.Drawing.Size(74, 20)
  1302. Me.系统分类_ch.TabIndex = 6
  1303. Me.系统分类_ch.Text = "系统分类"
  1304. Me.系统分类_ch.UseVisualStyleBackColor = True
  1305. '
  1306. '进货单价_ch
  1307. '
  1308. Me.进货单价_ch.AutoSize = True
  1309. Me.进货单价_ch.Location = New System.Drawing.Point(97, 25)
  1310. Me.进货单价_ch.Name = "进货单价_ch"
  1311. Me.进货单价_ch.Size = New System.Drawing.Size(74, 20)
  1312. Me.进货单价_ch.TabIndex = 5
  1313. Me.进货单价_ch.Text = "进货单价"
  1314. Me.进货单价_ch.UseVisualStyleBackColor = True
  1315. '
  1316. '系统代码_ch
  1317. '
  1318. Me.系统代码_ch.AutoSize = True
  1319. Me.系统代码_ch.Location = New System.Drawing.Point(3, 25)
  1320. Me.系统代码_ch.Name = "系统代码_ch"
  1321. Me.系统代码_ch.Size = New System.Drawing.Size(74, 20)
  1322. Me.系统代码_ch.TabIndex = 4
  1323. Me.系统代码_ch.Text = "系统代码"
  1324. Me.系统代码_ch.UseVisualStyleBackColor = True
  1325. '
  1326. '系统品名_ch
  1327. '
  1328. Me.系统品名_ch.AutoSize = True
  1329. Me.系统品名_ch.Location = New System.Drawing.Point(300, 4)
  1330. Me.系统品名_ch.Name = "系统品名_ch"
  1331. Me.系统品名_ch.Size = New System.Drawing.Size(74, 20)
  1332. Me.系统品名_ch.TabIndex = 3
  1333. Me.系统品名_ch.Text = "系统品名"
  1334. Me.系统品名_ch.UseVisualStyleBackColor = True
  1335. '
  1336. 'zdhc_code_ch
  1337. '
  1338. Me.zdhc_code_ch.AutoSize = True
  1339. Me.zdhc_code_ch.Location = New System.Drawing.Point(191, 4)
  1340. Me.zdhc_code_ch.Name = "zdhc_code_ch"
  1341. Me.zdhc_code_ch.Size = New System.Drawing.Size(93, 20)
  1342. Me.zdhc_code_ch.TabIndex = 2
  1343. Me.zdhc_code_ch.Text = "ZDHC Code"
  1344. Me.zdhc_code_ch.UseVisualStyleBackColor = True
  1345. '
  1346. '类别_ch
  1347. '
  1348. Me.类别_ch.AutoSize = True
  1349. Me.类别_ch.Location = New System.Drawing.Point(97, 4)
  1350. Me.类别_ch.Name = "类别_ch"
  1351. Me.类别_ch.Size = New System.Drawing.Size(50, 20)
  1352. Me.类别_ch.TabIndex = 1
  1353. Me.类别_ch.Text = "类别"
  1354. Me.类别_ch.UseVisualStyleBackColor = True
  1355. '
  1356. '化工分类_ch
  1357. '
  1358. Me.化工分类_ch.AutoSize = True
  1359. Me.化工分类_ch.Location = New System.Drawing.Point(3, 4)
  1360. Me.化工分类_ch.Name = "化工分类_ch"
  1361. Me.化工分类_ch.Size = New System.Drawing.Size(74, 20)
  1362. Me.化工分类_ch.TabIndex = 0
  1363. Me.化工分类_ch.Text = "化工分类"
  1364. Me.化工分类_ch.UseVisualStyleBackColor = True
  1365. '
  1366. '存檔_bt
  1367. '
  1368. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1369. Me.存檔_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER
  1370. Me.存檔_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1371. Me.存檔_bt.Location = New System.Drawing.Point(123, 41)
  1372. Me.存檔_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1373. Me.存檔_bt.Name = "存檔_bt"
  1374. Me.存檔_bt.Size = New System.Drawing.Size(120, 47)
  1375. Me.存檔_bt.TabIndex = 290
  1376. Me.存檔_bt.Text = "修改(&E) "
  1377. Me.存檔_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1378. Me.存檔_bt.UseVisualStyleBackColor = True
  1379. '
  1380. '刪除工藝_bt
  1381. '
  1382. Me.刪除工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1383. Me.刪除工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.GarbageEmpty
  1384. Me.刪除工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1385. Me.刪除工藝_bt.Location = New System.Drawing.Point(364, 41)
  1386. Me.刪除工藝_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1387. Me.刪除工藝_bt.Name = "刪除工藝_bt"
  1388. Me.刪除工藝_bt.Size = New System.Drawing.Size(120, 47)
  1389. Me.刪除工藝_bt.TabIndex = 289
  1390. Me.刪除工藝_bt.Text = "刪除工艺(&S)"
  1391. Me.刪除工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1392. Me.刪除工藝_bt.UseVisualStyleBackColor = True
  1393. '
  1394. '另存工藝_bt
  1395. '
  1396. Me.另存工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1397. Me.另存工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER2
  1398. Me.另存工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1399. Me.另存工藝_bt.Location = New System.Drawing.Point(243, 41)
  1400. Me.另存工藝_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  1401. Me.另存工藝_bt.Name = "另存工藝_bt"
  1402. Me.另存工藝_bt.Size = New System.Drawing.Size(120, 47)
  1403. Me.另存工藝_bt.TabIndex = 288
  1404. Me.另存工藝_bt.Text = "另存新档(&A)"
  1405. Me.另存工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1406. Me.另存工藝_bt.UseVisualStyleBackColor = True
  1407. '
  1408. '打印標籤_bt
  1409. '
  1410. Me.打印標籤_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1411. Me.打印標籤_bt.Image = Global.WindowsApp1.My.Resources.Resources.print
  1412. Me.打印標籤_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1413. Me.打印標籤_bt.Location = New System.Drawing.Point(484, 41)
  1414. Me.打印標籤_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  1415. Me.打印標籤_bt.Name = "打印標籤_bt"
  1416. Me.打印標籤_bt.Size = New System.Drawing.Size(120, 47)
  1417. Me.打印標籤_bt.TabIndex = 286
  1418. Me.打印標籤_bt.Text = "打印标签(&X)"
  1419. Me.打印標籤_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1420. Me.打印標籤_bt.UseVisualStyleBackColor = True
  1421. '
  1422. '打印工藝_bt
  1423. '
  1424. Me.打印工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1425. Me.打印工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.print
  1426. Me.打印工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1427. Me.打印工藝_bt.Location = New System.Drawing.Point(604, 41)
  1428. Me.打印工藝_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1429. Me.打印工藝_bt.Name = "打印工藝_bt"
  1430. Me.打印工藝_bt.Size = New System.Drawing.Size(120, 47)
  1431. Me.打印工藝_bt.TabIndex = 284
  1432. Me.打印工藝_bt.Text = "打印工艺(&C)"
  1433. Me.打印工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1434. Me.打印工藝_bt.UseVisualStyleBackColor = True
  1435. '
  1436. '查詢_bt
  1437. '
  1438. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1439. Me.查詢_bt.Image = Global.WindowsApp1.My.Resources.Resources.Search
  1440. Me.查詢_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1441. Me.查詢_bt.Location = New System.Drawing.Point(3, 41)
  1442. Me.查詢_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1443. Me.查詢_bt.Name = "查詢_bt"
  1444. Me.查詢_bt.Size = New System.Drawing.Size(120, 47)
  1445. Me.查詢_bt.TabIndex = 282
  1446. Me.查詢_bt.Text = "查詢(&Q) "
  1447. Me.查詢_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1448. Me.查詢_bt.UseVisualStyleBackColor = True
  1449. '
  1450. '領料_bt
  1451. '
  1452. Me.領料_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1453. Me.領料_bt.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1454. Me.領料_bt.Image = Global.WindowsApp1.My.Resources.Resources.box_64x64
  1455. Me.領料_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1456. Me.領料_bt.Location = New System.Drawing.Point(1402, 990)
  1457. Me.領料_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  1458. Me.領料_bt.Name = "領料_bt"
  1459. Me.領料_bt.Size = New System.Drawing.Size(120, 47)
  1460. Me.領料_bt.TabIndex = 283
  1461. Me.領料_bt.Text = "领料 "
  1462. Me.領料_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1463. Me.領料_bt.UseVisualStyleBackColor = True
  1464. '
  1465. '處方縮放_bt
  1466. '
  1467. Me.處方縮放_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1468. Me.處方縮放_bt.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  1469. Me.處方縮放_bt.Image = Global.WindowsApp1.My.Resources.Resources.ZOOM01
  1470. Me.處方縮放_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1471. Me.處方縮放_bt.Location = New System.Drawing.Point(900, 990)
  1472. Me.處方縮放_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
  1473. Me.處方縮放_bt.Name = "處方縮放_bt"
  1474. Me.處方縮放_bt.Size = New System.Drawing.Size(120, 47)
  1475. Me.處方縮放_bt.TabIndex = 276
  1476. Me.處方縮放_bt.Text = "放大 "
  1477. Me.處方縮放_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1478. Me.處方縮放_bt.UseVisualStyleBackColor = True
  1479. '
  1480. '計算_bt
  1481. '
  1482. Me.計算_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1483. Me.計算_bt.Font = New System.Drawing.Font("宋体", 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
  1484. Me.計算_bt.Image = Global.WindowsApp1.My.Resources.Resources.calc1
  1485. Me.計算_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1486. Me.計算_bt.Location = New System.Drawing.Point(1781, 991)
  1487. Me.計算_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1488. Me.計算_bt.Name = "計算_bt"
  1489. Me.計算_bt.Size = New System.Drawing.Size(120, 47)
  1490. Me.計算_bt.TabIndex = 259
  1491. Me.計算_bt.Text = "计算 "
  1492. Me.計算_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1493. Me.計算_bt.UseVisualStyleBackColor = True
  1494. Me.計算_bt.UseWaitCursor = True
  1495. '
  1496. '刪除一行_bt
  1497. '
  1498. Me.刪除一行_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1499. Me.刪除一行_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1500. Me.刪除一行_bt.Image = Global.WindowsApp1.My.Resources.Resources.GarbageEmpty
  1501. Me.刪除一行_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1502. Me.刪除一行_bt.Location = New System.Drawing.Point(1781, 41)
  1503. Me.刪除一行_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1504. Me.刪除一行_bt.Name = "刪除一行_bt"
  1505. Me.刪除一行_bt.Size = New System.Drawing.Size(120, 47)
  1506. Me.刪除一行_bt.TabIndex = 241
  1507. Me.刪除一行_bt.Text = "刪除(&D) "
  1508. Me.刪除一行_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1509. Me.刪除一行_bt.UseVisualStyleBackColor = True
  1510. '
  1511. '修改指定_bt
  1512. '
  1513. Me.修改指定_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1514. Me.修改指定_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1515. Me.修改指定_bt.Image = Global.WindowsApp1.My.Resources.Resources.pen
  1516. Me.修改指定_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1517. Me.修改指定_bt.Location = New System.Drawing.Point(1662, 41)
  1518. Me.修改指定_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1519. Me.修改指定_bt.Name = "修改指定_bt"
  1520. Me.修改指定_bt.Size = New System.Drawing.Size(120, 47)
  1521. Me.修改指定_bt.TabIndex = 240
  1522. Me.修改指定_bt.Text = "修改(&E) "
  1523. Me.修改指定_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1524. Me.修改指定_bt.UseVisualStyleBackColor = True
  1525. '
  1526. '插入一行_bt
  1527. '
  1528. Me.插入一行_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1529. Me.插入一行_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1530. Me.插入一行_bt.Image = Global.WindowsApp1.My.Resources.Resources.add_2
  1531. Me.插入一行_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1532. Me.插入一行_bt.Location = New System.Drawing.Point(1542, 41)
  1533. Me.插入一行_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1534. Me.插入一行_bt.Name = "插入一行_bt"
  1535. Me.插入一行_bt.Size = New System.Drawing.Size(120, 47)
  1536. Me.插入一行_bt.TabIndex = 239
  1537. Me.插入一行_bt.Text = "插入(&Z) "
  1538. Me.插入一行_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1539. Me.插入一行_bt.UseVisualStyleBackColor = True
  1540. '
  1541. '修改存檔_bt
  1542. '
  1543. Me.修改存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1544. Me.修改存檔_bt.Cursor = System.Windows.Forms.Cursors.WaitCursor
  1545. Me.修改存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1546. Me.修改存檔_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER
  1547. Me.修改存檔_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
  1548. Me.修改存檔_bt.Location = New System.Drawing.Point(1422, 41)
  1549. Me.修改存檔_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
  1550. Me.修改存檔_bt.Name = "修改存檔_bt"
  1551. Me.修改存檔_bt.Size = New System.Drawing.Size(120, 47)
  1552. Me.修改存檔_bt.TabIndex = 248
  1553. Me.修改存檔_bt.Text = "儲存修改(&S)"
  1554. Me.修改存檔_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1555. Me.修改存檔_bt.UseVisualStyleBackColor = True
  1556. Me.修改存檔_bt.UseWaitCursor = True
  1557. Me.修改存檔_bt.Visible = False
  1558. '
  1559. 'Label22
  1560. '
  1561. Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1562. Me.Label22.AutoSize = True
  1563. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1564. Me.Label22.Location = New System.Drawing.Point(1787, 3)
  1565. Me.Label22.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1566. Me.Label22.Name = "Label22"
  1567. Me.Label22.Size = New System.Drawing.Size(40, 16)
  1568. Me.Label22.TabIndex = 312
  1569. Me.Label22.Text = "选级 : "
  1570. Me.Label22.UseWaitCursor = True
  1571. '
  1572. 'Label3
  1573. '
  1574. Me.Label3.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1575. Me.Label3.AutoSize = True
  1576. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1577. Me.Label3.Location = New System.Drawing.Point(1538, 24)
  1578. Me.Label3.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1579. Me.Label3.Name = "Label3"
  1580. Me.Label3.Size = New System.Drawing.Size(64, 16)
  1581. Me.Label3.TabIndex = 314
  1582. Me.Label3.Text = "流程卡号 : "
  1583. Me.Label3.UseWaitCursor = True
  1584. '
  1585. 'Label11
  1586. '
  1587. Me.Label11.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1588. Me.Label11.AutoSize = True
  1589. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1590. Me.Label11.Location = New System.Drawing.Point(1690, 24)
  1591. Me.Label11.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1592. Me.Label11.Name = "Label11"
  1593. Me.Label11.Size = New System.Drawing.Size(40, 16)
  1594. Me.Label11.TabIndex = 316
  1595. Me.Label11.Text = "重量 : "
  1596. Me.Label11.UseWaitCursor = True
  1597. '
  1598. 'Label24
  1599. '
  1600. Me.Label24.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1601. Me.Label24.AutoSize = True
  1602. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1603. Me.Label24.Location = New System.Drawing.Point(1787, 24)
  1604. Me.Label24.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1605. Me.Label24.Name = "Label24"
  1606. Me.Label24.Size = New System.Drawing.Size(40, 16)
  1607. Me.Label24.TabIndex = 317
  1608. Me.Label24.Text = "平均 : "
  1609. Me.Label24.UseWaitCursor = True
  1610. '
  1611. '建立日期_lb
  1612. '
  1613. Me.建立日期_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1614. Me.建立日期_lb.AutoSize = True
  1615. Me.建立日期_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1616. Me.建立日期_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1617. Me.建立日期_lb.Location = New System.Drawing.Point(1597, 3)
  1618. Me.建立日期_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1619. Me.建立日期_lb.Name = "建立日期_lb"
  1620. Me.建立日期_lb.Size = New System.Drawing.Size(39, 16)
  1621. Me.建立日期_lb.TabIndex = 318
  1622. Me.建立日期_lb.Text = "XXXX"
  1623. Me.建立日期_lb.UseWaitCursor = True
  1624. '
  1625. '流程卡号_lb
  1626. '
  1627. Me.流程卡号_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1628. Me.流程卡号_lb.AutoSize = True
  1629. Me.流程卡号_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1630. Me.流程卡号_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1631. Me.流程卡号_lb.Location = New System.Drawing.Point(1597, 24)
  1632. Me.流程卡号_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1633. Me.流程卡号_lb.Name = "流程卡号_lb"
  1634. Me.流程卡号_lb.Size = New System.Drawing.Size(39, 16)
  1635. Me.流程卡号_lb.TabIndex = 319
  1636. Me.流程卡号_lb.Text = "XXXX"
  1637. Me.流程卡号_lb.UseWaitCursor = True
  1638. '
  1639. '片数_lb
  1640. '
  1641. Me.片数_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1642. Me.片数_lb.AutoSize = True
  1643. Me.片数_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1644. Me.片数_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1645. Me.片数_lb.Location = New System.Drawing.Point(1725, 4)
  1646. Me.片数_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1647. Me.片数_lb.Name = "片数_lb"
  1648. Me.片数_lb.Size = New System.Drawing.Size(39, 16)
  1649. Me.片数_lb.TabIndex = 320
  1650. Me.片数_lb.Text = "XXXX"
  1651. Me.片数_lb.UseWaitCursor = True
  1652. '
  1653. '重量_lb
  1654. '
  1655. Me.重量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1656. Me.重量_lb.AutoSize = True
  1657. Me.重量_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1658. Me.重量_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1659. Me.重量_lb.Location = New System.Drawing.Point(1725, 25)
  1660. Me.重量_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1661. Me.重量_lb.Name = "重量_lb"
  1662. Me.重量_lb.Size = New System.Drawing.Size(39, 16)
  1663. Me.重量_lb.TabIndex = 321
  1664. Me.重量_lb.Text = "XXXX"
  1665. Me.重量_lb.UseWaitCursor = True
  1666. '
  1667. '选级_lb
  1668. '
  1669. Me.选级_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1670. Me.选级_lb.AutoSize = True
  1671. Me.选级_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1672. Me.选级_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1673. Me.选级_lb.Location = New System.Drawing.Point(1822, 3)
  1674. Me.选级_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1675. Me.选级_lb.Name = "选级_lb"
  1676. Me.选级_lb.Size = New System.Drawing.Size(39, 16)
  1677. Me.选级_lb.TabIndex = 322
  1678. Me.选级_lb.Text = "XXXX"
  1679. Me.选级_lb.UseWaitCursor = True
  1680. '
  1681. '平均_lb
  1682. '
  1683. Me.平均_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1684. Me.平均_lb.AutoSize = True
  1685. Me.平均_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1686. Me.平均_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1687. Me.平均_lb.Location = New System.Drawing.Point(1822, 24)
  1688. Me.平均_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1689. Me.平均_lb.Name = "平均_lb"
  1690. Me.平均_lb.Size = New System.Drawing.Size(39, 16)
  1691. Me.平均_lb.TabIndex = 323
  1692. Me.平均_lb.Text = "XXXX"
  1693. Me.平均_lb.UseWaitCursor = True
  1694. '
  1695. 'Frm_00_Retan_rcp
  1696. '
  1697. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  1698. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  1699. Me.AutoScroll = True
  1700. Me.ClientSize = New System.Drawing.Size(1904, 1041)
  1701. Me.Controls.Add(Me.平均_lb)
  1702. Me.Controls.Add(Me.选级_lb)
  1703. Me.Controls.Add(Me.重量_lb)
  1704. Me.Controls.Add(Me.片数_lb)
  1705. Me.Controls.Add(Me.流程卡号_lb)
  1706. Me.Controls.Add(Me.建立日期_lb)
  1707. Me.Controls.Add(Me.Label24)
  1708. Me.Controls.Add(Me.處方_dgv)
  1709. Me.Controls.Add(Me.Label11)
  1710. Me.Controls.Add(Me.Label3)
  1711. Me.Controls.Add(Me.Label22)
  1712. Me.Controls.Add(Me.Panel3)
  1713. Me.Controls.Add(Me.Panel2)
  1714. Me.Controls.Add(Me.SplitContainer1)
  1715. Me.Controls.Add(Me.ProgressBar1)
  1716. Me.Controls.Add(Me.Panel1)
  1717. Me.Controls.Add(Me.存檔_bt)
  1718. Me.Controls.Add(Me.Label14)
  1719. Me.Controls.Add(Me.GroupBox5)
  1720. Me.Controls.Add(Me.刪除工藝_bt)
  1721. Me.Controls.Add(Me.平均尺数_tb)
  1722. Me.Controls.Add(Me.Label16)
  1723. Me.Controls.Add(Me.模式通知_lb)
  1724. Me.Controls.Add(Me.另存工藝_bt)
  1725. Me.Controls.Add(Me.打印標籤_bt)
  1726. Me.Controls.Add(Me.打印工藝_bt)
  1727. Me.Controls.Add(Me.查詢_bt)
  1728. Me.Controls.Add(Me.Label23)
  1729. Me.Controls.Add(Me.領料_bt)
  1730. Me.Controls.Add(Me.處方縮放_bt)
  1731. Me.Controls.Add(Me.ListBox2)
  1732. Me.Controls.Add(Me.ListBox4)
  1733. Me.Controls.Add(Me.ListBox3)
  1734. Me.Controls.Add(Me.計算_bt)
  1735. Me.Controls.Add(Me.刪除一行_bt)
  1736. Me.Controls.Add(Me.修改指定_bt)
  1737. Me.Controls.Add(Me.插入一行_bt)
  1738. Me.Controls.Add(Me.修改存檔_bt)
  1739. Me.Controls.Add(Me.處方清單_dgv)
  1740. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1741. Me.Margin = New System.Windows.Forms.Padding(4)
  1742. Me.Name = "Frm_00_Retan_rcp"
  1743. Me.Text = "染色工艺"
  1744. Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
  1745. Me.GroupBox5.ResumeLayout(False)
  1746. Me.GroupBox5.PerformLayout()
  1747. CType(Me.每尺合計_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1748. CType(Me.合計_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1749. Me.GroupBox1.ResumeLayout(False)
  1750. Me.GroupBox1.PerformLayout()
  1751. Me.GroupBox4.ResumeLayout(False)
  1752. CType(Me.dgv_record, System.ComponentModel.ISupportInitialize).EndInit()
  1753. CType(Me.dgv2, System.ComponentModel.ISupportInitialize).EndInit()
  1754. CType(Me.處方_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1755. CType(Me.處方清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1756. CType(Me.dgv_chem_detail, System.ComponentModel.ISupportInitialize).EndInit()
  1757. CType(Me.dgv_cost, System.ComponentModel.ISupportInitialize).EndInit()
  1758. Me.Panel1.ResumeLayout(False)
  1759. Me.Panel1.PerformLayout()
  1760. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  1761. Me.SplitContainer1.Panel1.ResumeLayout(False)
  1762. Me.SplitContainer1.Panel2.ResumeLayout(False)
  1763. CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit()
  1764. Me.SplitContainer1.ResumeLayout(False)
  1765. Me.Panel2.ResumeLayout(False)
  1766. Me.Panel3.ResumeLayout(False)
  1767. Me.Panel3.PerformLayout()
  1768. Me.ResumeLayout(False)
  1769. Me.PerformLayout()
  1770. End Sub
  1771. Friend WithEvents Label5 As Label
  1772. Friend WithEvents Label6 As Label
  1773. Friend WithEvents Label7 As Label
  1774. Friend WithEvents Label8 As Label
  1775. Friend WithEvents Label9 As Label
  1776. Friend WithEvents Label10 As Label
  1777. Friend WithEvents Label19 As Label
  1778. Friend WithEvents Label28 As Label
  1779. Friend WithEvents Label29 As Label
  1780. Friend WithEvents 烤膠_bt As TextBox
  1781. Friend WithEvents 助劑_tb As TextBox
  1782. Friend WithEvents 染料_tb As TextBox
  1783. Friend WithEvents 單寧_tb As TextBox
  1784. Friend WithEvents 复鞣剂_tb As TextBox
  1785. Friend WithEvents txtsize As TextBox
  1786. Friend WithEvents Label12 As Label
  1787. Friend WithEvents 丙烯酸_tb As TextBox
  1788. Friend WithEvents 油脂_tb As TextBox
  1789. Friend WithEvents txtwb_weight As TextBox
  1790. Friend WithEvents Label4 As Label
  1791. Friend WithEvents 存檔_bt As Button
  1792. Friend WithEvents GroupBox5 As GroupBox
  1793. Friend WithEvents RadioButtonDCS As RadioButton
  1794. Friend WithEvents RadioButtonJD As RadioButton
  1795. Friend WithEvents RadioButtonCW As RadioButton
  1796. Friend WithEvents RadioButtonSM As RadioButton
  1797. Friend WithEvents RadioButtonXJM As RadioButton
  1798. Friend WithEvents RadioButtonZY As RadioButton
  1799. Friend WithEvents RadioButtonHS As RadioButton
  1800. Friend WithEvents RadioButtonYT As RadioButton
  1801. Friend WithEvents RadioButtonDB As RadioButton
  1802. Friend WithEvents RadioButtonHD As RadioButton
  1803. Friend WithEvents 刪除工藝_bt As Button
  1804. Friend WithEvents 平均尺数_tb As TextBox
  1805. Friend WithEvents 另存工藝_bt As Button
  1806. Friend WithEvents 每尺合計_dgv As DataGridView
  1807. Friend WithEvents 打印標籤_bt As Button
  1808. Friend WithEvents 合計_dgv As DataGridView
  1809. Friend WithEvents 打印工藝_bt As Button
  1810. Friend WithEvents 查詢_bt As Button
  1811. Friend WithEvents GroupBox1 As GroupBox
  1812. Friend WithEvents txtjc As TextBox
  1813. Friend WithEvents txtsum As TextBox
  1814. Friend WithEvents GroupBox4 As GroupBox
  1815. Friend WithEvents dgv_record As DataGridView
  1816. Friend WithEvents Label23 As Label
  1817. Friend WithEvents 領料_bt As Button
  1818. Friend WithEvents 開削_lb As Label
  1819. Friend WithEvents ProgressBar1 As ProgressBar
  1820. Friend WithEvents 品名_lb As Label
  1821. Friend WithEvents dgv2 As DataGridView
  1822. Friend WithEvents 處方_dgv As DataGridView
  1823. Friend WithEvents 處方縮放_bt As Button
  1824. Friend WithEvents ListBox2 As ListBox
  1825. Friend WithEvents TXT_PID As TextBox
  1826. Friend WithEvents PictureBox1 As PictureBox
  1827. Friend WithEvents Button21 As Button
  1828. Friend WithEvents dgv_chem_detail As DataGridView
  1829. Friend WithEvents dgv_cost As DataGridView
  1830. Friend WithEvents Button15 As Button
  1831. Friend WithEvents Button14 As Button
  1832. Friend WithEvents Button13 As Button
  1833. Friend WithEvents Button12 As Button
  1834. Friend WithEvents Button11 As Button
  1835. Friend WithEvents TextBox4 As TextBox
  1836. Friend WithEvents TextBox3 As TextBox
  1837. Friend WithEvents TextBox2 As TextBox
  1838. Friend WithEvents ListBox4 As ListBox
  1839. Friend WithEvents ListBox3 As ListBox
  1840. Friend WithEvents Button20 As Button
  1841. Friend WithEvents 計算_bt As Button
  1842. Friend WithEvents Button18 As Button
  1843. Friend WithEvents Button17 As Button
  1844. Friend WithEvents Button10 As Button
  1845. Friend WithEvents DateTimePicker1 As DateTimePicker
  1846. Friend WithEvents TextBox12 As TextBox
  1847. Friend WithEvents cmdAddrcp As Button
  1848. Friend WithEvents Button8 As Button
  1849. Friend WithEvents 刪除一行_bt As Button
  1850. Friend WithEvents 修改指定_bt As Button
  1851. Friend WithEvents 插入一行_bt As Button
  1852. Friend WithEvents 模式通知_lb As Label
  1853. Friend WithEvents cmdcanceladd As Button
  1854. Friend WithEvents Label2 As Label
  1855. Friend WithEvents Label14 As Label
  1856. Friend WithEvents Label15 As Label
  1857. Friend WithEvents Label16 As Label
  1858. Friend WithEvents 成本_bt As Button
  1859. Friend WithEvents TextBox5 As TextBox
  1860. Friend WithEvents cmdCancelEdit As Button
  1861. Friend WithEvents 修改存檔_bt As Button
  1862. Friend WithEvents Timer1 As Timer
  1863. Friend WithEvents TextBox10 As TextBox
  1864. Friend WithEvents Button24 As Button
  1865. Friend WithEvents Panel1 As Panel
  1866. Friend WithEvents SplitContainer1 As SplitContainer
  1867. Friend WithEvents Panel2 As Panel
  1868. Friend WithEvents 重新讀取_bt As Button
  1869. Friend WithEvents Panel3 As Panel
  1870. Friend WithEvents 系统代码_ch As CheckBox
  1871. Friend WithEvents 系统品名_ch As CheckBox
  1872. Friend WithEvents zdhc_code_ch As CheckBox
  1873. Friend WithEvents 类别_ch As CheckBox
  1874. Friend WithEvents 化工分类_ch As CheckBox
  1875. Friend WithEvents 系统分类_ch As CheckBox
  1876. Friend WithEvents 进货单价_ch As CheckBox
  1877. Friend WithEvents 處方清單_dgv As DataGridView
  1878. Friend WithEvents Label22 As Label
  1879. Friend WithEvents Label3 As Label
  1880. Friend WithEvents Label11 As Label
  1881. Friend WithEvents Label24 As Label
  1882. Friend WithEvents 建立日期_lb As Label
  1883. Friend WithEvents 流程卡号_lb As Label
  1884. Friend WithEvents 片数_lb As Label
  1885. Friend WithEvents 重量_lb As Label
  1886. Friend WithEvents 选级_lb As Label
  1887. Friend WithEvents 平均_lb As Label
  1888. End Class