123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class Frm_00_Retan_rcp
- Inherits System.Windows.Forms.Form
-
- 'Form 重写 Dispose,以清理组件列表。
- <System.Diagnostics.DebuggerNonUserCode()> _
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
-
- 'Windows 窗体设计器所必需的
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下过程是 Windows 窗体设计器所必需的
- '可以使用 Windows 窗体设计器修改它。
- '不要使用代码编辑器修改它。
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.components = New System.ComponentModel.Container()
- Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.烤膠_bt = New System.Windows.Forms.TextBox()
- Me.助劑_tb = New System.Windows.Forms.TextBox()
- Me.染料_tb = New System.Windows.Forms.TextBox()
- Me.單寧_tb = New System.Windows.Forms.TextBox()
- Me.复鞣剂_tb = New System.Windows.Forms.TextBox()
- Me.txtsize = New System.Windows.Forms.TextBox()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.丙烯酸_tb = New System.Windows.Forms.TextBox()
- Me.油脂_tb = New System.Windows.Forms.TextBox()
- Me.txtwb_weight = New System.Windows.Forms.TextBox()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.GroupBox5 = New System.Windows.Forms.GroupBox()
- Me.重新讀取_bt = New System.Windows.Forms.Button()
- Me.RadioButtonDCS = New System.Windows.Forms.RadioButton()
- Me.RadioButtonJD = New System.Windows.Forms.RadioButton()
- Me.RadioButtonCW = New System.Windows.Forms.RadioButton()
- Me.RadioButtonSM = New System.Windows.Forms.RadioButton()
- Me.RadioButtonXJM = New System.Windows.Forms.RadioButton()
- Me.RadioButtonZY = New System.Windows.Forms.RadioButton()
- Me.RadioButtonHS = New System.Windows.Forms.RadioButton()
- Me.RadioButtonYT = New System.Windows.Forms.RadioButton()
- Me.RadioButtonDB = New System.Windows.Forms.RadioButton()
- Me.RadioButtonHD = New System.Windows.Forms.RadioButton()
- Me.模式通知_lb = New System.Windows.Forms.Label()
- Me.平均尺数_tb = New System.Windows.Forms.TextBox()
- Me.每尺合計_dgv = New System.Windows.Forms.DataGridView()
- Me.合計_dgv = New System.Windows.Forms.DataGridView()
- Me.GroupBox1 = New System.Windows.Forms.GroupBox()
- Me.txtjc = New System.Windows.Forms.TextBox()
- Me.txtsum = New System.Windows.Forms.TextBox()
- Me.GroupBox4 = New System.Windows.Forms.GroupBox()
- Me.dgv_record = New System.Windows.Forms.DataGridView()
- Me.Label23 = New System.Windows.Forms.Label()
- Me.開削_lb = New System.Windows.Forms.Label()
- Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
- Me.品名_lb = New System.Windows.Forms.Label()
- Me.dgv2 = New System.Windows.Forms.DataGridView()
- Me.處方_dgv = New System.Windows.Forms.DataGridView()
- Me.ListBox2 = New System.Windows.Forms.ListBox()
- Me.TXT_PID = New System.Windows.Forms.TextBox()
- Me.處方清單_dgv = New System.Windows.Forms.DataGridView()
- Me.Button21 = New System.Windows.Forms.Button()
- Me.dgv_chem_detail = New System.Windows.Forms.DataGridView()
- Me.dgv_cost = New System.Windows.Forms.DataGridView()
- Me.Button15 = New System.Windows.Forms.Button()
- Me.Button14 = New System.Windows.Forms.Button()
- Me.Button13 = New System.Windows.Forms.Button()
- Me.Button12 = New System.Windows.Forms.Button()
- Me.Button11 = New System.Windows.Forms.Button()
- Me.TextBox4 = New System.Windows.Forms.TextBox()
- Me.TextBox3 = New System.Windows.Forms.TextBox()
- Me.TextBox2 = New System.Windows.Forms.TextBox()
- Me.ListBox4 = New System.Windows.Forms.ListBox()
- Me.ListBox3 = New System.Windows.Forms.ListBox()
- Me.Button20 = New System.Windows.Forms.Button()
- Me.Button18 = New System.Windows.Forms.Button()
- Me.Button17 = New System.Windows.Forms.Button()
- Me.Button10 = New System.Windows.Forms.Button()
- Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
- Me.TextBox12 = New System.Windows.Forms.TextBox()
- Me.cmdAddrcp = New System.Windows.Forms.Button()
- Me.Button8 = New System.Windows.Forms.Button()
- Me.cmdcanceladd = New System.Windows.Forms.Button()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.成本_bt = New System.Windows.Forms.Button()
- Me.TextBox5 = New System.Windows.Forms.TextBox()
- Me.cmdCancelEdit = New System.Windows.Forms.Button()
- Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
- Me.TextBox10 = New System.Windows.Forms.TextBox()
- Me.Button24 = New System.Windows.Forms.Button()
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.PictureBox1 = New System.Windows.Forms.PictureBox()
- Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
- Me.Panel2 = New System.Windows.Forms.Panel()
- Me.Panel3 = New System.Windows.Forms.Panel()
- Me.系统分类_ch = New System.Windows.Forms.CheckBox()
- Me.进货单价_ch = New System.Windows.Forms.CheckBox()
- Me.系统代码_ch = New System.Windows.Forms.CheckBox()
- Me.系统品名_ch = New System.Windows.Forms.CheckBox()
- Me.zdhc_code_ch = New System.Windows.Forms.CheckBox()
- Me.类别_ch = New System.Windows.Forms.CheckBox()
- Me.化工分类_ch = New System.Windows.Forms.CheckBox()
- Me.存檔_bt = New System.Windows.Forms.Button()
- Me.刪除工藝_bt = New System.Windows.Forms.Button()
- Me.另存工藝_bt = New System.Windows.Forms.Button()
- Me.打印標籤_bt = New System.Windows.Forms.Button()
- Me.打印工藝_bt = New System.Windows.Forms.Button()
- Me.查詢_bt = New System.Windows.Forms.Button()
- Me.領料_bt = New System.Windows.Forms.Button()
- Me.處方縮放_bt = New System.Windows.Forms.Button()
- Me.計算_bt = New System.Windows.Forms.Button()
- Me.刪除一行_bt = New System.Windows.Forms.Button()
- Me.修改指定_bt = New System.Windows.Forms.Button()
- Me.插入一行_bt = New System.Windows.Forms.Button()
- Me.修改存檔_bt = New System.Windows.Forms.Button()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.Label24 = New System.Windows.Forms.Label()
- Me.建立日期_lb = New System.Windows.Forms.Label()
- Me.流程卡号_lb = New System.Windows.Forms.Label()
- Me.片数_lb = New System.Windows.Forms.Label()
- Me.重量_lb = New System.Windows.Forms.Label()
- Me.选级_lb = New System.Windows.Forms.Label()
- Me.平均_lb = New System.Windows.Forms.Label()
- Me.GroupBox5.SuspendLayout()
- CType(Me.每尺合計_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.合計_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.GroupBox1.SuspendLayout()
- Me.GroupBox4.SuspendLayout()
- CType(Me.dgv_record, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.dgv2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.處方_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.處方清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.dgv_chem_detail, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.dgv_cost, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel1.SuspendLayout()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SplitContainer1.Panel1.SuspendLayout()
- Me.SplitContainer1.Panel2.SuspendLayout()
- Me.SplitContainer1.SuspendLayout()
- Me.Panel2.SuspendLayout()
- Me.Panel3.SuspendLayout()
- Me.SuspendLayout()
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label5.Location = New System.Drawing.Point(35, 260)
- Me.Label5.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(31, 16)
- Me.Label5.TabIndex = 207
- Me.Label5.Text = "合計"
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label6.Location = New System.Drawing.Point(24, 187)
- Me.Label6.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(43, 16)
- Me.Label6.TabIndex = 206
- Me.Label6.Text = "丙烯酸"
- Me.Label6.Visible = False
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label7.Location = New System.Drawing.Point(24, 211)
- Me.Label7.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(43, 16)
- Me.Label7.TabIndex = 205
- Me.Label7.Text = "复鞣剂"
- Me.Label7.Visible = False
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label8.Location = New System.Drawing.Point(12, 236)
- Me.Label8.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(55, 16)
- Me.Label8.TabIndex = 204
- Me.Label8.Text = "基础化工"
- Me.Label8.Visible = False
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label9.Location = New System.Drawing.Point(33, 163)
- Me.Label9.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(34, 17)
- Me.Label9.TabIndex = 203
- Me.Label9.Text = "助剂"
- Me.Label9.Visible = False
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label10.Location = New System.Drawing.Point(32, 139)
- Me.Label10.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(34, 17)
- Me.Label10.TabIndex = 202
- Me.Label10.Text = "染料"
- Me.Label10.Visible = False
- '
- 'Label19
- '
- Me.Label19.AutoSize = True
- Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label19.Location = New System.Drawing.Point(33, 117)
- Me.Label19.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(31, 16)
- Me.Label19.TabIndex = 201
- Me.Label19.Text = "油脂"
- Me.Label19.Visible = False
- '
- 'Label28
- '
- Me.Label28.AutoSize = True
- Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label28.Location = New System.Drawing.Point(33, 93)
- Me.Label28.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(31, 16)
- Me.Label28.TabIndex = 200
- Me.Label28.Text = "栲膠"
- Me.Label28.Visible = False
- '
- 'Label29
- '
- Me.Label29.AutoSize = True
- Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label29.Location = New System.Drawing.Point(33, 68)
- Me.Label29.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(31, 16)
- Me.Label29.TabIndex = 199
- Me.Label29.Text = "單寧"
- Me.Label29.Visible = False
- '
- '烤膠_bt
- '
- Me.烤膠_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.烤膠_bt.Location = New System.Drawing.Point(69, 88)
- Me.烤膠_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.烤膠_bt.Name = "烤膠_bt"
- Me.烤膠_bt.Size = New System.Drawing.Size(112, 23)
- Me.烤膠_bt.TabIndex = 34
- '
- '助劑_tb
- '
- Me.助劑_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.助劑_tb.Location = New System.Drawing.Point(69, 160)
- Me.助劑_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.助劑_tb.Name = "助劑_tb"
- Me.助劑_tb.Size = New System.Drawing.Size(112, 23)
- Me.助劑_tb.TabIndex = 5
- '
- '染料_tb
- '
- Me.染料_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.染料_tb.Location = New System.Drawing.Point(69, 136)
- Me.染料_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.染料_tb.Name = "染料_tb"
- Me.染料_tb.Size = New System.Drawing.Size(112, 23)
- Me.染料_tb.TabIndex = 4
- '
- '單寧_tb
- '
- Me.單寧_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.單寧_tb.Location = New System.Drawing.Point(69, 64)
- Me.單寧_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.單寧_tb.Name = "單寧_tb"
- Me.單寧_tb.Size = New System.Drawing.Size(112, 23)
- Me.單寧_tb.TabIndex = 2
- '
- '复鞣剂_tb
- '
- Me.复鞣剂_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.复鞣剂_tb.Location = New System.Drawing.Point(69, 208)
- Me.复鞣剂_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.复鞣剂_tb.Name = "复鞣剂_tb"
- Me.复鞣剂_tb.Size = New System.Drawing.Size(112, 23)
- Me.复鞣剂_tb.TabIndex = 7
- '
- 'txtsize
- '
- Me.txtsize.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.txtsize.Location = New System.Drawing.Point(69, 40)
- Me.txtsize.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.txtsize.Name = "txtsize"
- Me.txtsize.Size = New System.Drawing.Size(112, 23)
- Me.txtsize.TabIndex = 1
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label12.Location = New System.Drawing.Point(7, 43)
- Me.Label12.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(55, 16)
- Me.Label12.TabIndex = 33
- Me.Label12.Text = "成品呎數"
- '
- '丙烯酸_tb
- '
- Me.丙烯酸_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.丙烯酸_tb.Location = New System.Drawing.Point(69, 184)
- Me.丙烯酸_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.丙烯酸_tb.Name = "丙烯酸_tb"
- Me.丙烯酸_tb.Size = New System.Drawing.Size(112, 23)
- Me.丙烯酸_tb.TabIndex = 6
- '
- '油脂_tb
- '
- Me.油脂_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.油脂_tb.Location = New System.Drawing.Point(69, 112)
- Me.油脂_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.油脂_tb.Name = "油脂_tb"
- Me.油脂_tb.Size = New System.Drawing.Size(112, 23)
- Me.油脂_tb.TabIndex = 3
- '
- 'txtwb_weight
- '
- Me.txtwb_weight.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.txtwb_weight.Location = New System.Drawing.Point(69, 16)
- Me.txtwb_weight.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.txtwb_weight.Name = "txtwb_weight"
- Me.txtwb_weight.Size = New System.Drawing.Size(112, 23)
- Me.txtwb_weight.TabIndex = 10
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label4.Location = New System.Drawing.Point(7, 20)
- Me.Label4.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(55, 16)
- Me.Label4.TabIndex = 19
- Me.Label4.Text = "藍皮重量"
- '
- 'GroupBox5
- '
- Me.GroupBox5.Controls.Add(Me.重新讀取_bt)
- Me.GroupBox5.Controls.Add(Me.RadioButtonDCS)
- Me.GroupBox5.Controls.Add(Me.RadioButtonJD)
- Me.GroupBox5.Controls.Add(Me.RadioButtonCW)
- Me.GroupBox5.Controls.Add(Me.RadioButtonSM)
- Me.GroupBox5.Controls.Add(Me.RadioButtonXJM)
- Me.GroupBox5.Controls.Add(Me.RadioButtonZY)
- Me.GroupBox5.Controls.Add(Me.RadioButtonHS)
- Me.GroupBox5.Controls.Add(Me.RadioButtonYT)
- Me.GroupBox5.Controls.Add(Me.RadioButtonDB)
- Me.GroupBox5.Controls.Add(Me.RadioButtonHD)
- Me.GroupBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox5.ForeColor = System.Drawing.Color.Red
- Me.GroupBox5.Location = New System.Drawing.Point(3, 1)
- Me.GroupBox5.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.GroupBox5.Name = "GroupBox5"
- Me.GroupBox5.Padding = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.GroupBox5.Size = New System.Drawing.Size(894, 40)
- Me.GroupBox5.TabIndex = 305
- Me.GroupBox5.TabStop = False
- Me.GroupBox5.Text = "客户"
- '
- '重新讀取_bt
- '
- Me.重新讀取_bt.BackgroundImage = Global.WindowsApp1.My.Resources.Resources.renew
- Me.重新讀取_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.重新讀取_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.重新讀取_bt.Location = New System.Drawing.Point(863, 8)
- Me.重新讀取_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.重新讀取_bt.Name = "重新讀取_bt"
- Me.重新讀取_bt.Size = New System.Drawing.Size(32, 32)
- Me.重新讀取_bt.TabIndex = 293
- Me.重新讀取_bt.UseVisualStyleBackColor = True
- '
- 'RadioButtonDCS
- '
- Me.RadioButtonDCS.AutoSize = True
- Me.RadioButtonDCS.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonDCS.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonDCS.Location = New System.Drawing.Point(447, 16)
- Me.RadioButtonDCS.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonDCS.Name = "RadioButtonDCS"
- Me.RadioButtonDCS.Size = New System.Drawing.Size(49, 20)
- Me.RadioButtonDCS.TabIndex = 9
- Me.RadioButtonDCS.TabStop = True
- Me.RadioButtonDCS.Text = "DCS"
- Me.RadioButtonDCS.UseVisualStyleBackColor = True
- '
- 'RadioButtonJD
- '
- Me.RadioButtonJD.AutoSize = True
- Me.RadioButtonJD.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonJD.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonJD.Location = New System.Drawing.Point(8, 16)
- Me.RadioButtonJD.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonJD.Name = "RadioButtonJD"
- Me.RadioButtonJD.Size = New System.Drawing.Size(46, 20)
- Me.RadioButtonJD.TabIndex = 8
- Me.RadioButtonJD.TabStop = True
- Me.RadioButtonJD.Text = "ALL"
- Me.RadioButtonJD.UseVisualStyleBackColor = True
- '
- 'RadioButtonCW
- '
- Me.RadioButtonCW.AutoSize = True
- Me.RadioButtonCW.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonCW.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonCW.Location = New System.Drawing.Point(351, 16)
- Me.RadioButtonCW.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonCW.Name = "RadioButtonCW"
- Me.RadioButtonCW.Size = New System.Drawing.Size(45, 20)
- Me.RadioButtonCW.TabIndex = 7
- Me.RadioButtonCW.TabStop = True
- Me.RadioButtonCW.Text = "CW"
- Me.RadioButtonCW.UseVisualStyleBackColor = True
- '
- 'RadioButtonSM
- '
- Me.RadioButtonSM.AutoSize = True
- Me.RadioButtonSM.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonSM.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonSM.Location = New System.Drawing.Point(304, 16)
- Me.RadioButtonSM.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonSM.Name = "RadioButtonSM"
- Me.RadioButtonSM.Size = New System.Drawing.Size(44, 20)
- Me.RadioButtonSM.TabIndex = 6
- Me.RadioButtonSM.TabStop = True
- Me.RadioButtonSM.Text = "SM"
- Me.RadioButtonSM.UseVisualStyleBackColor = True
- '
- 'RadioButtonXJM
- '
- Me.RadioButtonXJM.AutoSize = True
- Me.RadioButtonXJM.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonXJM.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonXJM.Location = New System.Drawing.Point(250, 16)
- Me.RadioButtonXJM.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonXJM.Name = "RadioButtonXJM"
- Me.RadioButtonXJM.Size = New System.Drawing.Size(50, 20)
- Me.RadioButtonXJM.TabIndex = 5
- Me.RadioButtonXJM.TabStop = True
- Me.RadioButtonXJM.Text = "XJM"
- Me.RadioButtonXJM.UseVisualStyleBackColor = True
- '
- 'RadioButtonZY
- '
- Me.RadioButtonZY.AutoSize = True
- Me.RadioButtonZY.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonZY.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonZY.Location = New System.Drawing.Point(204, 16)
- Me.RadioButtonZY.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonZY.Name = "RadioButtonZY"
- Me.RadioButtonZY.Size = New System.Drawing.Size(40, 20)
- Me.RadioButtonZY.TabIndex = 4
- Me.RadioButtonZY.TabStop = True
- Me.RadioButtonZY.Text = "ZY"
- Me.RadioButtonZY.UseVisualStyleBackColor = True
- '
- 'RadioButtonHS
- '
- Me.RadioButtonHS.AutoSize = True
- Me.RadioButtonHS.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonHS.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonHS.Location = New System.Drawing.Point(156, 16)
- Me.RadioButtonHS.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonHS.Name = "RadioButtonHS"
- Me.RadioButtonHS.Size = New System.Drawing.Size(41, 20)
- Me.RadioButtonHS.TabIndex = 3
- Me.RadioButtonHS.TabStop = True
- Me.RadioButtonHS.Text = "HS"
- Me.RadioButtonHS.UseVisualStyleBackColor = True
- '
- 'RadioButtonYT
- '
- Me.RadioButtonYT.AutoSize = True
- Me.RadioButtonYT.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonYT.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonYT.Location = New System.Drawing.Point(400, 16)
- Me.RadioButtonYT.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonYT.Name = "RadioButtonYT"
- Me.RadioButtonYT.Size = New System.Drawing.Size(39, 20)
- Me.RadioButtonYT.TabIndex = 2
- Me.RadioButtonYT.TabStop = True
- Me.RadioButtonYT.Text = "YT"
- Me.RadioButtonYT.UseVisualStyleBackColor = True
- '
- 'RadioButtonDB
- '
- Me.RadioButtonDB.AutoSize = True
- Me.RadioButtonDB.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonDB.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonDB.Location = New System.Drawing.Point(108, 16)
- Me.RadioButtonDB.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonDB.Name = "RadioButtonDB"
- Me.RadioButtonDB.Size = New System.Drawing.Size(42, 20)
- Me.RadioButtonDB.TabIndex = 1
- Me.RadioButtonDB.TabStop = True
- Me.RadioButtonDB.Text = "DB"
- Me.RadioButtonDB.UseVisualStyleBackColor = True
- '
- 'RadioButtonHD
- '
- Me.RadioButtonHD.AutoSize = True
- Me.RadioButtonHD.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.RadioButtonHD.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
- Me.RadioButtonHD.Location = New System.Drawing.Point(60, 16)
- Me.RadioButtonHD.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.RadioButtonHD.Name = "RadioButtonHD"
- Me.RadioButtonHD.Size = New System.Drawing.Size(43, 20)
- Me.RadioButtonHD.TabIndex = 0
- Me.RadioButtonHD.TabStop = True
- Me.RadioButtonHD.Text = "HD"
- Me.RadioButtonHD.UseVisualStyleBackColor = True
- '
- '模式通知_lb
- '
- Me.模式通知_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.模式通知_lb.AutoSize = True
- Me.模式通知_lb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.模式通知_lb.ForeColor = System.Drawing.Color.Red
- Me.模式通知_lb.Location = New System.Drawing.Point(1425, 13)
- Me.模式通知_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.模式通知_lb.Name = "模式通知_lb"
- Me.模式通知_lb.Size = New System.Drawing.Size(106, 21)
- Me.模式通知_lb.TabIndex = 246
- Me.模式通知_lb.Text = "新增處方模式"
- Me.模式通知_lb.UseWaitCursor = True
- Me.模式通知_lb.Visible = False
- '
- '平均尺数_tb
- '
- Me.平均尺数_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.平均尺数_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.平均尺数_tb.ForeColor = System.Drawing.Color.Red
- Me.平均尺数_tb.Location = New System.Drawing.Point(1716, 1012)
- Me.平均尺数_tb.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.平均尺数_tb.Name = "平均尺数_tb"
- Me.平均尺数_tb.Size = New System.Drawing.Size(63, 25)
- Me.平均尺数_tb.TabIndex = 304
- Me.平均尺数_tb.WordWrap = False
- '
- '每尺合計_dgv
- '
- Me.每尺合計_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.每尺合計_dgv.BackgroundColor = System.Drawing.Color.White
- Me.每尺合計_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.每尺合計_dgv.Dock = System.Windows.Forms.DockStyle.Fill
- Me.每尺合計_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
- Me.每尺合計_dgv.Location = New System.Drawing.Point(0, 0)
- Me.每尺合計_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.每尺合計_dgv.Name = "每尺合計_dgv"
- Me.每尺合計_dgv.RowHeadersWidth = 5
- Me.每尺合計_dgv.RowTemplate.Height = 24
- Me.每尺合計_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
- Me.每尺合計_dgv.Size = New System.Drawing.Size(230, 439)
- Me.每尺合計_dgv.TabIndex = 303
- '
- '合計_dgv
- '
- Me.合計_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.合計_dgv.BackgroundColor = System.Drawing.Color.White
- Me.合計_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.合計_dgv.Dock = System.Windows.Forms.DockStyle.Fill
- Me.合計_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
- Me.合計_dgv.Location = New System.Drawing.Point(0, 0)
- Me.合計_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.合計_dgv.Name = "合計_dgv"
- Me.合計_dgv.RowHeadersWidth = 5
- Me.合計_dgv.RowTemplate.Height = 24
- Me.合計_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
- Me.合計_dgv.Size = New System.Drawing.Size(230, 450)
- Me.合計_dgv.TabIndex = 302
- '
- 'GroupBox1
- '
- Me.GroupBox1.Controls.Add(Me.Label5)
- Me.GroupBox1.Controls.Add(Me.Label6)
- Me.GroupBox1.Controls.Add(Me.Label7)
- Me.GroupBox1.Controls.Add(Me.Label8)
- Me.GroupBox1.Controls.Add(Me.Label9)
- Me.GroupBox1.Controls.Add(Me.Label10)
- Me.GroupBox1.Controls.Add(Me.Label19)
- Me.GroupBox1.Controls.Add(Me.Label28)
- Me.GroupBox1.Controls.Add(Me.Label29)
- Me.GroupBox1.Controls.Add(Me.烤膠_bt)
- Me.GroupBox1.Controls.Add(Me.txtsize)
- Me.GroupBox1.Controls.Add(Me.Label12)
- Me.GroupBox1.Controls.Add(Me.丙烯酸_tb)
- Me.GroupBox1.Controls.Add(Me.油脂_tb)
- Me.GroupBox1.Controls.Add(Me.助劑_tb)
- Me.GroupBox1.Controls.Add(Me.染料_tb)
- Me.GroupBox1.Controls.Add(Me.單寧_tb)
- Me.GroupBox1.Controls.Add(Me.复鞣剂_tb)
- Me.GroupBox1.Controls.Add(Me.txtwb_weight)
- Me.GroupBox1.Controls.Add(Me.Label4)
- Me.GroupBox1.Controls.Add(Me.txtjc)
- Me.GroupBox1.Controls.Add(Me.txtsum)
- Me.GroupBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox1.Location = New System.Drawing.Point(209, 198)
- Me.GroupBox1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Padding = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.GroupBox1.Size = New System.Drawing.Size(186, 286)
- Me.GroupBox1.TabIndex = 292
- Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "成本計算"
- Me.GroupBox1.Visible = False
- '
- 'txtjc
- '
- Me.txtjc.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.txtjc.Location = New System.Drawing.Point(69, 232)
- Me.txtjc.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.txtjc.Name = "txtjc"
- Me.txtjc.Size = New System.Drawing.Size(112, 23)
- Me.txtjc.TabIndex = 142
- Me.txtjc.Visible = False
- '
- 'txtsum
- '
- Me.txtsum.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.txtsum.Location = New System.Drawing.Point(69, 257)
- Me.txtsum.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.txtsum.Name = "txtsum"
- Me.txtsum.Size = New System.Drawing.Size(112, 23)
- Me.txtsum.TabIndex = 144
- Me.txtsum.Visible = False
- '
- 'GroupBox4
- '
- Me.GroupBox4.Controls.Add(Me.dgv_record)
- Me.GroupBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox4.Location = New System.Drawing.Point(408, 214)
- Me.GroupBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Padding = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.GroupBox4.Size = New System.Drawing.Size(203, 162)
- Me.GroupBox4.TabIndex = 291
- Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "成本計算"
- Me.GroupBox4.Visible = False
- '
- 'dgv_record
- '
- Me.dgv_record.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.dgv_record.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.dgv_record.Location = New System.Drawing.Point(101, 14)
- Me.dgv_record.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.dgv_record.Name = "dgv_record"
- Me.dgv_record.RowHeadersWidth = 66
- Me.dgv_record.RowTemplate.Height = 24
- Me.dgv_record.Size = New System.Drawing.Size(94, 140)
- Me.dgv_record.TabIndex = 135
- Me.dgv_record.VirtualMode = True
- Me.dgv_record.Visible = False
- '
- 'Label23
- '
- Me.Label23.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label23.AutoSize = True
- Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label23.ForeColor = System.Drawing.Color.Red
- Me.Label23.Location = New System.Drawing.Point(1720, 992)
- Me.Label23.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label23.Name = "Label23"
- Me.Label23.Size = New System.Drawing.Size(60, 17)
- Me.Label23.TabIndex = 287
- Me.Label23.Text = "平均尺数"
- '
- '開削_lb
- '
- Me.開削_lb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.開削_lb.BackColor = System.Drawing.Color.LightCoral
- Me.開削_lb.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.開削_lb.ForeColor = System.Drawing.SystemColors.ButtonHighlight
- Me.開削_lb.Location = New System.Drawing.Point(2, 44)
- Me.開削_lb.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0)
- Me.開削_lb.Name = "開削_lb"
- Me.開削_lb.Size = New System.Drawing.Size(514, 42)
- Me.開削_lb.TabIndex = 281
- Me.開削_lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
- '
- 'ProgressBar1
- '
- Me.ProgressBar1.Location = New System.Drawing.Point(726, 42)
- Me.ProgressBar1.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.ProgressBar1.Name = "ProgressBar1"
- Me.ProgressBar1.Size = New System.Drawing.Size(171, 45)
- Me.ProgressBar1.TabIndex = 280
- '
- '品名_lb
- '
- Me.品名_lb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.品名_lb.BackColor = System.Drawing.Color.LightCoral
- Me.品名_lb.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.品名_lb.ForeColor = System.Drawing.SystemColors.ButtonHighlight
- Me.品名_lb.Location = New System.Drawing.Point(2, 1)
- Me.品名_lb.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0)
- Me.品名_lb.Name = "品名_lb"
- Me.品名_lb.Size = New System.Drawing.Size(514, 42)
- Me.品名_lb.TabIndex = 279
- Me.品名_lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
- '
- 'dgv2
- '
- Me.dgv2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.dgv2.Location = New System.Drawing.Point(12, 5)
- Me.dgv2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.dgv2.Name = "dgv2"
- Me.dgv2.RowHeadersWidth = 66
- Me.dgv2.RowTemplate.Height = 24
- Me.dgv2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
- Me.dgv2.Size = New System.Drawing.Size(128, 105)
- Me.dgv2.TabIndex = 277
- Me.dgv2.Visible = False
- '
- '處方_dgv
- '
- Me.處方_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.處方_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.處方_dgv.BackgroundColor = System.Drawing.Color.White
- DataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
- DataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control
- DataGridViewCellStyle1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText
- DataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
- DataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black
- DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.處方_dgv.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle1
- Me.處方_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- DataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
- DataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window
- DataGridViewCellStyle2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText
- DataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
- DataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black
- DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
- Me.處方_dgv.DefaultCellStyle = DataGridViewCellStyle2
- Me.處方_dgv.GridColor = System.Drawing.SystemColors.ControlLightLight
- Me.處方_dgv.Location = New System.Drawing.Point(900, 90)
- Me.處方_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.處方_dgv.Name = "處方_dgv"
- Me.處方_dgv.RowHeadersWidth = 5
- Me.處方_dgv.RowTemplate.Height = 24
- Me.處方_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
- Me.處方_dgv.Size = New System.Drawing.Size(771, 897)
- Me.處方_dgv.TabIndex = 278
- '
- 'ListBox2
- '
- Me.ListBox2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.ListBox2.FormattingEnabled = True
- Me.ListBox2.ItemHeight = 17
- Me.ListBox2.Location = New System.Drawing.Point(342, 97)
- Me.ListBox2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.ListBox2.Name = "ListBox2"
- Me.ListBox2.Size = New System.Drawing.Size(109, 140)
- Me.ListBox2.TabIndex = 261
- Me.ListBox2.Visible = False
- '
- 'TXT_PID
- '
- Me.TXT_PID.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TXT_PID.Location = New System.Drawing.Point(257, 59)
- Me.TXT_PID.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TXT_PID.Name = "TXT_PID"
- Me.TXT_PID.Size = New System.Drawing.Size(107, 25)
- Me.TXT_PID.TabIndex = 250
- Me.TXT_PID.Visible = False
- '
- '處方清單_dgv
- '
- Me.處方清單_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.處方清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.處方清單_dgv.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders
- Me.處方清單_dgv.BackgroundColor = System.Drawing.Color.White
- Me.處方清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.處方清單_dgv.Location = New System.Drawing.Point(2, 90)
- Me.處方清單_dgv.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.處方清單_dgv.Name = "處方清單_dgv"
- Me.處方清單_dgv.RowHeadersWidth = 5
- Me.處方清單_dgv.RowTemplate.DefaultCellStyle.Font = New System.Drawing.Font("微软雅黑", 7.8!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
- Me.處方清單_dgv.RowTemplate.Height = 24
- Me.處方清單_dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
- Me.處方清單_dgv.Size = New System.Drawing.Size(896, 950)
- Me.處方清單_dgv.TabIndex = 245
- '
- 'Button21
- '
- Me.Button21.Location = New System.Drawing.Point(572, 32)
- Me.Button21.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button21.Name = "Button21"
- Me.Button21.Size = New System.Drawing.Size(94, 47)
- Me.Button21.TabIndex = 274
- Me.Button21.Text = "領料存檔"
- Me.Button21.UseVisualStyleBackColor = True
- Me.Button21.UseWaitCursor = True
- Me.Button21.Visible = False
- '
- 'dgv_chem_detail
- '
- Me.dgv_chem_detail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.dgv_chem_detail.Location = New System.Drawing.Point(67, 198)
- Me.dgv_chem_detail.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.dgv_chem_detail.Name = "dgv_chem_detail"
- Me.dgv_chem_detail.RowHeadersWidth = 66
- Me.dgv_chem_detail.RowTemplate.Height = 24
- Me.dgv_chem_detail.Size = New System.Drawing.Size(138, 161)
- Me.dgv_chem_detail.TabIndex = 273
- Me.dgv_chem_detail.Visible = False
- '
- 'dgv_cost
- '
- Me.dgv_cost.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.dgv_cost.Location = New System.Drawing.Point(12, 198)
- Me.dgv_cost.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.dgv_cost.Name = "dgv_cost"
- Me.dgv_cost.RowHeadersWidth = 66
- Me.dgv_cost.RowTemplate.Height = 24
- Me.dgv_cost.Size = New System.Drawing.Size(51, 161)
- Me.dgv_cost.TabIndex = 272
- Me.dgv_cost.Visible = False
- '
- 'Button15
- '
- Me.Button15.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button15.Location = New System.Drawing.Point(12, 155)
- Me.Button15.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button15.Name = "Button15"
- Me.Button15.Size = New System.Drawing.Size(71, 41)
- Me.Button15.TabIndex = 271
- Me.Button15.Text = "取消"
- Me.Button15.UseVisualStyleBackColor = True
- Me.Button15.Visible = False
- '
- 'Button14
- '
- Me.Button14.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button14.Location = New System.Drawing.Point(12, 113)
- Me.Button14.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button14.Name = "Button14"
- Me.Button14.Size = New System.Drawing.Size(71, 41)
- Me.Button14.TabIndex = 270
- Me.Button14.Text = "新增"
- Me.Button14.UseVisualStyleBackColor = True
- Me.Button14.Visible = False
- '
- 'Button13
- '
- Me.Button13.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button13.Location = New System.Drawing.Point(237, 155)
- Me.Button13.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button13.Name = "Button13"
- Me.Button13.Size = New System.Drawing.Size(145, 41)
- Me.Button13.TabIndex = 269
- Me.Button13.Text = "新增顏色"
- Me.Button13.UseVisualStyleBackColor = True
- Me.Button13.Visible = False
- '
- 'Button12
- '
- Me.Button12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button12.Location = New System.Drawing.Point(236, 114)
- Me.Button12.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button12.Name = "Button12"
- Me.Button12.Size = New System.Drawing.Size(145, 41)
- Me.Button12.TabIndex = 268
- Me.Button12.Text = "新增產品"
- Me.Button12.UseVisualStyleBackColor = True
- Me.Button12.Visible = False
- '
- 'Button11
- '
- Me.Button11.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button11.Location = New System.Drawing.Point(87, 113)
- Me.Button11.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button11.Name = "Button11"
- Me.Button11.Size = New System.Drawing.Size(145, 41)
- Me.Button11.TabIndex = 267
- Me.Button11.Text = "新增客戶"
- Me.Button11.UseVisualStyleBackColor = True
- Me.Button11.Visible = False
- '
- 'TextBox4
- '
- Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox4.Location = New System.Drawing.Point(145, 5)
- Me.TextBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox4.Name = "TextBox4"
- Me.TextBox4.Size = New System.Drawing.Size(143, 25)
- Me.TextBox4.TabIndex = 266
- Me.TextBox4.Visible = False
- '
- 'TextBox3
- '
- Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox3.Location = New System.Drawing.Point(144, 32)
- Me.TextBox3.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox3.Name = "TextBox3"
- Me.TextBox3.Size = New System.Drawing.Size(143, 25)
- Me.TextBox3.TabIndex = 265
- Me.TextBox3.Visible = False
- '
- 'TextBox2
- '
- Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox2.Location = New System.Drawing.Point(209, 337)
- Me.TextBox2.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox2.Name = "TextBox2"
- Me.TextBox2.Size = New System.Drawing.Size(143, 25)
- Me.TextBox2.TabIndex = 264
- Me.TextBox2.Visible = False
- '
- 'ListBox4
- '
- Me.ListBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.ListBox4.FormattingEnabled = True
- Me.ListBox4.ItemHeight = 17
- Me.ListBox4.Location = New System.Drawing.Point(44, 97)
- Me.ListBox4.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.ListBox4.Name = "ListBox4"
- Me.ListBox4.Size = New System.Drawing.Size(143, 140)
- Me.ListBox4.TabIndex = 263
- Me.ListBox4.Visible = False
- '
- 'ListBox3
- '
- Me.ListBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.ListBox3.FormattingEnabled = True
- Me.ListBox3.ItemHeight = 17
- Me.ListBox3.Location = New System.Drawing.Point(195, 97)
- Me.ListBox3.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.ListBox3.Name = "ListBox3"
- Me.ListBox3.Size = New System.Drawing.Size(143, 140)
- Me.ListBox3.TabIndex = 262
- Me.ListBox3.Visible = False
- '
- 'Button20
- '
- Me.Button20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button20.Location = New System.Drawing.Point(385, 117)
- Me.Button20.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button20.Name = "Button20"
- Me.Button20.Size = New System.Drawing.Size(86, 37)
- Me.Button20.TabIndex = 260
- Me.Button20.Text = "刪除處方"
- Me.Button20.UseVisualStyleBackColor = True
- Me.Button20.UseWaitCursor = True
- Me.Button20.Visible = False
- '
- 'Button18
- '
- Me.Button18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button18.Location = New System.Drawing.Point(385, 80)
- Me.Button18.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button18.Name = "Button18"
- Me.Button18.Size = New System.Drawing.Size(86, 37)
- Me.Button18.TabIndex = 258
- Me.Button18.Text = "修改處方名"
- Me.Button18.UseVisualStyleBackColor = True
- Me.Button18.UseWaitCursor = True
- Me.Button18.Visible = False
- '
- 'Button17
- '
- Me.Button17.Location = New System.Drawing.Point(568, 81)
- Me.Button17.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button17.Name = "Button17"
- Me.Button17.Size = New System.Drawing.Size(98, 37)
- Me.Button17.TabIndex = 257
- Me.Button17.Text = "確定另存"
- Me.Button17.UseVisualStyleBackColor = True
- Me.Button17.UseWaitCursor = True
- Me.Button17.Visible = False
- '
- 'Button10
- '
- Me.Button10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button10.Location = New System.Drawing.Point(477, 80)
- Me.Button10.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button10.Name = "Button10"
- Me.Button10.Size = New System.Drawing.Size(86, 37)
- Me.Button10.TabIndex = 256
- Me.Button10.Text = "另存處方"
- Me.Button10.UseVisualStyleBackColor = True
- Me.Button10.UseWaitCursor = True
- Me.Button10.Visible = False
- '
- 'DateTimePicker1
- '
- Me.DateTimePicker1.Location = New System.Drawing.Point(209, 363)
- Me.DateTimePicker1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.DateTimePicker1.Name = "DateTimePicker1"
- Me.DateTimePicker1.Size = New System.Drawing.Size(102, 23)
- Me.DateTimePicker1.TabIndex = 255
- Me.DateTimePicker1.Visible = False
- '
- 'TextBox12
- '
- Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox12.Location = New System.Drawing.Point(257, 86)
- Me.TextBox12.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox12.Name = "TextBox12"
- Me.TextBox12.Size = New System.Drawing.Size(107, 25)
- Me.TextBox12.TabIndex = 254
- Me.TextBox12.Visible = False
- '
- 'cmdAddrcp
- '
- Me.cmdAddrcp.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.cmdAddrcp.Location = New System.Drawing.Point(385, 42)
- Me.cmdAddrcp.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.cmdAddrcp.Name = "cmdAddrcp"
- Me.cmdAddrcp.Size = New System.Drawing.Size(86, 37)
- Me.cmdAddrcp.TabIndex = 243
- Me.cmdAddrcp.Text = "確定新增"
- Me.cmdAddrcp.UseVisualStyleBackColor = True
- Me.cmdAddrcp.UseWaitCursor = True
- Me.cmdAddrcp.Visible = False
- '
- 'Button8
- '
- Me.Button8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button8.Location = New System.Drawing.Point(385, 5)
- Me.Button8.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.Button8.Name = "Button8"
- Me.Button8.Size = New System.Drawing.Size(86, 37)
- Me.Button8.TabIndex = 242
- Me.Button8.Text = "新增工艺"
- Me.Button8.UseVisualStyleBackColor = True
- Me.Button8.UseWaitCursor = True
- Me.Button8.Visible = False
- '
- 'cmdcanceladd
- '
- Me.cmdcanceladd.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.cmdcanceladd.Location = New System.Drawing.Point(477, 42)
- Me.cmdcanceladd.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.cmdcanceladd.Name = "cmdcanceladd"
- Me.cmdcanceladd.Size = New System.Drawing.Size(86, 37)
- Me.cmdcanceladd.TabIndex = 244
- Me.cmdcanceladd.Text = "取消新增(&C)"
- Me.cmdcanceladd.UseVisualStyleBackColor = True
- Me.cmdcanceladd.UseWaitCursor = True
- Me.cmdcanceladd.Visible = False
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label2.Location = New System.Drawing.Point(572, 188)
- Me.Label2.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(55, 16)
- Me.Label2.TabIndex = 72
- Me.Label2.Text = "修改人員"
- Me.Label2.UseWaitCursor = True
- '
- 'Label14
- '
- Me.Label14.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label14.AutoSize = True
- Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label14.Location = New System.Drawing.Point(1690, 3)
- Me.Label14.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(40, 16)
- Me.Label14.TabIndex = 48
- Me.Label14.Text = "片数 : "
- Me.Label14.UseWaitCursor = True
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label15.Location = New System.Drawing.Point(572, 160)
- Me.Label15.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(55, 16)
- Me.Label15.TabIndex = 47
- Me.Label15.Text = "最後修改"
- Me.Label15.UseWaitCursor = True
- '
- 'Label16
- '
- Me.Label16.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label16.AutoSize = True
- Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label16.Location = New System.Drawing.Point(1538, 3)
- Me.Label16.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(64, 16)
- Me.Label16.TabIndex = 46
- Me.Label16.Text = "建立日期 : "
- Me.Label16.UseWaitCursor = True
- '
- '成本_bt
- '
- Me.成本_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.成本_bt.Location = New System.Drawing.Point(491, 382)
- Me.成本_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.成本_bt.Name = "成本_bt"
- Me.成本_bt.Size = New System.Drawing.Size(120, 47)
- Me.成本_bt.TabIndex = 252
- Me.成本_bt.Text = "成本"
- Me.成本_bt.UseVisualStyleBackColor = True
- Me.成本_bt.UseWaitCursor = True
- Me.成本_bt.Visible = False
- '
- 'TextBox5
- '
- Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox5.Location = New System.Drawing.Point(145, 86)
- Me.TextBox5.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox5.Name = "TextBox5"
- Me.TextBox5.Size = New System.Drawing.Size(107, 25)
- Me.TextBox5.TabIndex = 251
- Me.TextBox5.Visible = False
- '
- 'cmdCancelEdit
- '
- Me.cmdCancelEdit.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.cmdCancelEdit.Location = New System.Drawing.Point(87, 157)
- Me.cmdCancelEdit.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.cmdCancelEdit.Name = "cmdCancelEdit"
- Me.cmdCancelEdit.Size = New System.Drawing.Size(71, 37)
- Me.cmdCancelEdit.TabIndex = 249
- Me.cmdCancelEdit.Text = "取消修改"
- Me.cmdCancelEdit.UseVisualStyleBackColor = True
- Me.cmdCancelEdit.UseWaitCursor = True
- Me.cmdCancelEdit.Visible = False
- '
- 'Timer1
- '
- Me.Timer1.Interval = 1000
- '
- 'TextBox10
- '
- Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox10.Location = New System.Drawing.Point(145, 59)
- Me.TextBox10.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.TextBox10.Name = "TextBox10"
- Me.TextBox10.Size = New System.Drawing.Size(107, 25)
- Me.TextBox10.TabIndex = 253
- Me.TextBox10.Visible = False
- '
- 'Button24
- '
- Me.Button24.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Button24.Location = New System.Drawing.Point(388, 155)
- Me.Button24.Margin = New System.Windows.Forms.Padding(4)
- Me.Button24.Name = "Button24"
- Me.Button24.Size = New System.Drawing.Size(121, 39)
- Me.Button24.TabIndex = 306
- Me.Button24.Text = "Button24"
- Me.Button24.UseVisualStyleBackColor = True
- Me.Button24.Visible = False
- '
- 'Panel1
- '
- Me.Panel1.Controls.Add(Me.dgv2)
- Me.Panel1.Controls.Add(Me.Label2)
- Me.Panel1.Controls.Add(Me.TextBox4)
- Me.Panel1.Controls.Add(Me.TextBox3)
- Me.Panel1.Controls.Add(Me.Button24)
- Me.Panel1.Controls.Add(Me.TextBox10)
- Me.Panel1.Controls.Add(Me.TextBox5)
- Me.Panel1.Controls.Add(Me.Label15)
- Me.Panel1.Controls.Add(Me.TextBox12)
- Me.Panel1.Controls.Add(Me.TXT_PID)
- Me.Panel1.Controls.Add(Me.GroupBox4)
- Me.Panel1.Controls.Add(Me.Button14)
- Me.Panel1.Controls.Add(Me.Button15)
- Me.Panel1.Controls.Add(Me.cmdCancelEdit)
- Me.Panel1.Controls.Add(Me.Button11)
- Me.Panel1.Controls.Add(Me.Button12)
- Me.Panel1.Controls.Add(Me.GroupBox1)
- Me.Panel1.Controls.Add(Me.Button13)
- Me.Panel1.Controls.Add(Me.Button8)
- Me.Panel1.Controls.Add(Me.cmdcanceladd)
- Me.Panel1.Controls.Add(Me.cmdAddrcp)
- Me.Panel1.Controls.Add(Me.Button10)
- Me.Panel1.Controls.Add(Me.Button17)
- Me.Panel1.Controls.Add(Me.Button21)
- Me.Panel1.Controls.Add(Me.Button18)
- Me.Panel1.Controls.Add(Me.TextBox2)
- Me.Panel1.Controls.Add(Me.Button20)
- Me.Panel1.Controls.Add(Me.PictureBox1)
- Me.Panel1.Controls.Add(Me.成本_bt)
- Me.Panel1.Controls.Add(Me.dgv_chem_detail)
- Me.Panel1.Controls.Add(Me.DateTimePicker1)
- Me.Panel1.Controls.Add(Me.dgv_cost)
- Me.Panel1.Location = New System.Drawing.Point(32, 343)
- Me.Panel1.Margin = New System.Windows.Forms.Padding(4)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(692, 491)
- Me.Panel1.TabIndex = 307
- '
- 'PictureBox1
- '
- Me.PictureBox1.BackgroundImage = Global.WindowsApp1.My.Resources.Resources._9
- Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.PictureBox1.Location = New System.Drawing.Point(631, 128)
- Me.PictureBox1.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.PictureBox1.Name = "PictureBox1"
- Me.PictureBox1.Size = New System.Drawing.Size(55, 55)
- Me.PictureBox1.TabIndex = 275
- Me.PictureBox1.TabStop = False
- Me.PictureBox1.Visible = False
- '
- 'SplitContainer1
- '
- Me.SplitContainer1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.SplitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.SplitContainer1.Location = New System.Drawing.Point(1671, 90)
- Me.SplitContainer1.Name = "SplitContainer1"
- Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
- '
- 'SplitContainer1.Panel1
- '
- Me.SplitContainer1.Panel1.Controls.Add(Me.合計_dgv)
- '
- 'SplitContainer1.Panel2
- '
- Me.SplitContainer1.Panel2.Controls.Add(Me.每尺合計_dgv)
- Me.SplitContainer1.Size = New System.Drawing.Size(232, 897)
- Me.SplitContainer1.SplitterDistance = 452
- Me.SplitContainer1.TabIndex = 308
- '
- 'Panel2
- '
- Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel2.Controls.Add(Me.品名_lb)
- Me.Panel2.Controls.Add(Me.開削_lb)
- Me.Panel2.Location = New System.Drawing.Point(902, 2)
- Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(518, 87)
- Me.Panel2.TabIndex = 309
- '
- 'Panel3
- '
- Me.Panel3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Panel3.Controls.Add(Me.系统分类_ch)
- Me.Panel3.Controls.Add(Me.进货单价_ch)
- Me.Panel3.Controls.Add(Me.系统代码_ch)
- Me.Panel3.Controls.Add(Me.系统品名_ch)
- Me.Panel3.Controls.Add(Me.zdhc_code_ch)
- Me.Panel3.Controls.Add(Me.类别_ch)
- Me.Panel3.Controls.Add(Me.化工分类_ch)
- Me.Panel3.Location = New System.Drawing.Point(1023, 990)
- Me.Panel3.Name = "Panel3"
- Me.Panel3.Size = New System.Drawing.Size(376, 48)
- Me.Panel3.TabIndex = 310
- '
- '系统分类_ch
- '
- Me.系统分类_ch.AutoSize = True
- Me.系统分类_ch.Location = New System.Drawing.Point(191, 25)
- Me.系统分类_ch.Name = "系统分类_ch"
- Me.系统分类_ch.Size = New System.Drawing.Size(74, 20)
- Me.系统分类_ch.TabIndex = 6
- Me.系统分类_ch.Text = "系统分类"
- Me.系统分类_ch.UseVisualStyleBackColor = True
- '
- '进货单价_ch
- '
- Me.进货单价_ch.AutoSize = True
- Me.进货单价_ch.Location = New System.Drawing.Point(97, 25)
- Me.进货单价_ch.Name = "进货单价_ch"
- Me.进货单价_ch.Size = New System.Drawing.Size(74, 20)
- Me.进货单价_ch.TabIndex = 5
- Me.进货单价_ch.Text = "进货单价"
- Me.进货单价_ch.UseVisualStyleBackColor = True
- '
- '系统代码_ch
- '
- Me.系统代码_ch.AutoSize = True
- Me.系统代码_ch.Location = New System.Drawing.Point(3, 25)
- Me.系统代码_ch.Name = "系统代码_ch"
- Me.系统代码_ch.Size = New System.Drawing.Size(74, 20)
- Me.系统代码_ch.TabIndex = 4
- Me.系统代码_ch.Text = "系统代码"
- Me.系统代码_ch.UseVisualStyleBackColor = True
- '
- '系统品名_ch
- '
- Me.系统品名_ch.AutoSize = True
- Me.系统品名_ch.Location = New System.Drawing.Point(300, 4)
- Me.系统品名_ch.Name = "系统品名_ch"
- Me.系统品名_ch.Size = New System.Drawing.Size(74, 20)
- Me.系统品名_ch.TabIndex = 3
- Me.系统品名_ch.Text = "系统品名"
- Me.系统品名_ch.UseVisualStyleBackColor = True
- '
- 'zdhc_code_ch
- '
- Me.zdhc_code_ch.AutoSize = True
- Me.zdhc_code_ch.Location = New System.Drawing.Point(191, 4)
- Me.zdhc_code_ch.Name = "zdhc_code_ch"
- Me.zdhc_code_ch.Size = New System.Drawing.Size(93, 20)
- Me.zdhc_code_ch.TabIndex = 2
- Me.zdhc_code_ch.Text = "ZDHC Code"
- Me.zdhc_code_ch.UseVisualStyleBackColor = True
- '
- '类别_ch
- '
- Me.类别_ch.AutoSize = True
- Me.类别_ch.Location = New System.Drawing.Point(97, 4)
- Me.类别_ch.Name = "类别_ch"
- Me.类别_ch.Size = New System.Drawing.Size(50, 20)
- Me.类别_ch.TabIndex = 1
- Me.类别_ch.Text = "类别"
- Me.类别_ch.UseVisualStyleBackColor = True
- '
- '化工分类_ch
- '
- Me.化工分类_ch.AutoSize = True
- Me.化工分类_ch.Location = New System.Drawing.Point(3, 4)
- Me.化工分类_ch.Name = "化工分类_ch"
- Me.化工分类_ch.Size = New System.Drawing.Size(74, 20)
- Me.化工分类_ch.TabIndex = 0
- Me.化工分类_ch.Text = "化工分类"
- Me.化工分类_ch.UseVisualStyleBackColor = True
- '
- '存檔_bt
- '
- Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.存檔_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER
- Me.存檔_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.存檔_bt.Location = New System.Drawing.Point(123, 41)
- Me.存檔_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.存檔_bt.Name = "存檔_bt"
- Me.存檔_bt.Size = New System.Drawing.Size(120, 47)
- Me.存檔_bt.TabIndex = 290
- Me.存檔_bt.Text = "修改(&E) "
- Me.存檔_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.存檔_bt.UseVisualStyleBackColor = True
- '
- '刪除工藝_bt
- '
- Me.刪除工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.GarbageEmpty
- Me.刪除工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.刪除工藝_bt.Location = New System.Drawing.Point(364, 41)
- Me.刪除工藝_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.刪除工藝_bt.Name = "刪除工藝_bt"
- Me.刪除工藝_bt.Size = New System.Drawing.Size(120, 47)
- Me.刪除工藝_bt.TabIndex = 289
- Me.刪除工藝_bt.Text = "刪除工艺(&S)"
- Me.刪除工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.刪除工藝_bt.UseVisualStyleBackColor = True
- '
- '另存工藝_bt
- '
- Me.另存工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.另存工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER2
- Me.另存工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.另存工藝_bt.Location = New System.Drawing.Point(243, 41)
- Me.另存工藝_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.另存工藝_bt.Name = "另存工藝_bt"
- Me.另存工藝_bt.Size = New System.Drawing.Size(120, 47)
- Me.另存工藝_bt.TabIndex = 288
- Me.另存工藝_bt.Text = "另存新档(&A)"
- Me.另存工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.另存工藝_bt.UseVisualStyleBackColor = True
- '
- '打印標籤_bt
- '
- Me.打印標籤_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.打印標籤_bt.Image = Global.WindowsApp1.My.Resources.Resources.print
- Me.打印標籤_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.打印標籤_bt.Location = New System.Drawing.Point(484, 41)
- Me.打印標籤_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.打印標籤_bt.Name = "打印標籤_bt"
- Me.打印標籤_bt.Size = New System.Drawing.Size(120, 47)
- Me.打印標籤_bt.TabIndex = 286
- Me.打印標籤_bt.Text = "打印标签(&X)"
- Me.打印標籤_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.打印標籤_bt.UseVisualStyleBackColor = True
- '
- '打印工藝_bt
- '
- Me.打印工藝_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.打印工藝_bt.Image = Global.WindowsApp1.My.Resources.Resources.print
- Me.打印工藝_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.打印工藝_bt.Location = New System.Drawing.Point(604, 41)
- Me.打印工藝_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.打印工藝_bt.Name = "打印工藝_bt"
- Me.打印工藝_bt.Size = New System.Drawing.Size(120, 47)
- Me.打印工藝_bt.TabIndex = 284
- Me.打印工藝_bt.Text = "打印工艺(&C)"
- Me.打印工藝_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.打印工藝_bt.UseVisualStyleBackColor = True
- '
- '查詢_bt
- '
- Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.查詢_bt.Image = Global.WindowsApp1.My.Resources.Resources.Search
- Me.查詢_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.查詢_bt.Location = New System.Drawing.Point(3, 41)
- Me.查詢_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.查詢_bt.Name = "查詢_bt"
- Me.查詢_bt.Size = New System.Drawing.Size(120, 47)
- Me.查詢_bt.TabIndex = 282
- Me.查詢_bt.Text = "查詢(&Q) "
- Me.查詢_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.查詢_bt.UseVisualStyleBackColor = True
- '
- '領料_bt
- '
- Me.領料_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.領料_bt.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.領料_bt.Image = Global.WindowsApp1.My.Resources.Resources.box_64x64
- Me.領料_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.領料_bt.Location = New System.Drawing.Point(1402, 990)
- Me.領料_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.領料_bt.Name = "領料_bt"
- Me.領料_bt.Size = New System.Drawing.Size(120, 47)
- Me.領料_bt.TabIndex = 283
- Me.領料_bt.Text = "领料 "
- Me.領料_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.領料_bt.UseVisualStyleBackColor = True
- '
- '處方縮放_bt
- '
- Me.處方縮放_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.處方縮放_bt.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.處方縮放_bt.Image = Global.WindowsApp1.My.Resources.Resources.ZOOM01
- Me.處方縮放_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.處方縮放_bt.Location = New System.Drawing.Point(900, 990)
- Me.處方縮放_bt.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.處方縮放_bt.Name = "處方縮放_bt"
- Me.處方縮放_bt.Size = New System.Drawing.Size(120, 47)
- Me.處方縮放_bt.TabIndex = 276
- Me.處方縮放_bt.Text = "放大 "
- Me.處方縮放_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.處方縮放_bt.UseVisualStyleBackColor = True
- '
- '計算_bt
- '
- Me.計算_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.計算_bt.Font = New System.Drawing.Font("宋体", 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
- Me.計算_bt.Image = Global.WindowsApp1.My.Resources.Resources.calc1
- Me.計算_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.計算_bt.Location = New System.Drawing.Point(1781, 991)
- Me.計算_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.計算_bt.Name = "計算_bt"
- Me.計算_bt.Size = New System.Drawing.Size(120, 47)
- Me.計算_bt.TabIndex = 259
- Me.計算_bt.Text = "计算 "
- Me.計算_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.計算_bt.UseVisualStyleBackColor = True
- Me.計算_bt.UseWaitCursor = True
- '
- '刪除一行_bt
- '
- Me.刪除一行_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.刪除一行_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除一行_bt.Image = Global.WindowsApp1.My.Resources.Resources.GarbageEmpty
- Me.刪除一行_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.刪除一行_bt.Location = New System.Drawing.Point(1781, 41)
- Me.刪除一行_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.刪除一行_bt.Name = "刪除一行_bt"
- Me.刪除一行_bt.Size = New System.Drawing.Size(120, 47)
- Me.刪除一行_bt.TabIndex = 241
- Me.刪除一行_bt.Text = "刪除(&D) "
- Me.刪除一行_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.刪除一行_bt.UseVisualStyleBackColor = True
- '
- '修改指定_bt
- '
- Me.修改指定_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.修改指定_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.修改指定_bt.Image = Global.WindowsApp1.My.Resources.Resources.pen
- Me.修改指定_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.修改指定_bt.Location = New System.Drawing.Point(1662, 41)
- Me.修改指定_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.修改指定_bt.Name = "修改指定_bt"
- Me.修改指定_bt.Size = New System.Drawing.Size(120, 47)
- Me.修改指定_bt.TabIndex = 240
- Me.修改指定_bt.Text = "修改(&E) "
- Me.修改指定_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.修改指定_bt.UseVisualStyleBackColor = True
- '
- '插入一行_bt
- '
- Me.插入一行_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.插入一行_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.插入一行_bt.Image = Global.WindowsApp1.My.Resources.Resources.add_2
- Me.插入一行_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.插入一行_bt.Location = New System.Drawing.Point(1542, 41)
- Me.插入一行_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.插入一行_bt.Name = "插入一行_bt"
- Me.插入一行_bt.Size = New System.Drawing.Size(120, 47)
- Me.插入一行_bt.TabIndex = 239
- Me.插入一行_bt.Text = "插入(&Z) "
- Me.插入一行_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.插入一行_bt.UseVisualStyleBackColor = True
- '
- '修改存檔_bt
- '
- Me.修改存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.修改存檔_bt.Cursor = System.Windows.Forms.Cursors.WaitCursor
- Me.修改存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.修改存檔_bt.Image = Global.WindowsApp1.My.Resources.Resources.SAVER
- Me.修改存檔_bt.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.修改存檔_bt.Location = New System.Drawing.Point(1422, 41)
- Me.修改存檔_bt.Margin = New System.Windows.Forms.Padding(2, 5, 2, 5)
- Me.修改存檔_bt.Name = "修改存檔_bt"
- Me.修改存檔_bt.Size = New System.Drawing.Size(120, 47)
- Me.修改存檔_bt.TabIndex = 248
- Me.修改存檔_bt.Text = "儲存修改(&S)"
- Me.修改存檔_bt.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.修改存檔_bt.UseVisualStyleBackColor = True
- Me.修改存檔_bt.UseWaitCursor = True
- Me.修改存檔_bt.Visible = False
- '
- 'Label22
- '
- Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label22.AutoSize = True
- Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label22.Location = New System.Drawing.Point(1787, 3)
- Me.Label22.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(40, 16)
- Me.Label22.TabIndex = 312
- Me.Label22.Text = "选级 : "
- Me.Label22.UseWaitCursor = True
- '
- 'Label3
- '
- Me.Label3.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label3.Location = New System.Drawing.Point(1538, 24)
- Me.Label3.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(64, 16)
- Me.Label3.TabIndex = 314
- Me.Label3.Text = "流程卡号 : "
- Me.Label3.UseWaitCursor = True
- '
- 'Label11
- '
- Me.Label11.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label11.AutoSize = True
- Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label11.Location = New System.Drawing.Point(1690, 24)
- Me.Label11.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(40, 16)
- Me.Label11.TabIndex = 316
- Me.Label11.Text = "重量 : "
- Me.Label11.UseWaitCursor = True
- '
- 'Label24
- '
- Me.Label24.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label24.AutoSize = True
- Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label24.Location = New System.Drawing.Point(1787, 24)
- Me.Label24.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.Label24.Name = "Label24"
- Me.Label24.Size = New System.Drawing.Size(40, 16)
- Me.Label24.TabIndex = 317
- Me.Label24.Text = "平均 : "
- Me.Label24.UseWaitCursor = True
- '
- '建立日期_lb
- '
- Me.建立日期_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.建立日期_lb.AutoSize = True
- Me.建立日期_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.建立日期_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.建立日期_lb.Location = New System.Drawing.Point(1597, 3)
- Me.建立日期_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.建立日期_lb.Name = "建立日期_lb"
- Me.建立日期_lb.Size = New System.Drawing.Size(39, 16)
- Me.建立日期_lb.TabIndex = 318
- Me.建立日期_lb.Text = "XXXX"
- Me.建立日期_lb.UseWaitCursor = True
- '
- '流程卡号_lb
- '
- Me.流程卡号_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.流程卡号_lb.AutoSize = True
- Me.流程卡号_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.流程卡号_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.流程卡号_lb.Location = New System.Drawing.Point(1597, 24)
- Me.流程卡号_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.流程卡号_lb.Name = "流程卡号_lb"
- Me.流程卡号_lb.Size = New System.Drawing.Size(39, 16)
- Me.流程卡号_lb.TabIndex = 319
- Me.流程卡号_lb.Text = "XXXX"
- Me.流程卡号_lb.UseWaitCursor = True
- '
- '片数_lb
- '
- Me.片数_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.片数_lb.AutoSize = True
- Me.片数_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.片数_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.片数_lb.Location = New System.Drawing.Point(1725, 4)
- Me.片数_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.片数_lb.Name = "片数_lb"
- Me.片数_lb.Size = New System.Drawing.Size(39, 16)
- Me.片数_lb.TabIndex = 320
- Me.片数_lb.Text = "XXXX"
- Me.片数_lb.UseWaitCursor = True
- '
- '重量_lb
- '
- Me.重量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.重量_lb.AutoSize = True
- Me.重量_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.重量_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.重量_lb.Location = New System.Drawing.Point(1725, 25)
- Me.重量_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.重量_lb.Name = "重量_lb"
- Me.重量_lb.Size = New System.Drawing.Size(39, 16)
- Me.重量_lb.TabIndex = 321
- Me.重量_lb.Text = "XXXX"
- Me.重量_lb.UseWaitCursor = True
- '
- '选级_lb
- '
- Me.选级_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.选级_lb.AutoSize = True
- Me.选级_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.选级_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.选级_lb.Location = New System.Drawing.Point(1822, 3)
- Me.选级_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.选级_lb.Name = "选级_lb"
- Me.选级_lb.Size = New System.Drawing.Size(39, 16)
- Me.选级_lb.TabIndex = 322
- Me.选级_lb.Text = "XXXX"
- Me.选级_lb.UseWaitCursor = True
- '
- '平均_lb
- '
- Me.平均_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.平均_lb.AutoSize = True
- Me.平均_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.平均_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.平均_lb.Location = New System.Drawing.Point(1822, 24)
- Me.平均_lb.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
- Me.平均_lb.Name = "平均_lb"
- Me.平均_lb.Size = New System.Drawing.Size(39, 16)
- Me.平均_lb.TabIndex = 323
- Me.平均_lb.Text = "XXXX"
- Me.平均_lb.UseWaitCursor = True
- '
- 'Frm_00_Retan_rcp
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.AutoScroll = True
- Me.ClientSize = New System.Drawing.Size(1904, 1041)
- Me.Controls.Add(Me.平均_lb)
- Me.Controls.Add(Me.选级_lb)
- Me.Controls.Add(Me.重量_lb)
- Me.Controls.Add(Me.片数_lb)
- Me.Controls.Add(Me.流程卡号_lb)
- Me.Controls.Add(Me.建立日期_lb)
- Me.Controls.Add(Me.Label24)
- Me.Controls.Add(Me.處方_dgv)
- Me.Controls.Add(Me.Label11)
- Me.Controls.Add(Me.Label3)
- Me.Controls.Add(Me.Label22)
- Me.Controls.Add(Me.Panel3)
- Me.Controls.Add(Me.Panel2)
- Me.Controls.Add(Me.SplitContainer1)
- Me.Controls.Add(Me.ProgressBar1)
- Me.Controls.Add(Me.Panel1)
- Me.Controls.Add(Me.存檔_bt)
- Me.Controls.Add(Me.Label14)
- Me.Controls.Add(Me.GroupBox5)
- Me.Controls.Add(Me.刪除工藝_bt)
- Me.Controls.Add(Me.平均尺数_tb)
- Me.Controls.Add(Me.Label16)
- Me.Controls.Add(Me.模式通知_lb)
- Me.Controls.Add(Me.另存工藝_bt)
- Me.Controls.Add(Me.打印標籤_bt)
- Me.Controls.Add(Me.打印工藝_bt)
- Me.Controls.Add(Me.查詢_bt)
- Me.Controls.Add(Me.Label23)
- Me.Controls.Add(Me.領料_bt)
- Me.Controls.Add(Me.處方縮放_bt)
- Me.Controls.Add(Me.ListBox2)
- Me.Controls.Add(Me.ListBox4)
- Me.Controls.Add(Me.ListBox3)
- Me.Controls.Add(Me.計算_bt)
- Me.Controls.Add(Me.刪除一行_bt)
- Me.Controls.Add(Me.修改指定_bt)
- Me.Controls.Add(Me.插入一行_bt)
- Me.Controls.Add(Me.修改存檔_bt)
- Me.Controls.Add(Me.處方清單_dgv)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(4)
- Me.Name = "Frm_00_Retan_rcp"
- Me.Text = "染色工艺"
- Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
- Me.GroupBox5.ResumeLayout(False)
- Me.GroupBox5.PerformLayout()
- CType(Me.每尺合計_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.合計_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.GroupBox1.ResumeLayout(False)
- Me.GroupBox1.PerformLayout()
- Me.GroupBox4.ResumeLayout(False)
- CType(Me.dgv_record, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.dgv2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.處方_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.處方清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.dgv_chem_detail, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.dgv_cost, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel1.ResumeLayout(False)
- Me.Panel1.PerformLayout()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.SplitContainer1.Panel1.ResumeLayout(False)
- Me.SplitContainer1.Panel2.ResumeLayout(False)
- CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.SplitContainer1.ResumeLayout(False)
- Me.Panel2.ResumeLayout(False)
- Me.Panel3.ResumeLayout(False)
- Me.Panel3.PerformLayout()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents Label5 As Label
- Friend WithEvents Label6 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents Label8 As Label
- Friend WithEvents Label9 As Label
- Friend WithEvents Label10 As Label
- Friend WithEvents Label19 As Label
- Friend WithEvents Label28 As Label
- Friend WithEvents Label29 As Label
- Friend WithEvents 烤膠_bt As TextBox
- Friend WithEvents 助劑_tb As TextBox
- Friend WithEvents 染料_tb As TextBox
- Friend WithEvents 單寧_tb As TextBox
- Friend WithEvents 复鞣剂_tb As TextBox
- Friend WithEvents txtsize As TextBox
- Friend WithEvents Label12 As Label
- Friend WithEvents 丙烯酸_tb As TextBox
- Friend WithEvents 油脂_tb As TextBox
- Friend WithEvents txtwb_weight As TextBox
- Friend WithEvents Label4 As Label
- Friend WithEvents 存檔_bt As Button
- Friend WithEvents GroupBox5 As GroupBox
- Friend WithEvents RadioButtonDCS As RadioButton
- Friend WithEvents RadioButtonJD As RadioButton
- Friend WithEvents RadioButtonCW As RadioButton
- Friend WithEvents RadioButtonSM As RadioButton
- Friend WithEvents RadioButtonXJM As RadioButton
- Friend WithEvents RadioButtonZY As RadioButton
- Friend WithEvents RadioButtonHS As RadioButton
- Friend WithEvents RadioButtonYT As RadioButton
- Friend WithEvents RadioButtonDB As RadioButton
- Friend WithEvents RadioButtonHD As RadioButton
- Friend WithEvents 刪除工藝_bt As Button
- Friend WithEvents 平均尺数_tb As TextBox
- Friend WithEvents 另存工藝_bt As Button
- Friend WithEvents 每尺合計_dgv As DataGridView
- Friend WithEvents 打印標籤_bt As Button
- Friend WithEvents 合計_dgv As DataGridView
- Friend WithEvents 打印工藝_bt As Button
- Friend WithEvents 查詢_bt As Button
- Friend WithEvents GroupBox1 As GroupBox
- Friend WithEvents txtjc As TextBox
- Friend WithEvents txtsum As TextBox
- Friend WithEvents GroupBox4 As GroupBox
- Friend WithEvents dgv_record As DataGridView
- Friend WithEvents Label23 As Label
- Friend WithEvents 領料_bt As Button
- Friend WithEvents 開削_lb As Label
- Friend WithEvents ProgressBar1 As ProgressBar
- Friend WithEvents 品名_lb As Label
- Friend WithEvents dgv2 As DataGridView
- Friend WithEvents 處方_dgv As DataGridView
- Friend WithEvents 處方縮放_bt As Button
- Friend WithEvents ListBox2 As ListBox
- Friend WithEvents TXT_PID As TextBox
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents Button21 As Button
- Friend WithEvents dgv_chem_detail As DataGridView
- Friend WithEvents dgv_cost As DataGridView
- Friend WithEvents Button15 As Button
- Friend WithEvents Button14 As Button
- Friend WithEvents Button13 As Button
- Friend WithEvents Button12 As Button
- Friend WithEvents Button11 As Button
- Friend WithEvents TextBox4 As TextBox
- Friend WithEvents TextBox3 As TextBox
- Friend WithEvents TextBox2 As TextBox
- Friend WithEvents ListBox4 As ListBox
- Friend WithEvents ListBox3 As ListBox
- Friend WithEvents Button20 As Button
- Friend WithEvents 計算_bt As Button
- Friend WithEvents Button18 As Button
- Friend WithEvents Button17 As Button
- Friend WithEvents Button10 As Button
- Friend WithEvents DateTimePicker1 As DateTimePicker
- Friend WithEvents TextBox12 As TextBox
- Friend WithEvents cmdAddrcp As Button
- Friend WithEvents Button8 As Button
- Friend WithEvents 刪除一行_bt As Button
- Friend WithEvents 修改指定_bt As Button
- Friend WithEvents 插入一行_bt As Button
- Friend WithEvents 模式通知_lb As Label
- Friend WithEvents cmdcanceladd As Button
- Friend WithEvents Label2 As Label
- Friend WithEvents Label14 As Label
- Friend WithEvents Label15 As Label
- Friend WithEvents Label16 As Label
- Friend WithEvents 成本_bt As Button
- Friend WithEvents TextBox5 As TextBox
- Friend WithEvents cmdCancelEdit As Button
- Friend WithEvents 修改存檔_bt As Button
- Friend WithEvents Timer1 As Timer
- Friend WithEvents TextBox10 As TextBox
- Friend WithEvents Button24 As Button
- Friend WithEvents Panel1 As Panel
- Friend WithEvents SplitContainer1 As SplitContainer
- Friend WithEvents Panel2 As Panel
- Friend WithEvents 重新讀取_bt As Button
- Friend WithEvents Panel3 As Panel
- Friend WithEvents 系统代码_ch As CheckBox
- Friend WithEvents 系统品名_ch As CheckBox
- Friend WithEvents zdhc_code_ch As CheckBox
- Friend WithEvents 类别_ch As CheckBox
- Friend WithEvents 化工分类_ch As CheckBox
- Friend WithEvents 系统分类_ch As CheckBox
- Friend WithEvents 进货单价_ch As CheckBox
- Friend WithEvents 處方清單_dgv As DataGridView
- Friend WithEvents Label22 As Label
- Friend WithEvents Label3 As Label
- Friend WithEvents Label11 As Label
- Friend WithEvents Label24 As Label
- Friend WithEvents 建立日期_lb As Label
- Friend WithEvents 流程卡号_lb As Label
- Friend WithEvents 片数_lb As Label
- Friend WithEvents 重量_lb As Label
- Friend WithEvents 选级_lb As Label
- Friend WithEvents 平均_lb As Label
- End Class
|