123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class 車輛銷售管理
- 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 Form 設計工具的必要項
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下為 Windows Form 設計工具所需的程序
- '可以使用 Windows Form 設計工具進行修改。
- '請勿使用程式碼編輯器進行修改。
- <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()
- Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(車輛銷售管理))
- Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.控制表_dgv = New System.Windows.Forms.DataGridView()
- Me.明細表_dgv = New System.Windows.Forms.DataGridView()
- Me.單號_tb = New System.Windows.Forms.TextBox()
- Me.Label0 = New System.Windows.Forms.Label()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.廠牌_tb = New System.Windows.Forms.TextBox()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.年分_tb = New System.Windows.Forms.TextBox()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.引擎_tb = New System.Windows.Forms.TextBox()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.備註_tb = New System.Windows.Forms.TextBox()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.買入車主名稱_tb = New System.Windows.Forms.TextBox()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.買入顏色_tb = New System.Windows.Forms.TextBox()
- Me.label = New System.Windows.Forms.Label()
- Me.買入牌照號碼_tb = New System.Windows.Forms.TextBox()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.買入車主電話_tb = New System.Windows.Forms.TextBox()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.買入車主地址_tb = New System.Windows.Forms.TextBox()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.買入經手人_tb = New System.Windows.Forms.TextBox()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.進價_tb = New System.Windows.Forms.TextBox()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.賣出經手人_tb = New System.Windows.Forms.TextBox()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.售價_tb = New System.Windows.Forms.TextBox()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.賣出車主地址_tb = New System.Windows.Forms.TextBox()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.賣出車主電話_tb = New System.Windows.Forms.TextBox()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.賣出車主名稱_tb = New System.Windows.Forms.TextBox()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.賣出顏色_tb = New System.Windows.Forms.TextBox()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.賣出牌照號碼_tb = New System.Windows.Forms.TextBox()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.總成本_tb = New System.Windows.Forms.TextBox()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.支出合計_tb = New System.Windows.Forms.TextBox()
- Me.Label23 = New System.Windows.Forms.Label()
- Me.流水號_tb = New System.Windows.Forms.TextBox()
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.顯示成本_cb = New System.Windows.Forms.CheckBox()
- Me.選擇供應商_cb = New System.Windows.Forms.ComboBox()
- Me.Label25 = New System.Windows.Forms.Label()
- Me.物料_dgv = New System.Windows.Forms.DataGridView()
- Me.Panel2 = New System.Windows.Forms.Panel()
- Me.TextBox1 = New System.Windows.Forms.TextBox()
- Me.Label30 = New System.Windows.Forms.Label()
- Me.已交車_cb = New System.Windows.Forms.CheckBox()
- Me.利潤率 = New System.Windows.Forms.NumericUpDown()
- Me.GroupBox2 = New System.Windows.Forms.GroupBox()
- Me.Label32 = New System.Windows.Forms.Label()
- Me.出廠里程_tb = New System.Windows.Forms.TextBox()
- Me.賣出日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.查詢2_bt = New System.Windows.Forms.Button()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.GroupBox1 = New System.Windows.Forms.GroupBox()
- Me.Label31 = New System.Windows.Forms.Label()
- Me.進廠里程_tb = New System.Windows.Forms.TextBox()
- Me.買入日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.查詢1_bt = New System.Windows.Forms.Button()
- Me.總利潤_tb = New System.Windows.Forms.TextBox()
- Me.Label26 = New System.Windows.Forms.Label()
- Me.收支單中新增一筆資料_bt = New System.Windows.Forms.Button()
- Me.Panel3 = New System.Windows.Forms.Panel()
- Me.狀態_tb = New System.Windows.Forms.TextBox()
- Me.地址_tb = New System.Windows.Forms.TextBox()
- Me.庫存_dgv = New System.Windows.Forms.DataGridView()
- Me.料號1_tb = New System.Windows.Forms.TextBox()
- Me.公司名稱 = New System.Windows.Forms.TextBox()
- Me.供應商編號_tb = New System.Windows.Forms.TextBox()
- Me.Label27 = New System.Windows.Forms.Label()
- Me.成本 = New System.Windows.Forms.TextBox()
- Me.品名 = New System.Windows.Forms.TextBox()
- Me.庫存量1 = New System.Windows.Forms.TextBox()
- Me.Label24 = New System.Windows.Forms.Label()
- Me.料號_tb = New System.Windows.Forms.TextBox()
- Me.Label33 = New System.Windows.Forms.Label()
- Me.收支單中新增一筆空白資料_bt = New System.Windows.Forms.Button()
- Me.刪除選中的一筆資料_bt = New System.Windows.Forms.Button()
- Me.申請_bt = New System.Windows.Forms.Button()
- Me.檢測日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
- Me.選擇日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.Panel4 = New System.Windows.Forms.Panel()
- Me.Panel5 = New System.Windows.Forms.Panel()
- Me.Panel7 = New System.Windows.Forms.Panel()
- Me.註解4_tb = New System.Windows.Forms.TextBox()
- Me.註解3_tb = New System.Windows.Forms.TextBox()
- Me.註解2_tb = New System.Windows.Forms.TextBox()
- Me.註解1_tb = New System.Windows.Forms.TextBox()
- Me.明細表1_dgv = New System.Windows.Forms.DataGridView()
- Me.GroupBox4 = New System.Windows.Forms.GroupBox()
- Me.全部_tb = New System.Windows.Forms.TextBox()
- Me.Label57 = New System.Windows.Forms.Label()
- Me.Label58 = New System.Windows.Forms.Label()
- Me.總計_tb = New System.Windows.Forms.TextBox()
- Me.零件_tb = New System.Windows.Forms.TextBox()
- Me.Label40 = New System.Windows.Forms.Label()
- Me.工資_tb = New System.Windows.Forms.TextBox()
- Me.稅金_tb = New System.Windows.Forms.TextBox()
- Me.Label35 = New System.Windows.Forms.Label()
- Me.Label38 = New System.Windows.Forms.Label()
- Me.現金_tb = New System.Windows.Forms.TextBox()
- Me.信用卡_tb = New System.Windows.Forms.TextBox()
- Me.Label34 = New System.Windows.Forms.Label()
- Me.Label39 = New System.Windows.Forms.Label()
- Me.支票_tb = New System.Windows.Forms.TextBox()
- Me.應收合計_tb = New System.Windows.Forms.TextBox()
- Me.Label37 = New System.Windows.Forms.Label()
- Me.Label36 = New System.Windows.Forms.Label()
- Me.賒帳_tb = New System.Windows.Forms.TextBox()
- Me.GroupBox3 = New System.Windows.Forms.GroupBox()
- Me.隱藏成本_cb = New System.Windows.Forms.CheckBox()
- Me.年_tb = New System.Windows.Forms.TextBox()
- Me.Label45 = New System.Windows.Forms.Label()
- Me.Label46 = New System.Windows.Forms.Label()
- Me.輪胎尺寸_tb = New System.Windows.Forms.TextBox()
- Me.引擎號碼1_tb = New System.Windows.Forms.TextBox()
- Me.Label44 = New System.Windows.Forms.Label()
- Me.Label56 = New System.Windows.Forms.Label()
- Me.刪除選中的一筆資料1_bt = New System.Windows.Forms.Button()
- Me.申請1_bt = New System.Windows.Forms.Button()
- Me.收支單中新增一筆資料1_bt = New System.Windows.Forms.Button()
- Me.收支單中新增一筆空白資料1_bt = New System.Windows.Forms.Button()
- Me.Label55 = New System.Windows.Forms.Label()
- Me.Label54 = New System.Windows.Forms.Label()
- Me.Label53 = New System.Windows.Forms.Label()
- Me.Label52 = New System.Windows.Forms.Label()
- Me.Label50 = New System.Windows.Forms.Label()
- Me.Label43 = New System.Windows.Forms.Label()
- 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.車主名稱_tb = New System.Windows.Forms.TextBox()
- Me.Button2 = New System.Windows.Forms.Button()
- Me.入廠日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.里程_tb = New System.Windows.Forms.TextBox()
- Me.Panel6 = New System.Windows.Forms.Panel()
- Me.Button3 = New System.Windows.Forms.Button()
- Me.Label42 = New System.Windows.Forms.Label()
- Me.Button1 = New System.Windows.Forms.Button()
- Me.應驗車日_dtp = New System.Windows.Forms.DateTimePicker()
- Me.是否收稅_cb = New System.Windows.Forms.CheckBox()
- Me.Label41 = New System.Windows.Forms.Label()
- Me.出險公司_tb = New System.Windows.Forms.TextBox()
- Me.查詢物_bt = New System.Windows.Forms.Button()
- Me.匯出EXCEL_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.只顯示未付款_cb = New System.Windows.Forms.CheckBox()
- CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel1.SuspendLayout()
- CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel2.SuspendLayout()
- CType(Me.利潤率, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.GroupBox2.SuspendLayout()
- Me.GroupBox1.SuspendLayout()
- Me.Panel3.SuspendLayout()
- CType(Me.庫存_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel4.SuspendLayout()
- Me.Panel5.SuspendLayout()
- Me.Panel7.SuspendLayout()
- CType(Me.明細表1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.GroupBox4.SuspendLayout()
- Me.GroupBox3.SuspendLayout()
- Me.Panel6.SuspendLayout()
- Me.SuspendLayout()
- '
- '控制表_dgv
- '
- DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
- 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
- Me.控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.控制表_dgv.Location = New System.Drawing.Point(6, 87)
- Me.控制表_dgv.Margin = New System.Windows.Forms.Padding(4)
- Me.控制表_dgv.Name = "控制表_dgv"
- Me.控制表_dgv.ReadOnly = True
- Me.控制表_dgv.RowHeadersWidth = 5
- Me.控制表_dgv.RowTemplate.Height = 24
- Me.控制表_dgv.Size = New System.Drawing.Size(180, 764)
- Me.控制表_dgv.TabIndex = 959
- '
- '明細表_dgv
- '
- DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.明細表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
- Me.明細表_dgv.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.明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.明細表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.明細表_dgv.Location = New System.Drawing.Point(4, 224)
- Me.明細表_dgv.Margin = New System.Windows.Forms.Padding(4)
- Me.明細表_dgv.Name = "明細表_dgv"
- Me.明細表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle3
- Me.明細表_dgv.RowTemplate.Height = 24
- Me.明細表_dgv.Size = New System.Drawing.Size(1190, 560)
- Me.明細表_dgv.TabIndex = 960
- '
- '單號_tb
- '
- Me.單號_tb.Location = New System.Drawing.Point(453, 29)
- Me.單號_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.單號_tb.Name = "單號_tb"
- Me.單號_tb.ReadOnly = True
- Me.單號_tb.Size = New System.Drawing.Size(134, 23)
- Me.單號_tb.TabIndex = 1504
- Me.單號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label0
- '
- Me.Label0.AutoSize = True
- Me.Label0.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label0.Location = New System.Drawing.Point(390, 32)
- Me.Label0.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label0.Name = "Label0"
- Me.Label0.Size = New System.Drawing.Size(55, 16)
- Me.Label0.TabIndex = 1505
- Me.Label0.Text = "選擇單號"
- Me.Label0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label1
- '
- Me.Label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label1.AutoSize = True
- Me.Label1.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label1.Location = New System.Drawing.Point(11, 6)
- Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(52, 16)
- Me.Label1.TabIndex = 1671
- Me.Label1.Text = "廠 牌"
- '
- '廠牌_tb
- '
- Me.廠牌_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.廠牌_tb.Location = New System.Drawing.Point(70, 2)
- Me.廠牌_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.廠牌_tb.Name = "廠牌_tb"
- Me.廠牌_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.廠牌_tb.Size = New System.Drawing.Size(94, 23)
- Me.廠牌_tb.TabIndex = 1670
- '
- 'Label2
- '
- Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label2.AutoSize = True
- Me.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label2.Location = New System.Drawing.Point(11, 34)
- Me.Label2.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(55, 16)
- Me.Label2.TabIndex = 1673
- Me.Label2.Text = "年分型式"
- '
- '年分_tb
- '
- Me.年分_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.年分_tb.Location = New System.Drawing.Point(70, 27)
- Me.年分_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.年分_tb.Name = "年分_tb"
- Me.年分_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.年分_tb.Size = New System.Drawing.Size(94, 23)
- Me.年分_tb.TabIndex = 1672
- '
- '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.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label3.Location = New System.Drawing.Point(171, 6)
- Me.Label3.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(55, 16)
- Me.Label3.TabIndex = 1677
- Me.Label3.Text = "檢測日期"
- '
- 'Label4
- '
- Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label4.AutoSize = True
- Me.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label4.Location = New System.Drawing.Point(171, 34)
- Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(55, 16)
- Me.Label4.TabIndex = 1675
- Me.Label4.Text = "引擎號碼"
- '
- '引擎_tb
- '
- Me.引擎_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.引擎_tb.Location = New System.Drawing.Point(234, 27)
- Me.引擎_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.引擎_tb.Name = "引擎_tb"
- Me.引擎_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.引擎_tb.Size = New System.Drawing.Size(164, 23)
- Me.引擎_tb.TabIndex = 1674
- '
- 'Label5
- '
- Me.Label5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label5.AutoSize = True
- Me.Label5.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label5.Location = New System.Drawing.Point(367, 9)
- Me.Label5.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(31, 16)
- Me.Label5.TabIndex = 1680
- Me.Label5.Text = "備註"
- '
- '備註_tb
- '
- Me.備註_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.備註_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.備註_tb.Location = New System.Drawing.Point(406, 7)
- Me.備註_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.備註_tb.Multiline = True
- Me.備註_tb.Name = "備註_tb"
- Me.備註_tb.Size = New System.Drawing.Size(284, 43)
- Me.備註_tb.TabIndex = 1679
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label6.Location = New System.Drawing.Point(5, 20)
- Me.Label6.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(55, 16)
- Me.Label6.TabIndex = 1687
- Me.Label6.Text = "買入日期"
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label7.Location = New System.Drawing.Point(5, 45)
- Me.Label7.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(55, 16)
- Me.Label7.TabIndex = 1686
- Me.Label7.Text = "車主名稱"
- '
- '買入車主名稱_tb
- '
- Me.買入車主名稱_tb.Location = New System.Drawing.Point(60, 42)
- Me.買入車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入車主名稱_tb.Name = "買入車主名稱_tb"
- Me.買入車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入車主名稱_tb.Size = New System.Drawing.Size(86, 23)
- Me.買入車主名稱_tb.TabIndex = 1685
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label8.Location = New System.Drawing.Point(175, 21)
- Me.Label8.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(31, 16)
- Me.Label8.TabIndex = 1684
- Me.Label8.Text = "顏色"
- '
- '買入顏色_tb
- '
- Me.買入顏色_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.買入顏色_tb.Location = New System.Drawing.Point(210, 18)
- Me.買入顏色_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入顏色_tb.Name = "買入顏色_tb"
- Me.買入顏色_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入顏色_tb.Size = New System.Drawing.Size(656, 23)
- Me.買入顏色_tb.TabIndex = 1683
- '
- 'label
- '
- Me.label.AutoSize = True
- Me.label.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.label.Location = New System.Drawing.Point(150, 126)
- Me.label.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.label.Name = "label"
- Me.label.Size = New System.Drawing.Size(55, 16)
- Me.label.TabIndex = 1682
- Me.label.Text = "牌照號碼"
- '
- '買入牌照號碼_tb
- '
- Me.買入牌照號碼_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.買入牌照號碼_tb.Location = New System.Drawing.Point(205, 123)
- Me.買入牌照號碼_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入牌照號碼_tb.Name = "買入牌照號碼_tb"
- Me.買入牌照號碼_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入牌照號碼_tb.Size = New System.Drawing.Size(661, 23)
- Me.買入牌照號碼_tb.TabIndex = 1681
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label9.Location = New System.Drawing.Point(174, 49)
- Me.Label9.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(31, 16)
- Me.Label9.TabIndex = 1690
- Me.Label9.Text = "電話"
- '
- '買入車主電話_tb
- '
- Me.買入車主電話_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.買入車主電話_tb.Location = New System.Drawing.Point(205, 45)
- Me.買入車主電話_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入車主電話_tb.Name = "買入車主電話_tb"
- Me.買入車主電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入車主電話_tb.Size = New System.Drawing.Size(661, 23)
- Me.買入車主電話_tb.TabIndex = 1689
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label10.Location = New System.Drawing.Point(5, 70)
- Me.Label10.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(52, 16)
- Me.Label10.TabIndex = 1692
- Me.Label10.Text = "地 址"
- '
- '買入車主地址_tb
- '
- Me.買入車主地址_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.買入車主地址_tb.Location = New System.Drawing.Point(60, 67)
- Me.買入車主地址_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入車主地址_tb.Name = "買入車主地址_tb"
- Me.買入車主地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入車主地址_tb.Size = New System.Drawing.Size(806, 23)
- Me.買入車主地址_tb.TabIndex = 1691
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label11.Location = New System.Drawing.Point(160, 98)
- Me.Label11.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(43, 16)
- Me.Label11.TabIndex = 1696
- Me.Label11.Text = "經手人"
- '
- '買入經手人_tb
- '
- Me.買入經手人_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.買入經手人_tb.Location = New System.Drawing.Point(205, 95)
- Me.買入經手人_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.買入經手人_tb.Name = "買入經手人_tb"
- Me.買入經手人_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.買入經手人_tb.Size = New System.Drawing.Size(661, 23)
- Me.買入經手人_tb.TabIndex = 1695
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label12.Location = New System.Drawing.Point(5, 95)
- Me.Label12.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(52, 16)
- Me.Label12.TabIndex = 1694
- Me.Label12.Text = "進 價"
- '
- '進價_tb
- '
- Me.進價_tb.Location = New System.Drawing.Point(60, 92)
- Me.進價_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.進價_tb.Name = "進價_tb"
- Me.進價_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.進價_tb.Size = New System.Drawing.Size(84, 23)
- Me.進價_tb.TabIndex = 1693
- '
- 'Label13
- '
- Me.Label13.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label13.AutoSize = True
- Me.Label13.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label13.Location = New System.Drawing.Point(155, 99)
- Me.Label13.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(43, 16)
- Me.Label13.TabIndex = 1712
- Me.Label13.Text = "經手人"
- '
- '賣出經手人_tb
- '
- Me.賣出經手人_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出經手人_tb.Location = New System.Drawing.Point(197, 89)
- Me.賣出經手人_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出經手人_tb.Name = "賣出經手人_tb"
- Me.賣出經手人_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出經手人_tb.Size = New System.Drawing.Size(100, 23)
- Me.賣出經手人_tb.TabIndex = 1711
- '
- '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.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label14.Location = New System.Drawing.Point(5, 95)
- Me.Label14.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(52, 16)
- Me.Label14.TabIndex = 1710
- Me.Label14.Text = "售 價"
- '
- '售價_tb
- '
- Me.售價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.售價_tb.Location = New System.Drawing.Point(60, 91)
- Me.售價_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.售價_tb.Name = "售價_tb"
- Me.售價_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.售價_tb.Size = New System.Drawing.Size(81, 23)
- Me.售價_tb.TabIndex = 1709
- '
- 'Label15
- '
- Me.Label15.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label15.AutoSize = True
- Me.Label15.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label15.Location = New System.Drawing.Point(6, 71)
- Me.Label15.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(52, 16)
- Me.Label15.TabIndex = 1708
- Me.Label15.Text = "地 址"
- '
- '賣出車主地址_tb
- '
- Me.賣出車主地址_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出車主地址_tb.Location = New System.Drawing.Point(60, 67)
- Me.賣出車主地址_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出車主地址_tb.Name = "賣出車主地址_tb"
- Me.賣出車主地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出車主地址_tb.Size = New System.Drawing.Size(237, 23)
- Me.賣出車主地址_tb.TabIndex = 1707
- '
- '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.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label16.Location = New System.Drawing.Point(167, 47)
- Me.Label16.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(31, 16)
- Me.Label16.TabIndex = 1706
- Me.Label16.Text = "電話"
- '
- '賣出車主電話_tb
- '
- Me.賣出車主電話_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出車主電話_tb.Location = New System.Drawing.Point(197, 42)
- Me.賣出車主電話_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出車主電話_tb.Name = "賣出車主電話_tb"
- Me.賣出車主電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出車主電話_tb.Size = New System.Drawing.Size(100, 23)
- Me.賣出車主電話_tb.TabIndex = 1705
- '
- 'Label17
- '
- Me.Label17.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label17.AutoSize = True
- Me.Label17.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label17.Location = New System.Drawing.Point(5, 20)
- Me.Label17.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(55, 16)
- Me.Label17.TabIndex = 1703
- Me.Label17.Text = "賣出日期"
- '
- 'Label18
- '
- Me.Label18.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label18.AutoSize = True
- Me.Label18.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label18.Location = New System.Drawing.Point(5, 45)
- Me.Label18.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(55, 16)
- Me.Label18.TabIndex = 1702
- Me.Label18.Text = "車主名稱"
- '
- '賣出車主名稱_tb
- '
- Me.賣出車主名稱_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出車主名稱_tb.Location = New System.Drawing.Point(60, 42)
- Me.賣出車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出車主名稱_tb.Name = "賣出車主名稱_tb"
- Me.賣出車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出車主名稱_tb.Size = New System.Drawing.Size(81, 23)
- Me.賣出車主名稱_tb.TabIndex = 1701
- '
- 'Label19
- '
- Me.Label19.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label19.AutoSize = True
- Me.Label19.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label19.Location = New System.Drawing.Point(167, 18)
- Me.Label19.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(31, 16)
- Me.Label19.TabIndex = 1700
- Me.Label19.Text = "顏色"
- '
- '賣出顏色_tb
- '
- Me.賣出顏色_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出顏色_tb.Location = New System.Drawing.Point(197, 13)
- Me.賣出顏色_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出顏色_tb.Name = "賣出顏色_tb"
- Me.賣出顏色_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出顏色_tb.Size = New System.Drawing.Size(96, 23)
- Me.賣出顏色_tb.TabIndex = 1699
- '
- 'Label20
- '
- Me.Label20.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label20.AutoSize = True
- Me.Label20.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label20.Location = New System.Drawing.Point(143, 124)
- Me.Label20.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(55, 16)
- Me.Label20.TabIndex = 1698
- Me.Label20.Text = "牌照號碼"
- '
- '賣出牌照號碼_tb
- '
- Me.賣出牌照號碼_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出牌照號碼_tb.Location = New System.Drawing.Point(197, 117)
- Me.賣出牌照號碼_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賣出牌照號碼_tb.Name = "賣出牌照號碼_tb"
- Me.賣出牌照號碼_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賣出牌照號碼_tb.Size = New System.Drawing.Size(100, 23)
- Me.賣出牌照號碼_tb.TabIndex = 1697
- '
- 'Label21
- '
- Me.Label21.AutoSize = True
- Me.Label21.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label21.Location = New System.Drawing.Point(5, 169)
- Me.Label21.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(67, 16)
- Me.Label21.TabIndex = 1716
- Me.Label21.Text = "物料總成本"
- '
- '總成本_tb
- '
- Me.總成本_tb.Location = New System.Drawing.Point(78, 166)
- Me.總成本_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.總成本_tb.Name = "總成本_tb"
- Me.總成本_tb.ReadOnly = True
- Me.總成本_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.總成本_tb.Size = New System.Drawing.Size(75, 23)
- Me.總成本_tb.TabIndex = 1715
- '
- 'Label22
- '
- Me.Label22.AutoSize = True
- Me.Label22.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label22.Location = New System.Drawing.Point(156, 168)
- Me.Label22.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(67, 16)
- Me.Label22.TabIndex = 1714
- Me.Label22.Text = "物料總支出"
- '
- '支出合計_tb
- '
- Me.支出合計_tb.Location = New System.Drawing.Point(220, 167)
- Me.支出合計_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.支出合計_tb.Name = "支出合計_tb"
- Me.支出合計_tb.ReadOnly = True
- Me.支出合計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.支出合計_tb.Size = New System.Drawing.Size(96, 23)
- Me.支出合計_tb.TabIndex = 1713
- '
- 'Label23
- '
- Me.Label23.AutoSize = True
- Me.Label23.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label23.Location = New System.Drawing.Point(16, 16)
- Me.Label23.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label23.Name = "Label23"
- Me.Label23.Size = New System.Drawing.Size(55, 16)
- Me.Label23.TabIndex = 1721
- Me.Label23.Text = "選擇項次"
- '
- '流水號_tb
- '
- Me.流水號_tb.Location = New System.Drawing.Point(72, 13)
- Me.流水號_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.流水號_tb.Name = "流水號_tb"
- Me.流水號_tb.ReadOnly = True
- Me.流水號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.流水號_tb.Size = New System.Drawing.Size(88, 23)
- Me.流水號_tb.TabIndex = 1720
- '
- 'Panel1
- '
- Me.Panel1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Panel1.Controls.Add(Me.顯示成本_cb)
- Me.Panel1.Controls.Add(Me.選擇供應商_cb)
- Me.Panel1.Controls.Add(Me.Label25)
- Me.Panel1.Controls.Add(Me.物料_dgv)
- Me.Panel1.Location = New System.Drawing.Point(190, 59)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(480, 792)
- Me.Panel1.TabIndex = 1722
- '
- '顯示成本_cb
- '
- Me.顯示成本_cb.AutoSize = True
- Me.顯示成本_cb.Location = New System.Drawing.Point(215, 4)
- Me.顯示成本_cb.Name = "顯示成本_cb"
- Me.顯示成本_cb.Size = New System.Drawing.Size(74, 20)
- Me.顯示成本_cb.TabIndex = 1731
- Me.顯示成本_cb.Text = "顯示成本"
- Me.顯示成本_cb.UseVisualStyleBackColor = True
- '
- '選擇供應商_cb
- '
- Me.選擇供應商_cb.FormattingEnabled = True
- Me.選擇供應商_cb.Location = New System.Drawing.Point(78, 2)
- Me.選擇供應商_cb.Name = "選擇供應商_cb"
- Me.選擇供應商_cb.Size = New System.Drawing.Size(121, 24)
- Me.選擇供應商_cb.TabIndex = 1730
- '
- 'Label25
- '
- Me.Label25.AutoSize = True
- Me.Label25.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label25.Location = New System.Drawing.Point(4, 5)
- Me.Label25.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label25.Name = "Label25"
- Me.Label25.Size = New System.Drawing.Size(67, 16)
- Me.Label25.TabIndex = 1729
- Me.Label25.Text = "選擇供應商"
- '
- '物料_dgv
- '
- DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.物料_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
- Me.物料_dgv.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.物料_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.物料_dgv.BackgroundColor = System.Drawing.Color.White
- Me.物料_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.物料_dgv.Location = New System.Drawing.Point(1, 28)
- Me.物料_dgv.Margin = New System.Windows.Forms.Padding(4)
- Me.物料_dgv.Name = "物料_dgv"
- Me.物料_dgv.ReadOnly = True
- Me.物料_dgv.RowHeadersWidth = 5
- Me.物料_dgv.RowTemplate.Height = 24
- Me.物料_dgv.Size = New System.Drawing.Size(475, 764)
- Me.物料_dgv.TabIndex = 960
- '
- 'Panel2
- '
- Me.Panel2.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.Panel2.Controls.Add(Me.TextBox1)
- Me.Panel2.Controls.Add(Me.Label30)
- Me.Panel2.Controls.Add(Me.已交車_cb)
- Me.Panel2.Controls.Add(Me.利潤率)
- Me.Panel2.Controls.Add(Me.GroupBox2)
- Me.Panel2.Controls.Add(Me.Label28)
- Me.Panel2.Controls.Add(Me.GroupBox1)
- Me.Panel2.Controls.Add(Me.總利潤_tb)
- Me.Panel2.Controls.Add(Me.Label26)
- Me.Panel2.Controls.Add(Me.收支單中新增一筆資料_bt)
- Me.Panel2.Controls.Add(Me.Panel3)
- Me.Panel2.Controls.Add(Me.收支單中新增一筆空白資料_bt)
- Me.Panel2.Controls.Add(Me.總成本_tb)
- Me.Panel2.Controls.Add(Me.Label21)
- Me.Panel2.Controls.Add(Me.刪除選中的一筆資料_bt)
- Me.Panel2.Controls.Add(Me.申請_bt)
- Me.Panel2.Controls.Add(Me.支出合計_tb)
- Me.Panel2.Controls.Add(Me.Label22)
- Me.Panel2.Controls.Add(Me.明細表_dgv)
- Me.Panel2.Location = New System.Drawing.Point(673, 59)
- Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(1201, 792)
- Me.Panel2.TabIndex = 1724
- '
- 'TextBox1
- '
- Me.TextBox1.Location = New System.Drawing.Point(220, 194)
- Me.TextBox1.Margin = New System.Windows.Forms.Padding(4)
- Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.TextBox1.Size = New System.Drawing.Size(96, 23)
- Me.TextBox1.TabIndex = 1731
- '
- 'Label30
- '
- Me.Label30.AutoSize = True
- Me.Label30.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label30.Location = New System.Drawing.Point(169, 198)
- Me.Label30.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label30.Name = "Label30"
- Me.Label30.Size = New System.Drawing.Size(43, 16)
- Me.Label30.TabIndex = 1732
- Me.Label30.Text = "庫存量"
- '
- '已交車_cb
- '
- Me.已交車_cb.AutoSize = True
- Me.已交車_cb.Location = New System.Drawing.Point(364, 197)
- Me.已交車_cb.Name = "已交車_cb"
- Me.已交車_cb.Size = New System.Drawing.Size(62, 20)
- Me.已交車_cb.TabIndex = 1730
- Me.已交車_cb.Text = "已交車"
- Me.已交車_cb.UseVisualStyleBackColor = True
- '
- '利潤率
- '
- Me.利潤率.DecimalPlaces = 1
- Me.利潤率.Location = New System.Drawing.Point(78, 194)
- Me.利潤率.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
- Me.利潤率.Name = "利潤率"
- Me.利潤率.Size = New System.Drawing.Size(75, 23)
- Me.利潤率.TabIndex = 1729
- '
- 'GroupBox2
- '
- Me.GroupBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.GroupBox2.Controls.Add(Me.Label32)
- Me.GroupBox2.Controls.Add(Me.出廠里程_tb)
- Me.GroupBox2.Controls.Add(Me.賣出日期_dtp)
- Me.GroupBox2.Controls.Add(Me.查詢2_bt)
- Me.GroupBox2.Controls.Add(Me.Label20)
- Me.GroupBox2.Controls.Add(Me.賣出牌照號碼_tb)
- Me.GroupBox2.Controls.Add(Me.Label17)
- Me.GroupBox2.Controls.Add(Me.Label19)
- Me.GroupBox2.Controls.Add(Me.賣出顏色_tb)
- Me.GroupBox2.Controls.Add(Me.Label18)
- Me.GroupBox2.Controls.Add(Me.賣出車主名稱_tb)
- Me.GroupBox2.Controls.Add(Me.Label15)
- Me.GroupBox2.Controls.Add(Me.Label16)
- Me.GroupBox2.Controls.Add(Me.賣出車主電話_tb)
- Me.GroupBox2.Controls.Add(Me.賣出車主地址_tb)
- Me.GroupBox2.Controls.Add(Me.賣出經手人_tb)
- Me.GroupBox2.Controls.Add(Me.Label14)
- Me.GroupBox2.Controls.Add(Me.Label13)
- Me.GroupBox2.Controls.Add(Me.售價_tb)
- Me.GroupBox2.Location = New System.Drawing.Point(888, 7)
- Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(308, 152)
- Me.GroupBox2.TabIndex = 1727
- Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "賣出資料"
- '
- 'Label32
- '
- Me.Label32.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label32.AutoSize = True
- Me.Label32.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label32.Location = New System.Drawing.Point(5, 123)
- Me.Label32.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label32.Name = "Label32"
- Me.Label32.Size = New System.Drawing.Size(55, 16)
- Me.Label32.TabIndex = 1732
- Me.Label32.Text = "出廠里程"
- '
- '出廠里程_tb
- '
- Me.出廠里程_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.出廠里程_tb.Location = New System.Drawing.Point(60, 116)
- Me.出廠里程_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.出廠里程_tb.Name = "出廠里程_tb"
- Me.出廠里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.出廠里程_tb.Size = New System.Drawing.Size(81, 23)
- Me.出廠里程_tb.TabIndex = 1731
- '
- '賣出日期_dtp
- '
- Me.賣出日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.賣出日期_dtp.Location = New System.Drawing.Point(60, 17)
- Me.賣出日期_dtp.Name = "賣出日期_dtp"
- Me.賣出日期_dtp.Size = New System.Drawing.Size(100, 23)
- Me.賣出日期_dtp.TabIndex = 1730
- '
- '查詢2_bt
- '
- Me.查詢2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.查詢2_bt.BackgroundImage = CType(resources.GetObject("查詢2_bt.BackgroundImage"), System.Drawing.Image)
- Me.查詢2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.查詢2_bt.Location = New System.Drawing.Point(137, 43)
- Me.查詢2_bt.Name = "查詢2_bt"
- Me.查詢2_bt.Size = New System.Drawing.Size(23, 23)
- Me.查詢2_bt.TabIndex = 1726
- Me.查詢2_bt.UseVisualStyleBackColor = True
- '
- 'Label28
- '
- Me.Label28.AutoSize = True
- Me.Label28.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label28.Location = New System.Drawing.Point(5, 197)
- Me.Label28.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(62, 16)
- Me.Label28.TabIndex = 1728
- Me.Label28.Text = "利潤率(%)"
- '
- 'GroupBox1
- '
- Me.GroupBox1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.GroupBox1.Controls.Add(Me.Label31)
- Me.GroupBox1.Controls.Add(Me.進廠里程_tb)
- Me.GroupBox1.Controls.Add(Me.買入日期_dtp)
- Me.GroupBox1.Controls.Add(Me.查詢1_bt)
- Me.GroupBox1.Controls.Add(Me.買入車主名稱_tb)
- Me.GroupBox1.Controls.Add(Me.Label11)
- Me.GroupBox1.Controls.Add(Me.買入經手人_tb)
- Me.GroupBox1.Controls.Add(Me.Label12)
- Me.GroupBox1.Controls.Add(Me.進價_tb)
- Me.GroupBox1.Controls.Add(Me.買入車主電話_tb)
- Me.GroupBox1.Controls.Add(Me.Label9)
- Me.GroupBox1.Controls.Add(Me.Label6)
- Me.GroupBox1.Controls.Add(Me.Label7)
- Me.GroupBox1.Controls.Add(Me.Label8)
- Me.GroupBox1.Controls.Add(Me.買入顏色_tb)
- Me.GroupBox1.Controls.Add(Me.label)
- Me.GroupBox1.Controls.Add(Me.買入牌照號碼_tb)
- Me.GroupBox1.Controls.Add(Me.Label10)
- Me.GroupBox1.Controls.Add(Me.買入車主地址_tb)
- Me.GroupBox1.Location = New System.Drawing.Point(9, 4)
- Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(873, 152)
- Me.GroupBox1.TabIndex = 1727
- Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "買入資料"
- '
- 'Label31
- '
- Me.Label31.AutoSize = True
- Me.Label31.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label31.Location = New System.Drawing.Point(2, 123)
- Me.Label31.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label31.Name = "Label31"
- Me.Label31.Size = New System.Drawing.Size(55, 16)
- Me.Label31.TabIndex = 1731
- Me.Label31.Text = "進廠里程"
- '
- '進廠里程_tb
- '
- Me.進廠里程_tb.Location = New System.Drawing.Point(60, 120)
- Me.進廠里程_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.進廠里程_tb.Name = "進廠里程_tb"
- Me.進廠里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.進廠里程_tb.Size = New System.Drawing.Size(82, 23)
- Me.進廠里程_tb.TabIndex = 1730
- '
- '買入日期_dtp
- '
- Me.買入日期_dtp.Location = New System.Drawing.Point(61, 17)
- Me.買入日期_dtp.Name = "買入日期_dtp"
- Me.買入日期_dtp.Size = New System.Drawing.Size(114, 23)
- Me.買入日期_dtp.TabIndex = 1729
- '
- '查詢1_bt
- '
- Me.查詢1_bt.BackgroundImage = CType(resources.GetObject("查詢1_bt.BackgroundImage"), System.Drawing.Image)
- Me.查詢1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.查詢1_bt.Location = New System.Drawing.Point(150, 43)
- Me.查詢1_bt.Name = "查詢1_bt"
- Me.查詢1_bt.Size = New System.Drawing.Size(23, 23)
- Me.查詢1_bt.TabIndex = 1725
- Me.查詢1_bt.UseVisualStyleBackColor = True
- '
- '總利潤_tb
- '
- Me.總利潤_tb.Location = New System.Drawing.Point(364, 165)
- Me.總利潤_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.總利潤_tb.Name = "總利潤_tb"
- Me.總利潤_tb.ReadOnly = True
- Me.總利潤_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.總利潤_tb.Size = New System.Drawing.Size(96, 23)
- Me.總利潤_tb.TabIndex = 1726
- '
- 'Label26
- '
- Me.Label26.AutoSize = True
- Me.Label26.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label26.Location = New System.Drawing.Point(324, 167)
- Me.Label26.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label26.Name = "Label26"
- Me.Label26.Size = New System.Drawing.Size(43, 16)
- Me.Label26.TabIndex = 1727
- Me.Label26.Text = "總利潤"
- '
- '收支單中新增一筆資料_bt
- '
- Me.收支單中新增一筆資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
- Me.收支單中新增一筆資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.收支單中新增一筆資料_bt.ForeColor = System.Drawing.Color.Green
- Me.收支單中新增一筆資料_bt.Location = New System.Drawing.Point(480, 169)
- Me.收支單中新增一筆資料_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.收支單中新增一筆資料_bt.Name = "收支單中新增一筆資料_bt"
- Me.收支單中新增一筆資料_bt.Size = New System.Drawing.Size(40, 40)
- Me.收支單中新增一筆資料_bt.TabIndex = 1725
- Me.收支單中新增一筆資料_bt.UseVisualStyleBackColor = True
- '
- 'Panel3
- '
- Me.Panel3.Controls.Add(Me.狀態_tb)
- Me.Panel3.Controls.Add(Me.地址_tb)
- Me.Panel3.Controls.Add(Me.庫存_dgv)
- Me.Panel3.Controls.Add(Me.料號1_tb)
- Me.Panel3.Controls.Add(Me.公司名稱)
- Me.Panel3.Controls.Add(Me.供應商編號_tb)
- Me.Panel3.Controls.Add(Me.Label27)
- Me.Panel3.Controls.Add(Me.成本)
- Me.Panel3.Controls.Add(Me.品名)
- Me.Panel3.Controls.Add(Me.Label23)
- Me.Panel3.Controls.Add(Me.流水號_tb)
- Me.Panel3.Controls.Add(Me.庫存量1)
- Me.Panel3.Controls.Add(Me.Label24)
- Me.Panel3.Controls.Add(Me.料號_tb)
- Me.Panel3.Controls.Add(Me.Label33)
- Me.Panel3.Location = New System.Drawing.Point(84, 244)
- Me.Panel3.Name = "Panel3"
- Me.Panel3.Size = New System.Drawing.Size(458, 480)
- Me.Panel3.TabIndex = 1724
- Me.Panel3.Visible = False
- '
- '狀態_tb
- '
- Me.狀態_tb.Location = New System.Drawing.Point(50, 304)
- Me.狀態_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.狀態_tb.Name = "狀態_tb"
- Me.狀態_tb.ReadOnly = True
- Me.狀態_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.狀態_tb.Size = New System.Drawing.Size(131, 23)
- Me.狀態_tb.TabIndex = 1733
- '
- '地址_tb
- '
- Me.地址_tb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold)
- Me.地址_tb.Location = New System.Drawing.Point(50, 348)
- Me.地址_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.地址_tb.Name = "地址_tb"
- Me.地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.地址_tb.Size = New System.Drawing.Size(131, 29)
- Me.地址_tb.TabIndex = 1691
- '
- '庫存_dgv
- '
- DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.庫存_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
- 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
- Me.庫存_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.庫存_dgv.Location = New System.Drawing.Point(211, 13)
- Me.庫存_dgv.Margin = New System.Windows.Forms.Padding(4)
- Me.庫存_dgv.Name = "庫存_dgv"
- Me.庫存_dgv.ReadOnly = True
- Me.庫存_dgv.RowHeadersWidth = 5
- Me.庫存_dgv.RowTemplate.Height = 24
- Me.庫存_dgv.Size = New System.Drawing.Size(158, 453)
- Me.庫存_dgv.TabIndex = 1732
- '
- '料號1_tb
- '
- Me.料號1_tb.Location = New System.Drawing.Point(50, 273)
- Me.料號1_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.料號1_tb.Name = "料號1_tb"
- Me.料號1_tb.ReadOnly = True
- Me.料號1_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.料號1_tb.Size = New System.Drawing.Size(131, 23)
- Me.料號1_tb.TabIndex = 1731
- '
- '公司名稱
- '
- Me.公司名稱.Location = New System.Drawing.Point(50, 242)
- Me.公司名稱.Margin = New System.Windows.Forms.Padding(4)
- Me.公司名稱.Name = "公司名稱"
- Me.公司名稱.ReadOnly = True
- Me.公司名稱.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.公司名稱.Size = New System.Drawing.Size(131, 23)
- Me.公司名稱.TabIndex = 1730
- '
- '供應商編號_tb
- '
- Me.供應商編號_tb.Location = New System.Drawing.Point(50, 211)
- Me.供應商編號_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.供應商編號_tb.Name = "供應商編號_tb"
- Me.供應商編號_tb.ReadOnly = True
- Me.供應商編號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.供應商編號_tb.Size = New System.Drawing.Size(131, 23)
- Me.供應商編號_tb.TabIndex = 1729
- '
- 'Label27
- '
- Me.Label27.AutoSize = True
- Me.Label27.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label27.Location = New System.Drawing.Point(34, 191)
- Me.Label27.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label27.Name = "Label27"
- Me.Label27.Size = New System.Drawing.Size(167, 16)
- Me.Label27.TabIndex = 1728
- Me.Label27.Text = "售價 - ( 進價 + 買入總成本 ) ="
- '
- '成本
- '
- Me.成本.Location = New System.Drawing.Point(50, 145)
- Me.成本.Margin = New System.Windows.Forms.Padding(4)
- Me.成本.Name = "成本"
- Me.成本.ReadOnly = True
- Me.成本.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.成本.Size = New System.Drawing.Size(131, 23)
- Me.成本.TabIndex = 1725
- '
- '品名
- '
- Me.品名.Location = New System.Drawing.Point(50, 94)
- Me.品名.Margin = New System.Windows.Forms.Padding(4)
- Me.品名.Name = "品名"
- Me.品名.ReadOnly = True
- Me.品名.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.品名.Size = New System.Drawing.Size(131, 23)
- Me.品名.TabIndex = 1724
- '
- '庫存量1
- '
- Me.庫存量1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.庫存量1.Location = New System.Drawing.Point(98, 400)
- Me.庫存量1.Margin = New System.Windows.Forms.Padding(4)
- Me.庫存量1.Name = "庫存量1"
- Me.庫存量1.ReadOnly = True
- Me.庫存量1.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.庫存量1.Size = New System.Drawing.Size(85, 23)
- Me.庫存量1.TabIndex = 1731
- '
- 'Label24
- '
- Me.Label24.AutoSize = True
- Me.Label24.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label24.Location = New System.Drawing.Point(16, 52)
- Me.Label24.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label24.Name = "Label24"
- Me.Label24.Size = New System.Drawing.Size(31, 16)
- Me.Label24.TabIndex = 1723
- Me.Label24.Text = "料號"
- '
- '料號_tb
- '
- Me.料號_tb.Location = New System.Drawing.Point(50, 49)
- Me.料號_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.料號_tb.Name = "料號_tb"
- Me.料號_tb.ReadOnly = True
- Me.料號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.料號_tb.Size = New System.Drawing.Size(131, 23)
- Me.料號_tb.TabIndex = 1722
- '
- 'Label33
- '
- Me.Label33.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label33.AutoSize = True
- Me.Label33.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label33.Location = New System.Drawing.Point(47, 404)
- Me.Label33.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label33.Name = "Label33"
- Me.Label33.Size = New System.Drawing.Size(43, 16)
- Me.Label33.TabIndex = 1732
- Me.Label33.Text = "庫存量"
- '
- '收支單中新增一筆空白資料_bt
- '
- Me.收支單中新增一筆空白資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Edit_Text
- Me.收支單中新增一筆空白資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.收支單中新增一筆空白資料_bt.ForeColor = System.Drawing.Color.Green
- Me.收支單中新增一筆空白資料_bt.Location = New System.Drawing.Point(525, 169)
- Me.收支單中新增一筆空白資料_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.收支單中新增一筆空白資料_bt.Name = "收支單中新增一筆空白資料_bt"
- Me.收支單中新增一筆空白資料_bt.Size = New System.Drawing.Size(40, 40)
- Me.收支單中新增一筆空白資料_bt.TabIndex = 1718
- Me.收支單中新增一筆空白資料_bt.UseVisualStyleBackColor = True
- '
- '刪除選中的一筆資料_bt
- '
- Me.刪除選中的一筆資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Close
- Me.刪除選中的一筆資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.刪除選中的一筆資料_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除選中的一筆資料_bt.Location = New System.Drawing.Point(570, 169)
- Me.刪除選中的一筆資料_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.刪除選中的一筆資料_bt.Name = "刪除選中的一筆資料_bt"
- Me.刪除選中的一筆資料_bt.Size = New System.Drawing.Size(40, 40)
- Me.刪除選中的一筆資料_bt.TabIndex = 1719
- Me.刪除選中的一筆資料_bt.UseVisualStyleBackColor = True
- '
- '申請_bt
- '
- Me.申請_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Sendnow
- Me.申請_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.申請_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.申請_bt.Location = New System.Drawing.Point(615, 170)
- Me.申請_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.申請_bt.Name = "申請_bt"
- Me.申請_bt.Size = New System.Drawing.Size(40, 40)
- Me.申請_bt.TabIndex = 1717
- Me.申請_bt.UseVisualStyleBackColor = True
- '
- '檢測日期_dtp
- '
- Me.檢測日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.檢測日期_dtp.Location = New System.Drawing.Point(231, 4)
- Me.檢測日期_dtp.Name = "檢測日期_dtp"
- Me.檢測日期_dtp.Size = New System.Drawing.Size(132, 23)
- Me.檢測日期_dtp.TabIndex = 1728
- '
- 'ToolTip1
- '
- Me.ToolTip1.IsBalloon = True
- Me.ToolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info
- Me.ToolTip1.ToolTipTitle = "系統說明"
- '
- '選擇日期_dtp
- '
- Me.選擇日期_dtp.Location = New System.Drawing.Point(453, 6)
- Me.選擇日期_dtp.Name = "選擇日期_dtp"
- Me.選擇日期_dtp.Size = New System.Drawing.Size(134, 23)
- Me.選擇日期_dtp.TabIndex = 1731
- '
- 'Label29
- '
- Me.Label29.AutoSize = True
- Me.Label29.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label29.Location = New System.Drawing.Point(391, 7)
- Me.Label29.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(55, 16)
- Me.Label29.TabIndex = 1730
- Me.Label29.Text = "選擇日期"
- '
- 'Panel4
- '
- Me.Panel4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel4.Controls.Add(Me.Label1)
- Me.Panel4.Controls.Add(Me.廠牌_tb)
- Me.Panel4.Controls.Add(Me.年分_tb)
- Me.Panel4.Controls.Add(Me.Label2)
- Me.Panel4.Controls.Add(Me.檢測日期_dtp)
- Me.Panel4.Controls.Add(Me.引擎_tb)
- Me.Panel4.Controls.Add(Me.Label4)
- Me.Panel4.Controls.Add(Me.Label3)
- Me.Panel4.Controls.Add(Me.備註_tb)
- Me.Panel4.Controls.Add(Me.Label5)
- Me.Panel4.Location = New System.Drawing.Point(1178, 2)
- Me.Panel4.Name = "Panel4"
- Me.Panel4.Size = New System.Drawing.Size(696, 62)
- Me.Panel4.TabIndex = 1733
- '
- 'Panel5
- '
- Me.Panel5.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.Panel5.Controls.Add(Me.Panel7)
- Me.Panel5.Controls.Add(Me.明細表1_dgv)
- Me.Panel5.Controls.Add(Me.GroupBox4)
- Me.Panel5.Controls.Add(Me.GroupBox3)
- Me.Panel5.Location = New System.Drawing.Point(676, 62)
- Me.Panel5.Name = "Panel5"
- Me.Panel5.Size = New System.Drawing.Size(1198, 787)
- Me.Panel5.TabIndex = 1733
- '
- 'Panel7
- '
- Me.Panel7.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel7.Controls.Add(Me.註解4_tb)
- Me.Panel7.Controls.Add(Me.註解3_tb)
- Me.Panel7.Controls.Add(Me.註解2_tb)
- Me.Panel7.Controls.Add(Me.註解1_tb)
- Me.Panel7.Location = New System.Drawing.Point(671, 257)
- Me.Panel7.Name = "Panel7"
- Me.Panel7.Size = New System.Drawing.Size(424, 509)
- Me.Panel7.TabIndex = 1749
- Me.Panel7.Visible = False
- '
- '註解4_tb
- '
- Me.註解4_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.註解4_tb.Location = New System.Drawing.Point(54, 386)
- Me.註解4_tb.Multiline = True
- Me.註解4_tb.Name = "註解4_tb"
- Me.註解4_tb.Size = New System.Drawing.Size(329, 105)
- Me.註解4_tb.TabIndex = 7
- '
- '註解3_tb
- '
- Me.註解3_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.註解3_tb.Location = New System.Drawing.Point(54, 264)
- Me.註解3_tb.Multiline = True
- Me.註解3_tb.Name = "註解3_tb"
- Me.註解3_tb.Size = New System.Drawing.Size(329, 105)
- Me.註解3_tb.TabIndex = 6
- '
- '註解2_tb
- '
- Me.註解2_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.註解2_tb.Location = New System.Drawing.Point(54, 132)
- Me.註解2_tb.Multiline = True
- Me.註解2_tb.Name = "註解2_tb"
- Me.註解2_tb.Size = New System.Drawing.Size(329, 105)
- Me.註解2_tb.TabIndex = 5
- '
- '註解1_tb
- '
- Me.註解1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.註解1_tb.Location = New System.Drawing.Point(54, 12)
- Me.註解1_tb.Multiline = True
- Me.註解1_tb.Name = "註解1_tb"
- Me.註解1_tb.Size = New System.Drawing.Size(329, 105)
- Me.註解1_tb.TabIndex = 4
- '
- '明細表1_dgv
- '
- DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.明細表1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
- Me.明細表1_dgv.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.明細表1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.明細表1_dgv.BackgroundColor = System.Drawing.Color.White
- Me.明細表1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.明細表1_dgv.Location = New System.Drawing.Point(8, 195)
- Me.明細表1_dgv.Margin = New System.Windows.Forms.Padding(4)
- Me.明細表1_dgv.Name = "明細表1_dgv"
- Me.明細表1_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.明細表1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle7
- Me.明細表1_dgv.RowTemplate.Height = 24
- Me.明細表1_dgv.Size = New System.Drawing.Size(1187, 588)
- Me.明細表1_dgv.TabIndex = 960
- '
- 'GroupBox4
- '
- Me.GroupBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.GroupBox4.Controls.Add(Me.全部_tb)
- Me.GroupBox4.Controls.Add(Me.Label57)
- Me.GroupBox4.Controls.Add(Me.Label58)
- Me.GroupBox4.Controls.Add(Me.總計_tb)
- Me.GroupBox4.Controls.Add(Me.零件_tb)
- Me.GroupBox4.Controls.Add(Me.Label40)
- Me.GroupBox4.Controls.Add(Me.工資_tb)
- Me.GroupBox4.Controls.Add(Me.稅金_tb)
- Me.GroupBox4.Controls.Add(Me.Label35)
- Me.GroupBox4.Controls.Add(Me.Label38)
- Me.GroupBox4.Controls.Add(Me.現金_tb)
- Me.GroupBox4.Controls.Add(Me.信用卡_tb)
- Me.GroupBox4.Controls.Add(Me.Label34)
- Me.GroupBox4.Controls.Add(Me.Label39)
- Me.GroupBox4.Controls.Add(Me.支票_tb)
- Me.GroupBox4.Controls.Add(Me.應收合計_tb)
- Me.GroupBox4.Controls.Add(Me.Label37)
- Me.GroupBox4.Controls.Add(Me.Label36)
- Me.GroupBox4.Controls.Add(Me.賒帳_tb)
- Me.GroupBox4.Location = New System.Drawing.Point(935, 2)
- Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Size = New System.Drawing.Size(260, 189)
- Me.GroupBox4.TabIndex = 1748
- Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "金額"
- '
- '全部_tb
- '
- Me.全部_tb.Location = New System.Drawing.Point(96, 164)
- Me.全部_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.全部_tb.Name = "全部_tb"
- Me.全部_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.全部_tb.Size = New System.Drawing.Size(76, 23)
- Me.全部_tb.TabIndex = 1747
- Me.全部_tb.Visible = False
- '
- 'Label57
- '
- Me.Label57.AutoSize = True
- Me.Label57.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label57.Location = New System.Drawing.Point(8, 20)
- Me.Label57.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label57.Name = "Label57"
- Me.Label57.Size = New System.Drawing.Size(31, 16)
- Me.Label57.TabIndex = 1716
- Me.Label57.Text = "工資"
- '
- 'Label58
- '
- Me.Label58.AutoSize = True
- Me.Label58.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label58.Location = New System.Drawing.Point(133, 20)
- Me.Label58.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label58.Name = "Label58"
- Me.Label58.Size = New System.Drawing.Size(31, 16)
- Me.Label58.TabIndex = 1714
- Me.Label58.Text = "零件"
- '
- '總計_tb
- '
- Me.總計_tb.Location = New System.Drawing.Point(43, 48)
- Me.總計_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.總計_tb.Name = "總計_tb"
- Me.總計_tb.ReadOnly = True
- Me.總計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.總計_tb.Size = New System.Drawing.Size(209, 23)
- Me.總計_tb.TabIndex = 1745
- '
- '零件_tb
- '
- Me.零件_tb.Location = New System.Drawing.Point(168, 17)
- Me.零件_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.零件_tb.Name = "零件_tb"
- Me.零件_tb.ReadOnly = True
- Me.零件_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.零件_tb.Size = New System.Drawing.Size(84, 23)
- Me.零件_tb.TabIndex = 1713
- '
- 'Label40
- '
- Me.Label40.AutoSize = True
- Me.Label40.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label40.Location = New System.Drawing.Point(8, 51)
- Me.Label40.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label40.Name = "Label40"
- Me.Label40.Size = New System.Drawing.Size(31, 16)
- Me.Label40.TabIndex = 1746
- Me.Label40.Text = "總計"
- '
- '工資_tb
- '
- Me.工資_tb.Location = New System.Drawing.Point(43, 17)
- Me.工資_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.工資_tb.Name = "工資_tb"
- Me.工資_tb.ReadOnly = True
- Me.工資_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.工資_tb.Size = New System.Drawing.Size(76, 23)
- Me.工資_tb.TabIndex = 1715
- '
- '稅金_tb
- '
- Me.稅金_tb.Location = New System.Drawing.Point(43, 79)
- Me.稅金_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.稅金_tb.Name = "稅金_tb"
- Me.稅金_tb.ReadOnly = True
- Me.稅金_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.稅金_tb.Size = New System.Drawing.Size(76, 23)
- Me.稅金_tb.TabIndex = 1743
- '
- 'Label35
- '
- Me.Label35.AutoSize = True
- Me.Label35.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label35.Location = New System.Drawing.Point(133, 141)
- Me.Label35.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label35.Name = "Label35"
- Me.Label35.Size = New System.Drawing.Size(31, 16)
- Me.Label35.TabIndex = 1734
- Me.Label35.Text = "現金"
- '
- 'Label38
- '
- Me.Label38.AutoSize = True
- Me.Label38.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label38.Location = New System.Drawing.Point(8, 82)
- Me.Label38.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label38.Name = "Label38"
- Me.Label38.Size = New System.Drawing.Size(31, 16)
- Me.Label38.TabIndex = 1744
- Me.Label38.Text = "稅金"
- '
- '現金_tb
- '
- Me.現金_tb.Location = New System.Drawing.Point(168, 138)
- Me.現金_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.現金_tb.Name = "現金_tb"
- Me.現金_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.現金_tb.Size = New System.Drawing.Size(83, 23)
- Me.現金_tb.TabIndex = 1733
- '
- '信用卡_tb
- '
- Me.信用卡_tb.Location = New System.Drawing.Point(168, 79)
- Me.信用卡_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.信用卡_tb.Name = "信用卡_tb"
- Me.信用卡_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.信用卡_tb.Size = New System.Drawing.Size(84, 23)
- Me.信用卡_tb.TabIndex = 1741
- '
- 'Label34
- '
- Me.Label34.AutoSize = True
- Me.Label34.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label34.Location = New System.Drawing.Point(8, 141)
- Me.Label34.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label34.Name = "Label34"
- Me.Label34.Size = New System.Drawing.Size(31, 16)
- Me.Label34.TabIndex = 1736
- Me.Label34.Text = "支票"
- '
- 'Label39
- '
- Me.Label39.AutoSize = True
- Me.Label39.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label39.Location = New System.Drawing.Point(121, 82)
- Me.Label39.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label39.Name = "Label39"
- Me.Label39.Size = New System.Drawing.Size(43, 16)
- Me.Label39.TabIndex = 1742
- Me.Label39.Text = "信用卡"
- '
- '支票_tb
- '
- Me.支票_tb.Location = New System.Drawing.Point(43, 138)
- Me.支票_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.支票_tb.Name = "支票_tb"
- Me.支票_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.支票_tb.Size = New System.Drawing.Size(76, 23)
- Me.支票_tb.TabIndex = 1735
- '
- '應收合計_tb
- '
- Me.應收合計_tb.Location = New System.Drawing.Point(43, 110)
- Me.應收合計_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.應收合計_tb.Name = "應收合計_tb"
- Me.應收合計_tb.ReadOnly = True
- Me.應收合計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.應收合計_tb.Size = New System.Drawing.Size(76, 23)
- Me.應收合計_tb.TabIndex = 1739
- '
- 'Label37
- '
- Me.Label37.AutoSize = True
- Me.Label37.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label37.Location = New System.Drawing.Point(133, 113)
- Me.Label37.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label37.Name = "Label37"
- Me.Label37.Size = New System.Drawing.Size(31, 16)
- Me.Label37.TabIndex = 1738
- Me.Label37.Text = "賒帳"
- '
- 'Label36
- '
- Me.Label36.AutoSize = True
- Me.Label36.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label36.Location = New System.Drawing.Point(6, 113)
- Me.Label36.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label36.Name = "Label36"
- Me.Label36.Size = New System.Drawing.Size(31, 16)
- Me.Label36.TabIndex = 1740
- Me.Label36.Text = "合計"
- '
- '賒帳_tb
- '
- Me.賒帳_tb.Location = New System.Drawing.Point(168, 110)
- Me.賒帳_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.賒帳_tb.Name = "賒帳_tb"
- Me.賒帳_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.賒帳_tb.Size = New System.Drawing.Size(83, 23)
- Me.賒帳_tb.TabIndex = 1737
- '
- 'GroupBox3
- '
- Me.GroupBox3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.GroupBox3.Controls.Add(Me.隱藏成本_cb)
- Me.GroupBox3.Controls.Add(Me.年_tb)
- Me.GroupBox3.Controls.Add(Me.Label45)
- Me.GroupBox3.Controls.Add(Me.Label46)
- Me.GroupBox3.Controls.Add(Me.輪胎尺寸_tb)
- Me.GroupBox3.Controls.Add(Me.引擎號碼1_tb)
- Me.GroupBox3.Controls.Add(Me.Label44)
- Me.GroupBox3.Controls.Add(Me.Label56)
- Me.GroupBox3.Controls.Add(Me.刪除選中的一筆資料1_bt)
- Me.GroupBox3.Controls.Add(Me.申請1_bt)
- Me.GroupBox3.Controls.Add(Me.收支單中新增一筆資料1_bt)
- Me.GroupBox3.Controls.Add(Me.收支單中新增一筆空白資料1_bt)
- Me.GroupBox3.Controls.Add(Me.Label55)
- Me.GroupBox3.Controls.Add(Me.Label54)
- Me.GroupBox3.Controls.Add(Me.Label53)
- Me.GroupBox3.Controls.Add(Me.Label52)
- Me.GroupBox3.Controls.Add(Me.Label50)
- Me.GroupBox3.Controls.Add(Me.Label43)
- Me.GroupBox3.Controls.Add(Me.車號_tb)
- Me.GroupBox3.Controls.Add(Me.電話_tb)
- Me.GroupBox3.Controls.Add(Me.車型_tb)
- Me.GroupBox3.Controls.Add(Me.保養預示_tb)
- Me.GroupBox3.Controls.Add(Me.車主名稱_tb)
- Me.GroupBox3.Controls.Add(Me.Button2)
- Me.GroupBox3.Controls.Add(Me.入廠日期_dtp)
- Me.GroupBox3.Controls.Add(Me.里程_tb)
- Me.GroupBox3.Location = New System.Drawing.Point(0, 0)
- Me.GroupBox3.Name = "GroupBox3"
- Me.GroupBox3.Size = New System.Drawing.Size(934, 191)
- Me.GroupBox3.TabIndex = 1747
- Me.GroupBox3.TabStop = False
- Me.GroupBox3.Text = " 基本資料"
- '
- '隱藏成本_cb
- '
- Me.隱藏成本_cb.AutoSize = True
- Me.隱藏成本_cb.Location = New System.Drawing.Point(191, 155)
- Me.隱藏成本_cb.Name = "隱藏成本_cb"
- Me.隱藏成本_cb.Size = New System.Drawing.Size(74, 20)
- Me.隱藏成本_cb.TabIndex = 1746
- Me.隱藏成本_cb.Text = "隱藏成本"
- Me.隱藏成本_cb.UseVisualStyleBackColor = True
- '
- '年_tb
- '
- Me.年_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- 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(282, 92)
- Me.年_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.年_tb.Name = "年_tb"
- Me.年_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.年_tb.Size = New System.Drawing.Size(644, 23)
- Me.年_tb.TabIndex = 1744
- '
- 'Label45
- '
- Me.Label45.AutoSize = True
- Me.Label45.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label45.Location = New System.Drawing.Point(234, 97)
- Me.Label45.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label45.Name = "Label45"
- Me.Label45.Size = New System.Drawing.Size(31, 16)
- Me.Label45.TabIndex = 1745
- Me.Label45.Text = "年份"
- '
- 'Label46
- '
- Me.Label46.AutoSize = True
- Me.Label46.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label46.Location = New System.Drawing.Point(5, 67)
- Me.Label46.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label46.Name = "Label46"
- Me.Label46.Size = New System.Drawing.Size(55, 16)
- Me.Label46.TabIndex = 1743
- Me.Label46.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(71, 61)
- Me.輪胎尺寸_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.輪胎尺寸_tb.Name = "輪胎尺寸_tb"
- Me.輪胎尺寸_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.輪胎尺寸_tb.Size = New System.Drawing.Size(138, 23)
- Me.輪胎尺寸_tb.TabIndex = 1742
- '
- '引擎號碼1_tb
- '
- Me.引擎號碼1_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.引擎號碼1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.引擎號碼1_tb.Location = New System.Drawing.Point(280, 119)
- Me.引擎號碼1_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.引擎號碼1_tb.Name = "引擎號碼1_tb"
- Me.引擎號碼1_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.引擎號碼1_tb.Size = New System.Drawing.Size(644, 23)
- Me.引擎號碼1_tb.TabIndex = 1740
- '
- 'Label44
- '
- Me.Label44.AutoSize = True
- Me.Label44.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label44.Location = New System.Drawing.Point(210, 122)
- Me.Label44.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label44.Name = "Label44"
- Me.Label44.Size = New System.Drawing.Size(55, 16)
- Me.Label44.TabIndex = 1741
- Me.Label44.Text = "引擎號碼"
- '
- 'Label56
- '
- Me.Label56.AutoSize = True
- Me.Label56.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label56.Location = New System.Drawing.Point(5, 41)
- Me.Label56.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label56.Name = "Label56"
- Me.Label56.Size = New System.Drawing.Size(55, 16)
- Me.Label56.TabIndex = 1739
- Me.Label56.Text = "入廠日期"
- '
- '刪除選中的一筆資料1_bt
- '
- Me.刪除選中的一筆資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Close
- Me.刪除選中的一筆資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.刪除選中的一筆資料1_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除選中的一筆資料1_bt.Location = New System.Drawing.Point(96, 145)
- Me.刪除選中的一筆資料1_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.刪除選中的一筆資料1_bt.Name = "刪除選中的一筆資料1_bt"
- Me.刪除選中的一筆資料1_bt.Size = New System.Drawing.Size(40, 40)
- Me.刪除選中的一筆資料1_bt.TabIndex = 1719
- Me.刪除選中的一筆資料1_bt.UseVisualStyleBackColor = True
- '
- '申請1_bt
- '
- Me.申請1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Sendnow
- Me.申請1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.申請1_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.申請1_bt.Location = New System.Drawing.Point(141, 145)
- Me.申請1_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.申請1_bt.Name = "申請1_bt"
- Me.申請1_bt.Size = New System.Drawing.Size(40, 40)
- Me.申請1_bt.TabIndex = 1717
- Me.申請1_bt.UseVisualStyleBackColor = True
- '
- '收支單中新增一筆資料1_bt
- '
- Me.收支單中新增一筆資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
- Me.收支單中新增一筆資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.收支單中新增一筆資料1_bt.ForeColor = System.Drawing.Color.Green
- Me.收支單中新增一筆資料1_bt.Location = New System.Drawing.Point(7, 144)
- Me.收支單中新增一筆資料1_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.收支單中新增一筆資料1_bt.Name = "收支單中新增一筆資料1_bt"
- Me.收支單中新增一筆資料1_bt.Size = New System.Drawing.Size(40, 40)
- Me.收支單中新增一筆資料1_bt.TabIndex = 1725
- Me.收支單中新增一筆資料1_bt.UseVisualStyleBackColor = True
- '
- '收支單中新增一筆空白資料1_bt
- '
- Me.收支單中新增一筆空白資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Edit_Text
- Me.收支單中新增一筆空白資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.收支單中新增一筆空白資料1_bt.ForeColor = System.Drawing.Color.Green
- Me.收支單中新增一筆空白資料1_bt.Location = New System.Drawing.Point(52, 144)
- Me.收支單中新增一筆空白資料1_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.收支單中新增一筆空白資料1_bt.Name = "收支單中新增一筆空白資料1_bt"
- Me.收支單中新增一筆空白資料1_bt.Size = New System.Drawing.Size(40, 40)
- Me.收支單中新增一筆空白資料1_bt.TabIndex = 1718
- Me.收支單中新增一筆空白資料1_bt.UseVisualStyleBackColor = True
- '
- 'Label55
- '
- Me.Label55.AutoSize = True
- Me.Label55.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label55.Location = New System.Drawing.Point(4, 92)
- Me.Label55.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label55.Name = "Label55"
- Me.Label55.Size = New System.Drawing.Size(83, 16)
- Me.Label55.TabIndex = 1738
- Me.Label55.Text = "進廠里程(KM)"
- '
- 'Label54
- '
- Me.Label54.AutoSize = True
- Me.Label54.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label54.Location = New System.Drawing.Point(4, 119)
- Me.Label54.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label54.Name = "Label54"
- Me.Label54.Size = New System.Drawing.Size(83, 16)
- Me.Label54.TabIndex = 1737
- Me.Label54.Text = "保養預示(KM)"
- '
- 'Label53
- '
- Me.Label53.AutoSize = True
- Me.Label53.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label53.Location = New System.Drawing.Point(234, 18)
- Me.Label53.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label53.Name = "Label53"
- Me.Label53.Size = New System.Drawing.Size(31, 16)
- Me.Label53.TabIndex = 1736
- Me.Label53.Text = "車號"
- '
- 'Label52
- '
- Me.Label52.AutoSize = True
- Me.Label52.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label52.Location = New System.Drawing.Point(234, 42)
- Me.Label52.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label52.Name = "Label52"
- Me.Label52.Size = New System.Drawing.Size(31, 16)
- Me.Label52.TabIndex = 1735
- Me.Label52.Text = "電話"
- '
- 'Label50
- '
- Me.Label50.AutoSize = True
- Me.Label50.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label50.Location = New System.Drawing.Point(234, 69)
- Me.Label50.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label50.Name = "Label50"
- Me.Label50.Size = New System.Drawing.Size(31, 16)
- Me.Label50.TabIndex = 1734
- Me.Label50.Text = "車型"
- '
- 'Label43
- '
- Me.Label43.AutoSize = True
- Me.Label43.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label43.Location = New System.Drawing.Point(5, 18)
- Me.Label43.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label43.Name = "Label43"
- Me.Label43.Size = New System.Drawing.Size(55, 16)
- Me.Label43.TabIndex = 1732
- Me.Label43.Text = "車主名稱"
- '
- '車號_tb
- '
- Me.車號_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- 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(281, 11)
- Me.車號_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.車號_tb.Name = "車號_tb"
- Me.車號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.車號_tb.Size = New System.Drawing.Size(646, 23)
- Me.車號_tb.TabIndex = 1681
- '
- '電話_tb
- '
- Me.電話_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- 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(283, 38)
- Me.電話_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.電話_tb.Name = "電話_tb"
- Me.電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.電話_tb.Size = New System.Drawing.Size(644, 23)
- Me.電話_tb.TabIndex = 1689
- '
- '車型_tb
- '
- Me.車型_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- 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(283, 65)
- Me.車型_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.車型_tb.Name = "車型_tb"
- Me.車型_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.車型_tb.Size = New System.Drawing.Size(644, 23)
- Me.車型_tb.TabIndex = 1693
- '
- '保養預示_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(95, 115)
- Me.保養預示_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.保養預示_tb.Name = "保養預示_tb"
- Me.保養預示_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.保養預示_tb.Size = New System.Drawing.Size(113, 23)
- Me.保養預示_tb.TabIndex = 1695
- '
- '車主名稱_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(70, 11)
- Me.車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.車主名稱_tb.Name = "車主名稱_tb"
- Me.車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.車主名稱_tb.Size = New System.Drawing.Size(114, 23)
- Me.車主名稱_tb.TabIndex = 1685
- '
- 'Button2
- '
- Me.Button2.BackgroundImage = CType(resources.GetObject("Button2.BackgroundImage"), System.Drawing.Image)
- Me.Button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.Button2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold)
- Me.Button2.Location = New System.Drawing.Point(191, 7)
- Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(28, 29)
- Me.Button2.TabIndex = 1725
- Me.Button2.UseVisualStyleBackColor = True
- '
- '入廠日期_dtp
- '
- Me.入廠日期_dtp.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.入廠日期_dtp.Location = New System.Drawing.Point(70, 36)
- Me.入廠日期_dtp.Name = "入廠日期_dtp"
- Me.入廠日期_dtp.Size = New System.Drawing.Size(142, 23)
- Me.入廠日期_dtp.TabIndex = 1729
- '
- '里程_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(95, 88)
- Me.里程_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.里程_tb.Name = "里程_tb"
- Me.里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.里程_tb.Size = New System.Drawing.Size(115, 23)
- Me.里程_tb.TabIndex = 1730
- '
- 'Panel6
- '
- Me.Panel6.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel6.Controls.Add(Me.Button3)
- Me.Panel6.Controls.Add(Me.Label42)
- Me.Panel6.Controls.Add(Me.Button1)
- Me.Panel6.Controls.Add(Me.應驗車日_dtp)
- Me.Panel6.Controls.Add(Me.是否收稅_cb)
- Me.Panel6.Controls.Add(Me.Label41)
- Me.Panel6.Controls.Add(Me.出險公司_tb)
- Me.Panel6.Location = New System.Drawing.Point(1448, 1)
- Me.Panel6.Name = "Panel6"
- Me.Panel6.Size = New System.Drawing.Size(426, 62)
- Me.Panel6.TabIndex = 1734
- '
- 'Button3
- '
- Me.Button3.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
- Me.Button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.Button3.Location = New System.Drawing.Point(273, 7)
- Me.Button3.Name = "Button3"
- Me.Button3.Size = New System.Drawing.Size(50, 50)
- Me.Button3.TabIndex = 1733
- Me.Button3.UseVisualStyleBackColor = True
- '
- 'Label42
- '
- Me.Label42.AutoSize = True
- Me.Label42.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label42.Location = New System.Drawing.Point(4, 12)
- Me.Label42.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label42.Name = "Label42"
- Me.Label42.Size = New System.Drawing.Size(55, 16)
- Me.Label42.TabIndex = 1730
- Me.Label42.Text = "應驗車日"
- '
- 'Button1
- '
- Me.Button1.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
- Me.Button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.Button1.Location = New System.Drawing.Point(328, 7)
- Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(50, 50)
- Me.Button1.TabIndex = 1732
- Me.Button1.UseVisualStyleBackColor = True
- '
- '應驗車日_dtp
- '
- Me.應驗車日_dtp.Location = New System.Drawing.Point(66, 7)
- Me.應驗車日_dtp.Name = "應驗車日_dtp"
- Me.應驗車日_dtp.Size = New System.Drawing.Size(119, 23)
- Me.應驗車日_dtp.TabIndex = 1731
- '
- '是否收稅_cb
- '
- Me.是否收稅_cb.AutoSize = True
- Me.是否收稅_cb.Location = New System.Drawing.Point(199, 15)
- Me.是否收稅_cb.Name = "是否收稅_cb"
- Me.是否收稅_cb.Size = New System.Drawing.Size(74, 20)
- Me.是否收稅_cb.TabIndex = 1672
- Me.是否收稅_cb.Text = "是否收稅"
- Me.是否收稅_cb.UseVisualStyleBackColor = True
- '
- 'Label41
- '
- Me.Label41.AutoSize = True
- Me.Label41.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label41.Location = New System.Drawing.Point(4, 39)
- Me.Label41.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label41.Name = "Label41"
- Me.Label41.Size = New System.Drawing.Size(55, 16)
- Me.Label41.TabIndex = 1671
- Me.Label41.Text = "出險公司"
- '
- '出險公司_tb
- '
- Me.出險公司_tb.Location = New System.Drawing.Point(63, 35)
- Me.出險公司_tb.Margin = New System.Windows.Forms.Padding(4)
- Me.出險公司_tb.Name = "出險公司_tb"
- Me.出險公司_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.出險公司_tb.Size = New System.Drawing.Size(129, 23)
- Me.出險公司_tb.TabIndex = 1670
- '
- '查詢物_bt
- '
- Me.查詢物_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Search
- Me.查詢物_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.查詢物_bt.Location = New System.Drawing.Point(333, 2)
- Me.查詢物_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.查詢物_bt.Name = "查詢物_bt"
- Me.查詢物_bt.Size = New System.Drawing.Size(50, 50)
- Me.查詢物_bt.TabIndex = 1735
- Me.查詢物_bt.UseVisualStyleBackColor = True
- '
- '匯出EXCEL_bt
- '
- Me.匯出EXCEL_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.print
- Me.匯出EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.匯出EXCEL_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯出EXCEL_bt.ForeColor = System.Drawing.Color.Red
- Me.匯出EXCEL_bt.Location = New System.Drawing.Point(275, 0)
- Me.匯出EXCEL_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.匯出EXCEL_bt.Name = "匯出EXCEL_bt"
- Me.匯出EXCEL_bt.Size = New System.Drawing.Size(50, 50)
- Me.匯出EXCEL_bt.TabIndex = 1729
- Me.匯出EXCEL_bt.UseVisualStyleBackColor = True
- '
- '確認新增_bt
- '
- Me.確認新增_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER2
- Me.確認新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.確認新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.確認新增_bt.ForeColor = System.Drawing.Color.Blue
- Me.確認新增_bt.Location = New System.Drawing.Point(110, 0)
- Me.確認新增_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.確認新增_bt.Name = "確認新增_bt"
- Me.確認新增_bt.Size = New System.Drawing.Size(50, 50)
- Me.確認新增_bt.TabIndex = 1669
- Me.確認新增_bt.UseVisualStyleBackColor = True
- '
- '查詢_bt
- '
- Me.查詢_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.下載
- Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- 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(0, 0)
- Me.查詢_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.查詢_bt.Name = "查詢_bt"
- Me.查詢_bt.Size = New System.Drawing.Size(50, 50)
- Me.查詢_bt.TabIndex = 1668
- Me.查詢_bt.UseVisualStyleBackColor = True
- '
- '刪除_bt
- '
- Me.刪除_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.GarbageEmpty
- Me.刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除_bt.Location = New System.Drawing.Point(220, 0)
- Me.刪除_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.刪除_bt.Name = "刪除_bt"
- Me.刪除_bt.Size = New System.Drawing.Size(50, 50)
- Me.刪除_bt.TabIndex = 1667
- Me.刪除_bt.UseVisualStyleBackColor = True
- '
- '新增_bt
- '
- Me.新增_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.add_2
- Me.新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.新增_bt.ForeColor = System.Drawing.Color.Blue
- Me.新增_bt.Location = New System.Drawing.Point(55, 0)
- Me.新增_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.新增_bt.Name = "新增_bt"
- Me.新增_bt.Size = New System.Drawing.Size(50, 50)
- Me.新增_bt.TabIndex = 1665
- Me.新增_bt.UseVisualStyleBackColor = True
- '
- '修改_bt
- '
- Me.修改_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
- Me.修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.修改_bt.ForeColor = System.Drawing.Color.DarkGreen
- Me.修改_bt.Location = New System.Drawing.Point(165, 0)
- Me.修改_bt.Margin = New System.Windows.Forms.Padding(4)
- Me.修改_bt.Name = "修改_bt"
- Me.修改_bt.Size = New System.Drawing.Size(50, 50)
- Me.修改_bt.TabIndex = 1666
- Me.修改_bt.UseVisualStyleBackColor = True
- '
- '只顯示未付款_cb
- '
- Me.只顯示未付款_cb.AutoSize = True
- Me.只顯示未付款_cb.Location = New System.Drawing.Point(44, 61)
- Me.只顯示未付款_cb.Name = "只顯示未付款_cb"
- Me.只顯示未付款_cb.Size = New System.Drawing.Size(98, 20)
- Me.只顯示未付款_cb.TabIndex = 1736
- Me.只顯示未付款_cb.Text = "只顯示未付款"
- Me.只顯示未付款_cb.UseVisualStyleBackColor = True
- '
- '車輛銷售管理
- '
- 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(1884, 861)
- Me.Controls.Add(Me.只顯示未付款_cb)
- Me.Controls.Add(Me.查詢物_bt)
- Me.Controls.Add(Me.選擇日期_dtp)
- Me.Controls.Add(Me.Label29)
- Me.Controls.Add(Me.匯出EXCEL_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.修改_bt)
- Me.Controls.Add(Me.Label0)
- Me.Controls.Add(Me.單號_tb)
- Me.Controls.Add(Me.控制表_dgv)
- Me.Controls.Add(Me.Panel1)
- Me.Controls.Add(Me.Panel6)
- Me.Controls.Add(Me.Panel4)
- Me.Controls.Add(Me.Panel5)
- Me.Controls.Add(Me.Panel2)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(4)
- Me.Name = "車輛銷售管理"
- Me.Text = "車輛銷售管理"
- CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel1.ResumeLayout(False)
- Me.Panel1.PerformLayout()
- CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel2.ResumeLayout(False)
- Me.Panel2.PerformLayout()
- CType(Me.利潤率, System.ComponentModel.ISupportInitialize).EndInit()
- Me.GroupBox2.ResumeLayout(False)
- Me.GroupBox2.PerformLayout()
- Me.GroupBox1.ResumeLayout(False)
- Me.GroupBox1.PerformLayout()
- Me.Panel3.ResumeLayout(False)
- Me.Panel3.PerformLayout()
- CType(Me.庫存_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel4.ResumeLayout(False)
- Me.Panel4.PerformLayout()
- Me.Panel5.ResumeLayout(False)
- Me.Panel7.ResumeLayout(False)
- Me.Panel7.PerformLayout()
- CType(Me.明細表1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.GroupBox4.ResumeLayout(False)
- Me.GroupBox4.PerformLayout()
- Me.GroupBox3.ResumeLayout(False)
- Me.GroupBox3.PerformLayout()
- Me.Panel6.ResumeLayout(False)
- Me.Panel6.PerformLayout()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents 控制表_dgv As DataGridView
- Friend WithEvents 明細表_dgv As DataGridView
- Friend WithEvents 單號_tb As TextBox
- Friend WithEvents Label0 As Label
- Friend WithEvents 確認新增_bt As Button
- Friend WithEvents 查詢_bt As Button
- Friend WithEvents 刪除_bt As Button
- Friend WithEvents 新增_bt As Button
- Friend WithEvents 修改_bt As Button
- Friend WithEvents Label1 As Label
- Friend WithEvents 廠牌_tb As TextBox
- Friend WithEvents Label2 As Label
- Friend WithEvents 年分_tb As TextBox
- Friend WithEvents Label3 As Label
- Friend WithEvents Label4 As Label
- Friend WithEvents 引擎_tb As TextBox
- Friend WithEvents Label5 As Label
- Friend WithEvents 備註_tb As TextBox
- Friend WithEvents Label6 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents 買入車主名稱_tb As TextBox
- Friend WithEvents Label8 As Label
- Friend WithEvents 買入顏色_tb As TextBox
- Friend WithEvents label As Label
- Friend WithEvents 買入牌照號碼_tb As TextBox
- Friend WithEvents Label9 As Label
- Friend WithEvents 買入車主電話_tb As TextBox
- Friend WithEvents Label10 As Label
- Friend WithEvents 買入車主地址_tb As TextBox
- Friend WithEvents Label11 As Label
- Friend WithEvents 買入經手人_tb As TextBox
- Friend WithEvents Label12 As Label
- Friend WithEvents 進價_tb As TextBox
- Friend WithEvents Label13 As Label
- Friend WithEvents 賣出經手人_tb As TextBox
- Friend WithEvents Label14 As Label
- Friend WithEvents 售價_tb As TextBox
- Friend WithEvents Label15 As Label
- Friend WithEvents 賣出車主地址_tb As TextBox
- Friend WithEvents Label16 As Label
- Friend WithEvents 賣出車主電話_tb As TextBox
- Friend WithEvents Label17 As Label
- Friend WithEvents Label18 As Label
- Friend WithEvents 賣出車主名稱_tb As TextBox
- Friend WithEvents Label19 As Label
- Friend WithEvents 賣出顏色_tb As TextBox
- Friend WithEvents Label20 As Label
- Friend WithEvents 賣出牌照號碼_tb As TextBox
- Friend WithEvents Label21 As Label
- Friend WithEvents 總成本_tb As TextBox
- Friend WithEvents Label22 As Label
- Friend WithEvents 支出合計_tb As TextBox
- Friend WithEvents 收支單中新增一筆空白資料_bt As Button
- Friend WithEvents 申請_bt As Button
- Friend WithEvents 刪除選中的一筆資料_bt As Button
- Friend WithEvents Label23 As Label
- Friend WithEvents 流水號_tb As TextBox
- Friend WithEvents Panel1 As Panel
- Friend WithEvents Panel2 As Panel
- Friend WithEvents 料號_tb As TextBox
- Friend WithEvents Label24 As Label
- Friend WithEvents 物料_dgv As DataGridView
- Friend WithEvents GroupBox1 As GroupBox
- Friend WithEvents 查詢1_bt As Button
- Friend WithEvents GroupBox2 As GroupBox
- Friend WithEvents 查詢2_bt As Button
- Friend WithEvents 檢測日期_dtp As DateTimePicker
- Friend WithEvents 買入日期_dtp As DateTimePicker
- Friend WithEvents 賣出日期_dtp As DateTimePicker
- Friend WithEvents 收支單中新增一筆資料_bt As Button
- Friend WithEvents Panel3 As Panel
- Friend WithEvents 成本 As TextBox
- Friend WithEvents 品名 As TextBox
- Friend WithEvents 選擇供應商_cb As ComboBox
- Friend WithEvents Label25 As Label
- Friend WithEvents Label27 As Label
- Friend WithEvents 總利潤_tb As TextBox
- Friend WithEvents Label26 As Label
- Friend WithEvents 利潤率 As NumericUpDown
- Friend WithEvents Label28 As Label
- Friend WithEvents 供應商編號_tb As TextBox
- Friend WithEvents ToolTip1 As ToolTip
- Friend WithEvents 已交車_cb As CheckBox
- Friend WithEvents 匯出EXCEL_bt As Button
- Friend WithEvents 公司名稱 As TextBox
- Friend WithEvents 料號1_tb As TextBox
- Friend WithEvents 選擇日期_dtp As DateTimePicker
- Friend WithEvents Label29 As Label
- Friend WithEvents 庫存_dgv As DataGridView
- Friend WithEvents TextBox1 As TextBox
- Friend WithEvents Label30 As Label
- Friend WithEvents Label32 As Label
- Friend WithEvents 出廠里程_tb As TextBox
- Friend WithEvents Label31 As Label
- Friend WithEvents 進廠里程_tb As TextBox
- Friend WithEvents Panel4 As Panel
- Friend WithEvents Panel5 As Panel
- Friend WithEvents 庫存量1 As TextBox
- Friend WithEvents 里程_tb As TextBox
- Friend WithEvents Label33 As Label
- Friend WithEvents 入廠日期_dtp As DateTimePicker
- Friend WithEvents Button2 As Button
- Friend WithEvents 車主名稱_tb As TextBox
- Friend WithEvents 保養預示_tb As TextBox
- Friend WithEvents 車型_tb As TextBox
- Friend WithEvents 收支單中新增一筆資料1_bt As Button
- Friend WithEvents 電話_tb As TextBox
- Friend WithEvents 收支單中新增一筆空白資料1_bt As Button
- Friend WithEvents 工資_tb As TextBox
- Friend WithEvents Label57 As Label
- Friend WithEvents 刪除選中的一筆資料1_bt As Button
- Friend WithEvents 申請1_bt As Button
- Friend WithEvents 車號_tb As TextBox
- Friend WithEvents 零件_tb As TextBox
- Friend WithEvents Label58 As Label
- Friend WithEvents 總計_tb As TextBox
- Friend WithEvents Label40 As Label
- Friend WithEvents 稅金_tb As TextBox
- Friend WithEvents Label38 As Label
- Friend WithEvents 信用卡_tb As TextBox
- Friend WithEvents Label39 As Label
- Friend WithEvents 應收合計_tb As TextBox
- Friend WithEvents Label36 As Label
- Friend WithEvents 賒帳_tb As TextBox
- Friend WithEvents Label37 As Label
- Friend WithEvents 支票_tb As TextBox
- Friend WithEvents Label34 As Label
- Friend WithEvents 現金_tb As TextBox
- Friend WithEvents Label35 As Label
- Friend WithEvents GroupBox4 As GroupBox
- Friend WithEvents GroupBox3 As GroupBox
- Friend WithEvents Panel6 As Panel
- Friend WithEvents 是否收稅_cb As CheckBox
- Friend WithEvents Label41 As Label
- Friend WithEvents 出險公司_tb As TextBox
- Friend WithEvents Label42 As Label
- Friend WithEvents 應驗車日_dtp As DateTimePicker
- Friend WithEvents 狀態_tb As TextBox
- Friend WithEvents Button1 As Button
- Friend WithEvents Panel7 As Panel
- Friend WithEvents 註解4_tb As TextBox
- Friend WithEvents 註解3_tb As TextBox
- Friend WithEvents 註解2_tb As TextBox
- Friend WithEvents 註解1_tb As TextBox
- Friend WithEvents Button3 As Button
- Friend WithEvents 查詢物_bt As Button
- Friend WithEvents 地址_tb As TextBox
- Friend WithEvents Label56 As Label
- Friend WithEvents Label55 As Label
- Friend WithEvents Label54 As Label
- Friend WithEvents Label53 As Label
- Friend WithEvents Label52 As Label
- Friend WithEvents Label50 As Label
- Friend WithEvents Label43 As Label
- Friend WithEvents 引擎號碼1_tb As TextBox
- Friend WithEvents Label44 As Label
- Friend WithEvents 明細表1_dgv As DataGridView
- Friend WithEvents 年_tb As TextBox
- Friend WithEvents Label45 As Label
- Friend WithEvents Label46 As Label
- Friend WithEvents 輪胎尺寸_tb As TextBox
- Friend WithEvents 顯示成本_cb As CheckBox
- Friend WithEvents 隱藏成本_cb As CheckBox
- Friend WithEvents 只顯示未付款_cb As CheckBox
- Friend WithEvents 全部_tb As TextBox
- End Class
|