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

車輛銷售管理.Designer.vb 116KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class 車輛銷售管理
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()>
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Me.components = New System.ComponentModel.Container()
  23. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(車輛銷售管理))
  28. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Me.控制表_dgv = New System.Windows.Forms.DataGridView()
  32. Me.明細表_dgv = New System.Windows.Forms.DataGridView()
  33. Me.單號_tb = New System.Windows.Forms.TextBox()
  34. Me.Label0 = New System.Windows.Forms.Label()
  35. Me.Label1 = New System.Windows.Forms.Label()
  36. Me.廠牌_tb = New System.Windows.Forms.TextBox()
  37. Me.Label2 = New System.Windows.Forms.Label()
  38. Me.年分_tb = New System.Windows.Forms.TextBox()
  39. Me.Label3 = New System.Windows.Forms.Label()
  40. Me.Label4 = New System.Windows.Forms.Label()
  41. Me.引擎_tb = New System.Windows.Forms.TextBox()
  42. Me.Label5 = New System.Windows.Forms.Label()
  43. Me.備註_tb = New System.Windows.Forms.TextBox()
  44. Me.Label6 = New System.Windows.Forms.Label()
  45. Me.Label7 = New System.Windows.Forms.Label()
  46. Me.買入車主名稱_tb = New System.Windows.Forms.TextBox()
  47. Me.Label8 = New System.Windows.Forms.Label()
  48. Me.買入顏色_tb = New System.Windows.Forms.TextBox()
  49. Me.label = New System.Windows.Forms.Label()
  50. Me.買入牌照號碼_tb = New System.Windows.Forms.TextBox()
  51. Me.Label9 = New System.Windows.Forms.Label()
  52. Me.買入車主電話_tb = New System.Windows.Forms.TextBox()
  53. Me.Label10 = New System.Windows.Forms.Label()
  54. Me.買入車主地址_tb = New System.Windows.Forms.TextBox()
  55. Me.Label11 = New System.Windows.Forms.Label()
  56. Me.買入經手人_tb = New System.Windows.Forms.TextBox()
  57. Me.Label12 = New System.Windows.Forms.Label()
  58. Me.進價_tb = New System.Windows.Forms.TextBox()
  59. Me.Label13 = New System.Windows.Forms.Label()
  60. Me.賣出經手人_tb = New System.Windows.Forms.TextBox()
  61. Me.Label14 = New System.Windows.Forms.Label()
  62. Me.售價_tb = New System.Windows.Forms.TextBox()
  63. Me.Label15 = New System.Windows.Forms.Label()
  64. Me.賣出車主地址_tb = New System.Windows.Forms.TextBox()
  65. Me.Label16 = New System.Windows.Forms.Label()
  66. Me.賣出車主電話_tb = New System.Windows.Forms.TextBox()
  67. Me.Label17 = New System.Windows.Forms.Label()
  68. Me.Label18 = New System.Windows.Forms.Label()
  69. Me.賣出車主名稱_tb = New System.Windows.Forms.TextBox()
  70. Me.Label19 = New System.Windows.Forms.Label()
  71. Me.賣出顏色_tb = New System.Windows.Forms.TextBox()
  72. Me.Label20 = New System.Windows.Forms.Label()
  73. Me.賣出牌照號碼_tb = New System.Windows.Forms.TextBox()
  74. Me.Label21 = New System.Windows.Forms.Label()
  75. Me.總成本_tb = New System.Windows.Forms.TextBox()
  76. Me.Label22 = New System.Windows.Forms.Label()
  77. Me.支出合計_tb = New System.Windows.Forms.TextBox()
  78. Me.Label23 = New System.Windows.Forms.Label()
  79. Me.流水號_tb = New System.Windows.Forms.TextBox()
  80. Me.Panel1 = New System.Windows.Forms.Panel()
  81. Me.顯示成本_cb = New System.Windows.Forms.CheckBox()
  82. Me.選擇供應商_cb = New System.Windows.Forms.ComboBox()
  83. Me.Label25 = New System.Windows.Forms.Label()
  84. Me.物料_dgv = New System.Windows.Forms.DataGridView()
  85. Me.Panel2 = New System.Windows.Forms.Panel()
  86. Me.TextBox1 = New System.Windows.Forms.TextBox()
  87. Me.Label30 = New System.Windows.Forms.Label()
  88. Me.已交車_cb = New System.Windows.Forms.CheckBox()
  89. Me.利潤率 = New System.Windows.Forms.NumericUpDown()
  90. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  91. Me.Label32 = New System.Windows.Forms.Label()
  92. Me.出廠里程_tb = New System.Windows.Forms.TextBox()
  93. Me.賣出日期_dtp = New System.Windows.Forms.DateTimePicker()
  94. Me.查詢2_bt = New System.Windows.Forms.Button()
  95. Me.Label28 = New System.Windows.Forms.Label()
  96. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  97. Me.Label31 = New System.Windows.Forms.Label()
  98. Me.進廠里程_tb = New System.Windows.Forms.TextBox()
  99. Me.買入日期_dtp = New System.Windows.Forms.DateTimePicker()
  100. Me.查詢1_bt = New System.Windows.Forms.Button()
  101. Me.總利潤_tb = New System.Windows.Forms.TextBox()
  102. Me.Label26 = New System.Windows.Forms.Label()
  103. Me.收支單中新增一筆資料_bt = New System.Windows.Forms.Button()
  104. Me.Panel3 = New System.Windows.Forms.Panel()
  105. Me.狀態_tb = New System.Windows.Forms.TextBox()
  106. Me.地址_tb = New System.Windows.Forms.TextBox()
  107. Me.庫存_dgv = New System.Windows.Forms.DataGridView()
  108. Me.料號1_tb = New System.Windows.Forms.TextBox()
  109. Me.公司名稱 = New System.Windows.Forms.TextBox()
  110. Me.供應商編號_tb = New System.Windows.Forms.TextBox()
  111. Me.Label27 = New System.Windows.Forms.Label()
  112. Me.成本 = New System.Windows.Forms.TextBox()
  113. Me.品名 = New System.Windows.Forms.TextBox()
  114. Me.庫存量1 = New System.Windows.Forms.TextBox()
  115. Me.Label24 = New System.Windows.Forms.Label()
  116. Me.料號_tb = New System.Windows.Forms.TextBox()
  117. Me.Label33 = New System.Windows.Forms.Label()
  118. Me.收支單中新增一筆空白資料_bt = New System.Windows.Forms.Button()
  119. Me.刪除選中的一筆資料_bt = New System.Windows.Forms.Button()
  120. Me.申請_bt = New System.Windows.Forms.Button()
  121. Me.檢測日期_dtp = New System.Windows.Forms.DateTimePicker()
  122. Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
  123. Me.選擇日期_dtp = New System.Windows.Forms.DateTimePicker()
  124. Me.Label29 = New System.Windows.Forms.Label()
  125. Me.Panel4 = New System.Windows.Forms.Panel()
  126. Me.Panel5 = New System.Windows.Forms.Panel()
  127. Me.Panel7 = New System.Windows.Forms.Panel()
  128. Me.註解4_tb = New System.Windows.Forms.TextBox()
  129. Me.註解3_tb = New System.Windows.Forms.TextBox()
  130. Me.註解2_tb = New System.Windows.Forms.TextBox()
  131. Me.註解1_tb = New System.Windows.Forms.TextBox()
  132. Me.明細表1_dgv = New System.Windows.Forms.DataGridView()
  133. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  134. Me.全部_tb = New System.Windows.Forms.TextBox()
  135. Me.Label57 = New System.Windows.Forms.Label()
  136. Me.Label58 = New System.Windows.Forms.Label()
  137. Me.總計_tb = New System.Windows.Forms.TextBox()
  138. Me.零件_tb = New System.Windows.Forms.TextBox()
  139. Me.Label40 = New System.Windows.Forms.Label()
  140. Me.工資_tb = New System.Windows.Forms.TextBox()
  141. Me.稅金_tb = New System.Windows.Forms.TextBox()
  142. Me.Label35 = New System.Windows.Forms.Label()
  143. Me.Label38 = New System.Windows.Forms.Label()
  144. Me.現金_tb = New System.Windows.Forms.TextBox()
  145. Me.信用卡_tb = New System.Windows.Forms.TextBox()
  146. Me.Label34 = New System.Windows.Forms.Label()
  147. Me.Label39 = New System.Windows.Forms.Label()
  148. Me.支票_tb = New System.Windows.Forms.TextBox()
  149. Me.應收合計_tb = New System.Windows.Forms.TextBox()
  150. Me.Label37 = New System.Windows.Forms.Label()
  151. Me.Label36 = New System.Windows.Forms.Label()
  152. Me.賒帳_tb = New System.Windows.Forms.TextBox()
  153. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  154. Me.隱藏成本_cb = New System.Windows.Forms.CheckBox()
  155. Me.年_tb = New System.Windows.Forms.TextBox()
  156. Me.Label45 = New System.Windows.Forms.Label()
  157. Me.Label46 = New System.Windows.Forms.Label()
  158. Me.輪胎尺寸_tb = New System.Windows.Forms.TextBox()
  159. Me.引擎號碼1_tb = New System.Windows.Forms.TextBox()
  160. Me.Label44 = New System.Windows.Forms.Label()
  161. Me.Label56 = New System.Windows.Forms.Label()
  162. Me.刪除選中的一筆資料1_bt = New System.Windows.Forms.Button()
  163. Me.申請1_bt = New System.Windows.Forms.Button()
  164. Me.收支單中新增一筆資料1_bt = New System.Windows.Forms.Button()
  165. Me.收支單中新增一筆空白資料1_bt = New System.Windows.Forms.Button()
  166. Me.Label55 = New System.Windows.Forms.Label()
  167. Me.Label54 = New System.Windows.Forms.Label()
  168. Me.Label53 = New System.Windows.Forms.Label()
  169. Me.Label52 = New System.Windows.Forms.Label()
  170. Me.Label50 = New System.Windows.Forms.Label()
  171. Me.Label43 = New System.Windows.Forms.Label()
  172. Me.車號_tb = New System.Windows.Forms.TextBox()
  173. Me.電話_tb = New System.Windows.Forms.TextBox()
  174. Me.車型_tb = New System.Windows.Forms.TextBox()
  175. Me.保養預示_tb = New System.Windows.Forms.TextBox()
  176. Me.車主名稱_tb = New System.Windows.Forms.TextBox()
  177. Me.Button2 = New System.Windows.Forms.Button()
  178. Me.入廠日期_dtp = New System.Windows.Forms.DateTimePicker()
  179. Me.里程_tb = New System.Windows.Forms.TextBox()
  180. Me.Panel6 = New System.Windows.Forms.Panel()
  181. Me.Button3 = New System.Windows.Forms.Button()
  182. Me.Label42 = New System.Windows.Forms.Label()
  183. Me.Button1 = New System.Windows.Forms.Button()
  184. Me.應驗車日_dtp = New System.Windows.Forms.DateTimePicker()
  185. Me.是否收稅_cb = New System.Windows.Forms.CheckBox()
  186. Me.Label41 = New System.Windows.Forms.Label()
  187. Me.出險公司_tb = New System.Windows.Forms.TextBox()
  188. Me.查詢物_bt = New System.Windows.Forms.Button()
  189. Me.匯出EXCEL_bt = New System.Windows.Forms.Button()
  190. Me.確認新增_bt = New System.Windows.Forms.Button()
  191. Me.查詢_bt = New System.Windows.Forms.Button()
  192. Me.刪除_bt = New System.Windows.Forms.Button()
  193. Me.新增_bt = New System.Windows.Forms.Button()
  194. Me.修改_bt = New System.Windows.Forms.Button()
  195. Me.只顯示未付款_cb = New System.Windows.Forms.CheckBox()
  196. CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  197. CType(Me.明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  198. Me.Panel1.SuspendLayout()
  199. CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  200. Me.Panel2.SuspendLayout()
  201. CType(Me.利潤率, System.ComponentModel.ISupportInitialize).BeginInit()
  202. Me.GroupBox2.SuspendLayout()
  203. Me.GroupBox1.SuspendLayout()
  204. Me.Panel3.SuspendLayout()
  205. CType(Me.庫存_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  206. Me.Panel4.SuspendLayout()
  207. Me.Panel5.SuspendLayout()
  208. Me.Panel7.SuspendLayout()
  209. CType(Me.明細表1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  210. Me.GroupBox4.SuspendLayout()
  211. Me.GroupBox3.SuspendLayout()
  212. Me.Panel6.SuspendLayout()
  213. Me.SuspendLayout()
  214. '
  215. '控制表_dgv
  216. '
  217. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  218. Me.控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  219. Me.控制表_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  220. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  221. Me.控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  222. Me.控制表_dgv.BackgroundColor = System.Drawing.Color.White
  223. Me.控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  224. Me.控制表_dgv.Location = New System.Drawing.Point(6, 87)
  225. Me.控制表_dgv.Margin = New System.Windows.Forms.Padding(4)
  226. Me.控制表_dgv.Name = "控制表_dgv"
  227. Me.控制表_dgv.ReadOnly = True
  228. Me.控制表_dgv.RowHeadersWidth = 5
  229. Me.控制表_dgv.RowTemplate.Height = 24
  230. Me.控制表_dgv.Size = New System.Drawing.Size(180, 764)
  231. Me.控制表_dgv.TabIndex = 959
  232. '
  233. '明細表_dgv
  234. '
  235. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
  236. Me.明細表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  237. Me.明細表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  238. Or System.Windows.Forms.AnchorStyles.Left) _
  239. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  240. Me.明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  241. Me.明細表_dgv.BackgroundColor = System.Drawing.Color.White
  242. Me.明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  243. Me.明細表_dgv.Location = New System.Drawing.Point(4, 224)
  244. Me.明細表_dgv.Margin = New System.Windows.Forms.Padding(4)
  245. Me.明細表_dgv.Name = "明細表_dgv"
  246. Me.明細表_dgv.RowHeadersWidth = 5
  247. DataGridViewCellStyle3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  248. DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  249. Me.明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle3
  250. Me.明細表_dgv.RowTemplate.Height = 24
  251. Me.明細表_dgv.Size = New System.Drawing.Size(1190, 560)
  252. Me.明細表_dgv.TabIndex = 960
  253. '
  254. '單號_tb
  255. '
  256. Me.單號_tb.Location = New System.Drawing.Point(453, 29)
  257. Me.單號_tb.Margin = New System.Windows.Forms.Padding(4)
  258. Me.單號_tb.Name = "單號_tb"
  259. Me.單號_tb.ReadOnly = True
  260. Me.單號_tb.Size = New System.Drawing.Size(134, 23)
  261. Me.單號_tb.TabIndex = 1504
  262. Me.單號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  263. '
  264. 'Label0
  265. '
  266. Me.Label0.AutoSize = True
  267. Me.Label0.ImeMode = System.Windows.Forms.ImeMode.NoControl
  268. Me.Label0.Location = New System.Drawing.Point(390, 32)
  269. Me.Label0.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  270. Me.Label0.Name = "Label0"
  271. Me.Label0.Size = New System.Drawing.Size(55, 16)
  272. Me.Label0.TabIndex = 1505
  273. Me.Label0.Text = "選擇單號"
  274. Me.Label0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  275. '
  276. 'Label1
  277. '
  278. Me.Label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  279. Me.Label1.AutoSize = True
  280. Me.Label1.ImeMode = System.Windows.Forms.ImeMode.NoControl
  281. Me.Label1.Location = New System.Drawing.Point(11, 6)
  282. Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  283. Me.Label1.Name = "Label1"
  284. Me.Label1.Size = New System.Drawing.Size(52, 16)
  285. Me.Label1.TabIndex = 1671
  286. Me.Label1.Text = "廠 牌"
  287. '
  288. '廠牌_tb
  289. '
  290. Me.廠牌_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  291. Me.廠牌_tb.Location = New System.Drawing.Point(70, 2)
  292. Me.廠牌_tb.Margin = New System.Windows.Forms.Padding(4)
  293. Me.廠牌_tb.Name = "廠牌_tb"
  294. Me.廠牌_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  295. Me.廠牌_tb.Size = New System.Drawing.Size(94, 23)
  296. Me.廠牌_tb.TabIndex = 1670
  297. '
  298. 'Label2
  299. '
  300. Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  301. Me.Label2.AutoSize = True
  302. Me.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl
  303. Me.Label2.Location = New System.Drawing.Point(11, 34)
  304. Me.Label2.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  305. Me.Label2.Name = "Label2"
  306. Me.Label2.Size = New System.Drawing.Size(55, 16)
  307. Me.Label2.TabIndex = 1673
  308. Me.Label2.Text = "年分型式"
  309. '
  310. '年分_tb
  311. '
  312. Me.年分_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  313. Me.年分_tb.Location = New System.Drawing.Point(70, 27)
  314. Me.年分_tb.Margin = New System.Windows.Forms.Padding(4)
  315. Me.年分_tb.Name = "年分_tb"
  316. Me.年分_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  317. Me.年分_tb.Size = New System.Drawing.Size(94, 23)
  318. Me.年分_tb.TabIndex = 1672
  319. '
  320. 'Label3
  321. '
  322. Me.Label3.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  323. Me.Label3.AutoSize = True
  324. Me.Label3.ImeMode = System.Windows.Forms.ImeMode.NoControl
  325. Me.Label3.Location = New System.Drawing.Point(171, 6)
  326. Me.Label3.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  327. Me.Label3.Name = "Label3"
  328. Me.Label3.Size = New System.Drawing.Size(55, 16)
  329. Me.Label3.TabIndex = 1677
  330. Me.Label3.Text = "檢測日期"
  331. '
  332. 'Label4
  333. '
  334. Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  335. Me.Label4.AutoSize = True
  336. Me.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl
  337. Me.Label4.Location = New System.Drawing.Point(171, 34)
  338. Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  339. Me.Label4.Name = "Label4"
  340. Me.Label4.Size = New System.Drawing.Size(55, 16)
  341. Me.Label4.TabIndex = 1675
  342. Me.Label4.Text = "引擎號碼"
  343. '
  344. '引擎_tb
  345. '
  346. Me.引擎_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  347. Me.引擎_tb.Location = New System.Drawing.Point(234, 27)
  348. Me.引擎_tb.Margin = New System.Windows.Forms.Padding(4)
  349. Me.引擎_tb.Name = "引擎_tb"
  350. Me.引擎_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  351. Me.引擎_tb.Size = New System.Drawing.Size(164, 23)
  352. Me.引擎_tb.TabIndex = 1674
  353. '
  354. 'Label5
  355. '
  356. Me.Label5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  357. Me.Label5.AutoSize = True
  358. Me.Label5.ImeMode = System.Windows.Forms.ImeMode.NoControl
  359. Me.Label5.Location = New System.Drawing.Point(367, 9)
  360. Me.Label5.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  361. Me.Label5.Name = "Label5"
  362. Me.Label5.Size = New System.Drawing.Size(31, 16)
  363. Me.Label5.TabIndex = 1680
  364. Me.Label5.Text = "備註"
  365. '
  366. '備註_tb
  367. '
  368. Me.備註_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  369. Me.備註_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  370. Me.備註_tb.Location = New System.Drawing.Point(406, 7)
  371. Me.備註_tb.Margin = New System.Windows.Forms.Padding(4)
  372. Me.備註_tb.Multiline = True
  373. Me.備註_tb.Name = "備註_tb"
  374. Me.備註_tb.Size = New System.Drawing.Size(284, 43)
  375. Me.備註_tb.TabIndex = 1679
  376. '
  377. 'Label6
  378. '
  379. Me.Label6.AutoSize = True
  380. Me.Label6.ImeMode = System.Windows.Forms.ImeMode.NoControl
  381. Me.Label6.Location = New System.Drawing.Point(5, 20)
  382. Me.Label6.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  383. Me.Label6.Name = "Label6"
  384. Me.Label6.Size = New System.Drawing.Size(55, 16)
  385. Me.Label6.TabIndex = 1687
  386. Me.Label6.Text = "買入日期"
  387. '
  388. 'Label7
  389. '
  390. Me.Label7.AutoSize = True
  391. Me.Label7.ImeMode = System.Windows.Forms.ImeMode.NoControl
  392. Me.Label7.Location = New System.Drawing.Point(5, 45)
  393. Me.Label7.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  394. Me.Label7.Name = "Label7"
  395. Me.Label7.Size = New System.Drawing.Size(55, 16)
  396. Me.Label7.TabIndex = 1686
  397. Me.Label7.Text = "車主名稱"
  398. '
  399. '買入車主名稱_tb
  400. '
  401. Me.買入車主名稱_tb.Location = New System.Drawing.Point(60, 42)
  402. Me.買入車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
  403. Me.買入車主名稱_tb.Name = "買入車主名稱_tb"
  404. Me.買入車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  405. Me.買入車主名稱_tb.Size = New System.Drawing.Size(86, 23)
  406. Me.買入車主名稱_tb.TabIndex = 1685
  407. '
  408. 'Label8
  409. '
  410. Me.Label8.AutoSize = True
  411. Me.Label8.ImeMode = System.Windows.Forms.ImeMode.NoControl
  412. Me.Label8.Location = New System.Drawing.Point(175, 21)
  413. Me.Label8.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  414. Me.Label8.Name = "Label8"
  415. Me.Label8.Size = New System.Drawing.Size(31, 16)
  416. Me.Label8.TabIndex = 1684
  417. Me.Label8.Text = "顏色"
  418. '
  419. '買入顏色_tb
  420. '
  421. Me.買入顏色_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  422. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  423. Me.買入顏色_tb.Location = New System.Drawing.Point(210, 18)
  424. Me.買入顏色_tb.Margin = New System.Windows.Forms.Padding(4)
  425. Me.買入顏色_tb.Name = "買入顏色_tb"
  426. Me.買入顏色_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  427. Me.買入顏色_tb.Size = New System.Drawing.Size(656, 23)
  428. Me.買入顏色_tb.TabIndex = 1683
  429. '
  430. 'label
  431. '
  432. Me.label.AutoSize = True
  433. Me.label.ImeMode = System.Windows.Forms.ImeMode.NoControl
  434. Me.label.Location = New System.Drawing.Point(150, 126)
  435. Me.label.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  436. Me.label.Name = "label"
  437. Me.label.Size = New System.Drawing.Size(55, 16)
  438. Me.label.TabIndex = 1682
  439. Me.label.Text = "牌照號碼"
  440. '
  441. '買入牌照號碼_tb
  442. '
  443. Me.買入牌照號碼_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  444. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  445. Me.買入牌照號碼_tb.Location = New System.Drawing.Point(205, 123)
  446. Me.買入牌照號碼_tb.Margin = New System.Windows.Forms.Padding(4)
  447. Me.買入牌照號碼_tb.Name = "買入牌照號碼_tb"
  448. Me.買入牌照號碼_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  449. Me.買入牌照號碼_tb.Size = New System.Drawing.Size(661, 23)
  450. Me.買入牌照號碼_tb.TabIndex = 1681
  451. '
  452. 'Label9
  453. '
  454. Me.Label9.AutoSize = True
  455. Me.Label9.ImeMode = System.Windows.Forms.ImeMode.NoControl
  456. Me.Label9.Location = New System.Drawing.Point(174, 49)
  457. Me.Label9.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  458. Me.Label9.Name = "Label9"
  459. Me.Label9.Size = New System.Drawing.Size(31, 16)
  460. Me.Label9.TabIndex = 1690
  461. Me.Label9.Text = "電話"
  462. '
  463. '買入車主電話_tb
  464. '
  465. Me.買入車主電話_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  466. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  467. Me.買入車主電話_tb.Location = New System.Drawing.Point(205, 45)
  468. Me.買入車主電話_tb.Margin = New System.Windows.Forms.Padding(4)
  469. Me.買入車主電話_tb.Name = "買入車主電話_tb"
  470. Me.買入車主電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  471. Me.買入車主電話_tb.Size = New System.Drawing.Size(661, 23)
  472. Me.買入車主電話_tb.TabIndex = 1689
  473. '
  474. 'Label10
  475. '
  476. Me.Label10.AutoSize = True
  477. Me.Label10.ImeMode = System.Windows.Forms.ImeMode.NoControl
  478. Me.Label10.Location = New System.Drawing.Point(5, 70)
  479. Me.Label10.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  480. Me.Label10.Name = "Label10"
  481. Me.Label10.Size = New System.Drawing.Size(52, 16)
  482. Me.Label10.TabIndex = 1692
  483. Me.Label10.Text = "地 址"
  484. '
  485. '買入車主地址_tb
  486. '
  487. Me.買入車主地址_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  488. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  489. Me.買入車主地址_tb.Location = New System.Drawing.Point(60, 67)
  490. Me.買入車主地址_tb.Margin = New System.Windows.Forms.Padding(4)
  491. Me.買入車主地址_tb.Name = "買入車主地址_tb"
  492. Me.買入車主地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  493. Me.買入車主地址_tb.Size = New System.Drawing.Size(806, 23)
  494. Me.買入車主地址_tb.TabIndex = 1691
  495. '
  496. 'Label11
  497. '
  498. Me.Label11.AutoSize = True
  499. Me.Label11.ImeMode = System.Windows.Forms.ImeMode.NoControl
  500. Me.Label11.Location = New System.Drawing.Point(160, 98)
  501. Me.Label11.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  502. Me.Label11.Name = "Label11"
  503. Me.Label11.Size = New System.Drawing.Size(43, 16)
  504. Me.Label11.TabIndex = 1696
  505. Me.Label11.Text = "經手人"
  506. '
  507. '買入經手人_tb
  508. '
  509. Me.買入經手人_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  510. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  511. Me.買入經手人_tb.Location = New System.Drawing.Point(205, 95)
  512. Me.買入經手人_tb.Margin = New System.Windows.Forms.Padding(4)
  513. Me.買入經手人_tb.Name = "買入經手人_tb"
  514. Me.買入經手人_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  515. Me.買入經手人_tb.Size = New System.Drawing.Size(661, 23)
  516. Me.買入經手人_tb.TabIndex = 1695
  517. '
  518. 'Label12
  519. '
  520. Me.Label12.AutoSize = True
  521. Me.Label12.ImeMode = System.Windows.Forms.ImeMode.NoControl
  522. Me.Label12.Location = New System.Drawing.Point(5, 95)
  523. Me.Label12.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  524. Me.Label12.Name = "Label12"
  525. Me.Label12.Size = New System.Drawing.Size(52, 16)
  526. Me.Label12.TabIndex = 1694
  527. Me.Label12.Text = "進 價"
  528. '
  529. '進價_tb
  530. '
  531. Me.進價_tb.Location = New System.Drawing.Point(60, 92)
  532. Me.進價_tb.Margin = New System.Windows.Forms.Padding(4)
  533. Me.進價_tb.Name = "進價_tb"
  534. Me.進價_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  535. Me.進價_tb.Size = New System.Drawing.Size(84, 23)
  536. Me.進價_tb.TabIndex = 1693
  537. '
  538. 'Label13
  539. '
  540. Me.Label13.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  541. Me.Label13.AutoSize = True
  542. Me.Label13.ImeMode = System.Windows.Forms.ImeMode.NoControl
  543. Me.Label13.Location = New System.Drawing.Point(155, 99)
  544. Me.Label13.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  545. Me.Label13.Name = "Label13"
  546. Me.Label13.Size = New System.Drawing.Size(43, 16)
  547. Me.Label13.TabIndex = 1712
  548. Me.Label13.Text = "經手人"
  549. '
  550. '賣出經手人_tb
  551. '
  552. Me.賣出經手人_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  553. Me.賣出經手人_tb.Location = New System.Drawing.Point(197, 89)
  554. Me.賣出經手人_tb.Margin = New System.Windows.Forms.Padding(4)
  555. Me.賣出經手人_tb.Name = "賣出經手人_tb"
  556. Me.賣出經手人_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  557. Me.賣出經手人_tb.Size = New System.Drawing.Size(100, 23)
  558. Me.賣出經手人_tb.TabIndex = 1711
  559. '
  560. 'Label14
  561. '
  562. Me.Label14.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  563. Me.Label14.AutoSize = True
  564. Me.Label14.ImeMode = System.Windows.Forms.ImeMode.NoControl
  565. Me.Label14.Location = New System.Drawing.Point(5, 95)
  566. Me.Label14.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  567. Me.Label14.Name = "Label14"
  568. Me.Label14.Size = New System.Drawing.Size(52, 16)
  569. Me.Label14.TabIndex = 1710
  570. Me.Label14.Text = "售 價"
  571. '
  572. '售價_tb
  573. '
  574. Me.售價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  575. Me.售價_tb.Location = New System.Drawing.Point(60, 91)
  576. Me.售價_tb.Margin = New System.Windows.Forms.Padding(4)
  577. Me.售價_tb.Name = "售價_tb"
  578. Me.售價_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  579. Me.售價_tb.Size = New System.Drawing.Size(81, 23)
  580. Me.售價_tb.TabIndex = 1709
  581. '
  582. 'Label15
  583. '
  584. Me.Label15.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  585. Me.Label15.AutoSize = True
  586. Me.Label15.ImeMode = System.Windows.Forms.ImeMode.NoControl
  587. Me.Label15.Location = New System.Drawing.Point(6, 71)
  588. Me.Label15.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  589. Me.Label15.Name = "Label15"
  590. Me.Label15.Size = New System.Drawing.Size(52, 16)
  591. Me.Label15.TabIndex = 1708
  592. Me.Label15.Text = "地 址"
  593. '
  594. '賣出車主地址_tb
  595. '
  596. Me.賣出車主地址_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  597. Me.賣出車主地址_tb.Location = New System.Drawing.Point(60, 67)
  598. Me.賣出車主地址_tb.Margin = New System.Windows.Forms.Padding(4)
  599. Me.賣出車主地址_tb.Name = "賣出車主地址_tb"
  600. Me.賣出車主地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  601. Me.賣出車主地址_tb.Size = New System.Drawing.Size(237, 23)
  602. Me.賣出車主地址_tb.TabIndex = 1707
  603. '
  604. 'Label16
  605. '
  606. Me.Label16.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  607. Me.Label16.AutoSize = True
  608. Me.Label16.ImeMode = System.Windows.Forms.ImeMode.NoControl
  609. Me.Label16.Location = New System.Drawing.Point(167, 47)
  610. Me.Label16.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  611. Me.Label16.Name = "Label16"
  612. Me.Label16.Size = New System.Drawing.Size(31, 16)
  613. Me.Label16.TabIndex = 1706
  614. Me.Label16.Text = "電話"
  615. '
  616. '賣出車主電話_tb
  617. '
  618. Me.賣出車主電話_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  619. Me.賣出車主電話_tb.Location = New System.Drawing.Point(197, 42)
  620. Me.賣出車主電話_tb.Margin = New System.Windows.Forms.Padding(4)
  621. Me.賣出車主電話_tb.Name = "賣出車主電話_tb"
  622. Me.賣出車主電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  623. Me.賣出車主電話_tb.Size = New System.Drawing.Size(100, 23)
  624. Me.賣出車主電話_tb.TabIndex = 1705
  625. '
  626. 'Label17
  627. '
  628. Me.Label17.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  629. Me.Label17.AutoSize = True
  630. Me.Label17.ImeMode = System.Windows.Forms.ImeMode.NoControl
  631. Me.Label17.Location = New System.Drawing.Point(5, 20)
  632. Me.Label17.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  633. Me.Label17.Name = "Label17"
  634. Me.Label17.Size = New System.Drawing.Size(55, 16)
  635. Me.Label17.TabIndex = 1703
  636. Me.Label17.Text = "賣出日期"
  637. '
  638. 'Label18
  639. '
  640. Me.Label18.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  641. Me.Label18.AutoSize = True
  642. Me.Label18.ImeMode = System.Windows.Forms.ImeMode.NoControl
  643. Me.Label18.Location = New System.Drawing.Point(5, 45)
  644. Me.Label18.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  645. Me.Label18.Name = "Label18"
  646. Me.Label18.Size = New System.Drawing.Size(55, 16)
  647. Me.Label18.TabIndex = 1702
  648. Me.Label18.Text = "車主名稱"
  649. '
  650. '賣出車主名稱_tb
  651. '
  652. Me.賣出車主名稱_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  653. Me.賣出車主名稱_tb.Location = New System.Drawing.Point(60, 42)
  654. Me.賣出車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
  655. Me.賣出車主名稱_tb.Name = "賣出車主名稱_tb"
  656. Me.賣出車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  657. Me.賣出車主名稱_tb.Size = New System.Drawing.Size(81, 23)
  658. Me.賣出車主名稱_tb.TabIndex = 1701
  659. '
  660. 'Label19
  661. '
  662. Me.Label19.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  663. Me.Label19.AutoSize = True
  664. Me.Label19.ImeMode = System.Windows.Forms.ImeMode.NoControl
  665. Me.Label19.Location = New System.Drawing.Point(167, 18)
  666. Me.Label19.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  667. Me.Label19.Name = "Label19"
  668. Me.Label19.Size = New System.Drawing.Size(31, 16)
  669. Me.Label19.TabIndex = 1700
  670. Me.Label19.Text = "顏色"
  671. '
  672. '賣出顏色_tb
  673. '
  674. Me.賣出顏色_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  675. Me.賣出顏色_tb.Location = New System.Drawing.Point(197, 13)
  676. Me.賣出顏色_tb.Margin = New System.Windows.Forms.Padding(4)
  677. Me.賣出顏色_tb.Name = "賣出顏色_tb"
  678. Me.賣出顏色_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  679. Me.賣出顏色_tb.Size = New System.Drawing.Size(96, 23)
  680. Me.賣出顏色_tb.TabIndex = 1699
  681. '
  682. 'Label20
  683. '
  684. Me.Label20.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  685. Me.Label20.AutoSize = True
  686. Me.Label20.ImeMode = System.Windows.Forms.ImeMode.NoControl
  687. Me.Label20.Location = New System.Drawing.Point(143, 124)
  688. Me.Label20.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  689. Me.Label20.Name = "Label20"
  690. Me.Label20.Size = New System.Drawing.Size(55, 16)
  691. Me.Label20.TabIndex = 1698
  692. Me.Label20.Text = "牌照號碼"
  693. '
  694. '賣出牌照號碼_tb
  695. '
  696. Me.賣出牌照號碼_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  697. Me.賣出牌照號碼_tb.Location = New System.Drawing.Point(197, 117)
  698. Me.賣出牌照號碼_tb.Margin = New System.Windows.Forms.Padding(4)
  699. Me.賣出牌照號碼_tb.Name = "賣出牌照號碼_tb"
  700. Me.賣出牌照號碼_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  701. Me.賣出牌照號碼_tb.Size = New System.Drawing.Size(100, 23)
  702. Me.賣出牌照號碼_tb.TabIndex = 1697
  703. '
  704. 'Label21
  705. '
  706. Me.Label21.AutoSize = True
  707. Me.Label21.ImeMode = System.Windows.Forms.ImeMode.NoControl
  708. Me.Label21.Location = New System.Drawing.Point(5, 169)
  709. Me.Label21.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  710. Me.Label21.Name = "Label21"
  711. Me.Label21.Size = New System.Drawing.Size(67, 16)
  712. Me.Label21.TabIndex = 1716
  713. Me.Label21.Text = "物料總成本"
  714. '
  715. '總成本_tb
  716. '
  717. Me.總成本_tb.Location = New System.Drawing.Point(78, 166)
  718. Me.總成本_tb.Margin = New System.Windows.Forms.Padding(4)
  719. Me.總成本_tb.Name = "總成本_tb"
  720. Me.總成本_tb.ReadOnly = True
  721. Me.總成本_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  722. Me.總成本_tb.Size = New System.Drawing.Size(75, 23)
  723. Me.總成本_tb.TabIndex = 1715
  724. '
  725. 'Label22
  726. '
  727. Me.Label22.AutoSize = True
  728. Me.Label22.ImeMode = System.Windows.Forms.ImeMode.NoControl
  729. Me.Label22.Location = New System.Drawing.Point(156, 168)
  730. Me.Label22.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  731. Me.Label22.Name = "Label22"
  732. Me.Label22.Size = New System.Drawing.Size(67, 16)
  733. Me.Label22.TabIndex = 1714
  734. Me.Label22.Text = "物料總支出"
  735. '
  736. '支出合計_tb
  737. '
  738. Me.支出合計_tb.Location = New System.Drawing.Point(220, 167)
  739. Me.支出合計_tb.Margin = New System.Windows.Forms.Padding(4)
  740. Me.支出合計_tb.Name = "支出合計_tb"
  741. Me.支出合計_tb.ReadOnly = True
  742. Me.支出合計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  743. Me.支出合計_tb.Size = New System.Drawing.Size(96, 23)
  744. Me.支出合計_tb.TabIndex = 1713
  745. '
  746. 'Label23
  747. '
  748. Me.Label23.AutoSize = True
  749. Me.Label23.ImeMode = System.Windows.Forms.ImeMode.NoControl
  750. Me.Label23.Location = New System.Drawing.Point(16, 16)
  751. Me.Label23.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  752. Me.Label23.Name = "Label23"
  753. Me.Label23.Size = New System.Drawing.Size(55, 16)
  754. Me.Label23.TabIndex = 1721
  755. Me.Label23.Text = "選擇項次"
  756. '
  757. '流水號_tb
  758. '
  759. Me.流水號_tb.Location = New System.Drawing.Point(72, 13)
  760. Me.流水號_tb.Margin = New System.Windows.Forms.Padding(4)
  761. Me.流水號_tb.Name = "流水號_tb"
  762. Me.流水號_tb.ReadOnly = True
  763. Me.流水號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  764. Me.流水號_tb.Size = New System.Drawing.Size(88, 23)
  765. Me.流水號_tb.TabIndex = 1720
  766. '
  767. 'Panel1
  768. '
  769. Me.Panel1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  770. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  771. Me.Panel1.Controls.Add(Me.顯示成本_cb)
  772. Me.Panel1.Controls.Add(Me.選擇供應商_cb)
  773. Me.Panel1.Controls.Add(Me.Label25)
  774. Me.Panel1.Controls.Add(Me.物料_dgv)
  775. Me.Panel1.Location = New System.Drawing.Point(190, 59)
  776. Me.Panel1.Name = "Panel1"
  777. Me.Panel1.Size = New System.Drawing.Size(480, 792)
  778. Me.Panel1.TabIndex = 1722
  779. '
  780. '顯示成本_cb
  781. '
  782. Me.顯示成本_cb.AutoSize = True
  783. Me.顯示成本_cb.Location = New System.Drawing.Point(215, 4)
  784. Me.顯示成本_cb.Name = "顯示成本_cb"
  785. Me.顯示成本_cb.Size = New System.Drawing.Size(74, 20)
  786. Me.顯示成本_cb.TabIndex = 1731
  787. Me.顯示成本_cb.Text = "顯示成本"
  788. Me.顯示成本_cb.UseVisualStyleBackColor = True
  789. '
  790. '選擇供應商_cb
  791. '
  792. Me.選擇供應商_cb.FormattingEnabled = True
  793. Me.選擇供應商_cb.Location = New System.Drawing.Point(78, 2)
  794. Me.選擇供應商_cb.Name = "選擇供應商_cb"
  795. Me.選擇供應商_cb.Size = New System.Drawing.Size(121, 24)
  796. Me.選擇供應商_cb.TabIndex = 1730
  797. '
  798. 'Label25
  799. '
  800. Me.Label25.AutoSize = True
  801. Me.Label25.ImeMode = System.Windows.Forms.ImeMode.NoControl
  802. Me.Label25.Location = New System.Drawing.Point(4, 5)
  803. Me.Label25.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  804. Me.Label25.Name = "Label25"
  805. Me.Label25.Size = New System.Drawing.Size(67, 16)
  806. Me.Label25.TabIndex = 1729
  807. Me.Label25.Text = "選擇供應商"
  808. '
  809. '物料_dgv
  810. '
  811. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  812. Me.物料_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  813. Me.物料_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  814. Or System.Windows.Forms.AnchorStyles.Left) _
  815. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  816. Me.物料_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  817. Me.物料_dgv.BackgroundColor = System.Drawing.Color.White
  818. Me.物料_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  819. Me.物料_dgv.Location = New System.Drawing.Point(1, 28)
  820. Me.物料_dgv.Margin = New System.Windows.Forms.Padding(4)
  821. Me.物料_dgv.Name = "物料_dgv"
  822. Me.物料_dgv.ReadOnly = True
  823. Me.物料_dgv.RowHeadersWidth = 5
  824. Me.物料_dgv.RowTemplate.Height = 24
  825. Me.物料_dgv.Size = New System.Drawing.Size(475, 764)
  826. Me.物料_dgv.TabIndex = 960
  827. '
  828. 'Panel2
  829. '
  830. Me.Panel2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  831. Or System.Windows.Forms.AnchorStyles.Left) _
  832. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  833. Me.Panel2.Controls.Add(Me.TextBox1)
  834. Me.Panel2.Controls.Add(Me.Label30)
  835. Me.Panel2.Controls.Add(Me.已交車_cb)
  836. Me.Panel2.Controls.Add(Me.利潤率)
  837. Me.Panel2.Controls.Add(Me.GroupBox2)
  838. Me.Panel2.Controls.Add(Me.Label28)
  839. Me.Panel2.Controls.Add(Me.GroupBox1)
  840. Me.Panel2.Controls.Add(Me.總利潤_tb)
  841. Me.Panel2.Controls.Add(Me.Label26)
  842. Me.Panel2.Controls.Add(Me.收支單中新增一筆資料_bt)
  843. Me.Panel2.Controls.Add(Me.Panel3)
  844. Me.Panel2.Controls.Add(Me.收支單中新增一筆空白資料_bt)
  845. Me.Panel2.Controls.Add(Me.總成本_tb)
  846. Me.Panel2.Controls.Add(Me.Label21)
  847. Me.Panel2.Controls.Add(Me.刪除選中的一筆資料_bt)
  848. Me.Panel2.Controls.Add(Me.申請_bt)
  849. Me.Panel2.Controls.Add(Me.支出合計_tb)
  850. Me.Panel2.Controls.Add(Me.Label22)
  851. Me.Panel2.Controls.Add(Me.明細表_dgv)
  852. Me.Panel2.Location = New System.Drawing.Point(673, 59)
  853. Me.Panel2.Name = "Panel2"
  854. Me.Panel2.Size = New System.Drawing.Size(1201, 792)
  855. Me.Panel2.TabIndex = 1724
  856. '
  857. 'TextBox1
  858. '
  859. Me.TextBox1.Location = New System.Drawing.Point(220, 194)
  860. Me.TextBox1.Margin = New System.Windows.Forms.Padding(4)
  861. Me.TextBox1.Name = "TextBox1"
  862. Me.TextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No
  863. Me.TextBox1.Size = New System.Drawing.Size(96, 23)
  864. Me.TextBox1.TabIndex = 1731
  865. '
  866. 'Label30
  867. '
  868. Me.Label30.AutoSize = True
  869. Me.Label30.ImeMode = System.Windows.Forms.ImeMode.NoControl
  870. Me.Label30.Location = New System.Drawing.Point(169, 198)
  871. Me.Label30.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  872. Me.Label30.Name = "Label30"
  873. Me.Label30.Size = New System.Drawing.Size(43, 16)
  874. Me.Label30.TabIndex = 1732
  875. Me.Label30.Text = "庫存量"
  876. '
  877. '已交車_cb
  878. '
  879. Me.已交車_cb.AutoSize = True
  880. Me.已交車_cb.Location = New System.Drawing.Point(364, 197)
  881. Me.已交車_cb.Name = "已交車_cb"
  882. Me.已交車_cb.Size = New System.Drawing.Size(62, 20)
  883. Me.已交車_cb.TabIndex = 1730
  884. Me.已交車_cb.Text = "已交車"
  885. Me.已交車_cb.UseVisualStyleBackColor = True
  886. '
  887. '利潤率
  888. '
  889. Me.利潤率.DecimalPlaces = 1
  890. Me.利潤率.Location = New System.Drawing.Point(78, 194)
  891. Me.利潤率.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
  892. Me.利潤率.Name = "利潤率"
  893. Me.利潤率.Size = New System.Drawing.Size(75, 23)
  894. Me.利潤率.TabIndex = 1729
  895. '
  896. 'GroupBox2
  897. '
  898. Me.GroupBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  899. Me.GroupBox2.Controls.Add(Me.Label32)
  900. Me.GroupBox2.Controls.Add(Me.出廠里程_tb)
  901. Me.GroupBox2.Controls.Add(Me.賣出日期_dtp)
  902. Me.GroupBox2.Controls.Add(Me.查詢2_bt)
  903. Me.GroupBox2.Controls.Add(Me.Label20)
  904. Me.GroupBox2.Controls.Add(Me.賣出牌照號碼_tb)
  905. Me.GroupBox2.Controls.Add(Me.Label17)
  906. Me.GroupBox2.Controls.Add(Me.Label19)
  907. Me.GroupBox2.Controls.Add(Me.賣出顏色_tb)
  908. Me.GroupBox2.Controls.Add(Me.Label18)
  909. Me.GroupBox2.Controls.Add(Me.賣出車主名稱_tb)
  910. Me.GroupBox2.Controls.Add(Me.Label15)
  911. Me.GroupBox2.Controls.Add(Me.Label16)
  912. Me.GroupBox2.Controls.Add(Me.賣出車主電話_tb)
  913. Me.GroupBox2.Controls.Add(Me.賣出車主地址_tb)
  914. Me.GroupBox2.Controls.Add(Me.賣出經手人_tb)
  915. Me.GroupBox2.Controls.Add(Me.Label14)
  916. Me.GroupBox2.Controls.Add(Me.Label13)
  917. Me.GroupBox2.Controls.Add(Me.售價_tb)
  918. Me.GroupBox2.Location = New System.Drawing.Point(888, 7)
  919. Me.GroupBox2.Name = "GroupBox2"
  920. Me.GroupBox2.Size = New System.Drawing.Size(308, 152)
  921. Me.GroupBox2.TabIndex = 1727
  922. Me.GroupBox2.TabStop = False
  923. Me.GroupBox2.Text = "賣出資料"
  924. '
  925. 'Label32
  926. '
  927. Me.Label32.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  928. Me.Label32.AutoSize = True
  929. Me.Label32.ImeMode = System.Windows.Forms.ImeMode.NoControl
  930. Me.Label32.Location = New System.Drawing.Point(5, 123)
  931. Me.Label32.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  932. Me.Label32.Name = "Label32"
  933. Me.Label32.Size = New System.Drawing.Size(55, 16)
  934. Me.Label32.TabIndex = 1732
  935. Me.Label32.Text = "出廠里程"
  936. '
  937. '出廠里程_tb
  938. '
  939. Me.出廠里程_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  940. Me.出廠里程_tb.Location = New System.Drawing.Point(60, 116)
  941. Me.出廠里程_tb.Margin = New System.Windows.Forms.Padding(4)
  942. Me.出廠里程_tb.Name = "出廠里程_tb"
  943. Me.出廠里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  944. Me.出廠里程_tb.Size = New System.Drawing.Size(81, 23)
  945. Me.出廠里程_tb.TabIndex = 1731
  946. '
  947. '賣出日期_dtp
  948. '
  949. Me.賣出日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  950. Me.賣出日期_dtp.Location = New System.Drawing.Point(60, 17)
  951. Me.賣出日期_dtp.Name = "賣出日期_dtp"
  952. Me.賣出日期_dtp.Size = New System.Drawing.Size(100, 23)
  953. Me.賣出日期_dtp.TabIndex = 1730
  954. '
  955. '查詢2_bt
  956. '
  957. Me.查詢2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  958. Me.查詢2_bt.BackgroundImage = CType(resources.GetObject("查詢2_bt.BackgroundImage"), System.Drawing.Image)
  959. Me.查詢2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  960. Me.查詢2_bt.Location = New System.Drawing.Point(137, 43)
  961. Me.查詢2_bt.Name = "查詢2_bt"
  962. Me.查詢2_bt.Size = New System.Drawing.Size(23, 23)
  963. Me.查詢2_bt.TabIndex = 1726
  964. Me.查詢2_bt.UseVisualStyleBackColor = True
  965. '
  966. 'Label28
  967. '
  968. Me.Label28.AutoSize = True
  969. Me.Label28.ImeMode = System.Windows.Forms.ImeMode.NoControl
  970. Me.Label28.Location = New System.Drawing.Point(5, 197)
  971. Me.Label28.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  972. Me.Label28.Name = "Label28"
  973. Me.Label28.Size = New System.Drawing.Size(62, 16)
  974. Me.Label28.TabIndex = 1728
  975. Me.Label28.Text = "利潤率(%)"
  976. '
  977. 'GroupBox1
  978. '
  979. Me.GroupBox1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  980. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  981. Me.GroupBox1.Controls.Add(Me.Label31)
  982. Me.GroupBox1.Controls.Add(Me.進廠里程_tb)
  983. Me.GroupBox1.Controls.Add(Me.買入日期_dtp)
  984. Me.GroupBox1.Controls.Add(Me.查詢1_bt)
  985. Me.GroupBox1.Controls.Add(Me.買入車主名稱_tb)
  986. Me.GroupBox1.Controls.Add(Me.Label11)
  987. Me.GroupBox1.Controls.Add(Me.買入經手人_tb)
  988. Me.GroupBox1.Controls.Add(Me.Label12)
  989. Me.GroupBox1.Controls.Add(Me.進價_tb)
  990. Me.GroupBox1.Controls.Add(Me.買入車主電話_tb)
  991. Me.GroupBox1.Controls.Add(Me.Label9)
  992. Me.GroupBox1.Controls.Add(Me.Label6)
  993. Me.GroupBox1.Controls.Add(Me.Label7)
  994. Me.GroupBox1.Controls.Add(Me.Label8)
  995. Me.GroupBox1.Controls.Add(Me.買入顏色_tb)
  996. Me.GroupBox1.Controls.Add(Me.label)
  997. Me.GroupBox1.Controls.Add(Me.買入牌照號碼_tb)
  998. Me.GroupBox1.Controls.Add(Me.Label10)
  999. Me.GroupBox1.Controls.Add(Me.買入車主地址_tb)
  1000. Me.GroupBox1.Location = New System.Drawing.Point(9, 4)
  1001. Me.GroupBox1.Name = "GroupBox1"
  1002. Me.GroupBox1.Size = New System.Drawing.Size(873, 152)
  1003. Me.GroupBox1.TabIndex = 1727
  1004. Me.GroupBox1.TabStop = False
  1005. Me.GroupBox1.Text = "買入資料"
  1006. '
  1007. 'Label31
  1008. '
  1009. Me.Label31.AutoSize = True
  1010. Me.Label31.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1011. Me.Label31.Location = New System.Drawing.Point(2, 123)
  1012. Me.Label31.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1013. Me.Label31.Name = "Label31"
  1014. Me.Label31.Size = New System.Drawing.Size(55, 16)
  1015. Me.Label31.TabIndex = 1731
  1016. Me.Label31.Text = "進廠里程"
  1017. '
  1018. '進廠里程_tb
  1019. '
  1020. Me.進廠里程_tb.Location = New System.Drawing.Point(60, 120)
  1021. Me.進廠里程_tb.Margin = New System.Windows.Forms.Padding(4)
  1022. Me.進廠里程_tb.Name = "進廠里程_tb"
  1023. Me.進廠里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1024. Me.進廠里程_tb.Size = New System.Drawing.Size(82, 23)
  1025. Me.進廠里程_tb.TabIndex = 1730
  1026. '
  1027. '買入日期_dtp
  1028. '
  1029. Me.買入日期_dtp.Location = New System.Drawing.Point(61, 17)
  1030. Me.買入日期_dtp.Name = "買入日期_dtp"
  1031. Me.買入日期_dtp.Size = New System.Drawing.Size(114, 23)
  1032. Me.買入日期_dtp.TabIndex = 1729
  1033. '
  1034. '查詢1_bt
  1035. '
  1036. Me.查詢1_bt.BackgroundImage = CType(resources.GetObject("查詢1_bt.BackgroundImage"), System.Drawing.Image)
  1037. Me.查詢1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1038. Me.查詢1_bt.Location = New System.Drawing.Point(150, 43)
  1039. Me.查詢1_bt.Name = "查詢1_bt"
  1040. Me.查詢1_bt.Size = New System.Drawing.Size(23, 23)
  1041. Me.查詢1_bt.TabIndex = 1725
  1042. Me.查詢1_bt.UseVisualStyleBackColor = True
  1043. '
  1044. '總利潤_tb
  1045. '
  1046. Me.總利潤_tb.Location = New System.Drawing.Point(364, 165)
  1047. Me.總利潤_tb.Margin = New System.Windows.Forms.Padding(4)
  1048. Me.總利潤_tb.Name = "總利潤_tb"
  1049. Me.總利潤_tb.ReadOnly = True
  1050. Me.總利潤_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1051. Me.總利潤_tb.Size = New System.Drawing.Size(96, 23)
  1052. Me.總利潤_tb.TabIndex = 1726
  1053. '
  1054. 'Label26
  1055. '
  1056. Me.Label26.AutoSize = True
  1057. Me.Label26.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1058. Me.Label26.Location = New System.Drawing.Point(324, 167)
  1059. Me.Label26.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1060. Me.Label26.Name = "Label26"
  1061. Me.Label26.Size = New System.Drawing.Size(43, 16)
  1062. Me.Label26.TabIndex = 1727
  1063. Me.Label26.Text = "總利潤"
  1064. '
  1065. '收支單中新增一筆資料_bt
  1066. '
  1067. Me.收支單中新增一筆資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
  1068. Me.收支單中新增一筆資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1069. Me.收支單中新增一筆資料_bt.ForeColor = System.Drawing.Color.Green
  1070. Me.收支單中新增一筆資料_bt.Location = New System.Drawing.Point(480, 169)
  1071. Me.收支單中新增一筆資料_bt.Margin = New System.Windows.Forms.Padding(4)
  1072. Me.收支單中新增一筆資料_bt.Name = "收支單中新增一筆資料_bt"
  1073. Me.收支單中新增一筆資料_bt.Size = New System.Drawing.Size(40, 40)
  1074. Me.收支單中新增一筆資料_bt.TabIndex = 1725
  1075. Me.收支單中新增一筆資料_bt.UseVisualStyleBackColor = True
  1076. '
  1077. 'Panel3
  1078. '
  1079. Me.Panel3.Controls.Add(Me.狀態_tb)
  1080. Me.Panel3.Controls.Add(Me.地址_tb)
  1081. Me.Panel3.Controls.Add(Me.庫存_dgv)
  1082. Me.Panel3.Controls.Add(Me.料號1_tb)
  1083. Me.Panel3.Controls.Add(Me.公司名稱)
  1084. Me.Panel3.Controls.Add(Me.供應商編號_tb)
  1085. Me.Panel3.Controls.Add(Me.Label27)
  1086. Me.Panel3.Controls.Add(Me.成本)
  1087. Me.Panel3.Controls.Add(Me.品名)
  1088. Me.Panel3.Controls.Add(Me.Label23)
  1089. Me.Panel3.Controls.Add(Me.流水號_tb)
  1090. Me.Panel3.Controls.Add(Me.庫存量1)
  1091. Me.Panel3.Controls.Add(Me.Label24)
  1092. Me.Panel3.Controls.Add(Me.料號_tb)
  1093. Me.Panel3.Controls.Add(Me.Label33)
  1094. Me.Panel3.Location = New System.Drawing.Point(84, 244)
  1095. Me.Panel3.Name = "Panel3"
  1096. Me.Panel3.Size = New System.Drawing.Size(458, 480)
  1097. Me.Panel3.TabIndex = 1724
  1098. Me.Panel3.Visible = False
  1099. '
  1100. '狀態_tb
  1101. '
  1102. Me.狀態_tb.Location = New System.Drawing.Point(50, 304)
  1103. Me.狀態_tb.Margin = New System.Windows.Forms.Padding(4)
  1104. Me.狀態_tb.Name = "狀態_tb"
  1105. Me.狀態_tb.ReadOnly = True
  1106. Me.狀態_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1107. Me.狀態_tb.Size = New System.Drawing.Size(131, 23)
  1108. Me.狀態_tb.TabIndex = 1733
  1109. '
  1110. '地址_tb
  1111. '
  1112. Me.地址_tb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold)
  1113. Me.地址_tb.Location = New System.Drawing.Point(50, 348)
  1114. Me.地址_tb.Margin = New System.Windows.Forms.Padding(4)
  1115. Me.地址_tb.Name = "地址_tb"
  1116. Me.地址_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1117. Me.地址_tb.Size = New System.Drawing.Size(131, 29)
  1118. Me.地址_tb.TabIndex = 1691
  1119. '
  1120. '庫存_dgv
  1121. '
  1122. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1123. Me.庫存_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  1124. Me.庫存_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1125. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1126. Me.庫存_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1127. Me.庫存_dgv.BackgroundColor = System.Drawing.Color.White
  1128. Me.庫存_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1129. Me.庫存_dgv.Location = New System.Drawing.Point(211, 13)
  1130. Me.庫存_dgv.Margin = New System.Windows.Forms.Padding(4)
  1131. Me.庫存_dgv.Name = "庫存_dgv"
  1132. Me.庫存_dgv.ReadOnly = True
  1133. Me.庫存_dgv.RowHeadersWidth = 5
  1134. Me.庫存_dgv.RowTemplate.Height = 24
  1135. Me.庫存_dgv.Size = New System.Drawing.Size(158, 453)
  1136. Me.庫存_dgv.TabIndex = 1732
  1137. '
  1138. '料號1_tb
  1139. '
  1140. Me.料號1_tb.Location = New System.Drawing.Point(50, 273)
  1141. Me.料號1_tb.Margin = New System.Windows.Forms.Padding(4)
  1142. Me.料號1_tb.Name = "料號1_tb"
  1143. Me.料號1_tb.ReadOnly = True
  1144. Me.料號1_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1145. Me.料號1_tb.Size = New System.Drawing.Size(131, 23)
  1146. Me.料號1_tb.TabIndex = 1731
  1147. '
  1148. '公司名稱
  1149. '
  1150. Me.公司名稱.Location = New System.Drawing.Point(50, 242)
  1151. Me.公司名稱.Margin = New System.Windows.Forms.Padding(4)
  1152. Me.公司名稱.Name = "公司名稱"
  1153. Me.公司名稱.ReadOnly = True
  1154. Me.公司名稱.RightToLeft = System.Windows.Forms.RightToLeft.No
  1155. Me.公司名稱.Size = New System.Drawing.Size(131, 23)
  1156. Me.公司名稱.TabIndex = 1730
  1157. '
  1158. '供應商編號_tb
  1159. '
  1160. Me.供應商編號_tb.Location = New System.Drawing.Point(50, 211)
  1161. Me.供應商編號_tb.Margin = New System.Windows.Forms.Padding(4)
  1162. Me.供應商編號_tb.Name = "供應商編號_tb"
  1163. Me.供應商編號_tb.ReadOnly = True
  1164. Me.供應商編號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1165. Me.供應商編號_tb.Size = New System.Drawing.Size(131, 23)
  1166. Me.供應商編號_tb.TabIndex = 1729
  1167. '
  1168. 'Label27
  1169. '
  1170. Me.Label27.AutoSize = True
  1171. Me.Label27.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1172. Me.Label27.Location = New System.Drawing.Point(34, 191)
  1173. Me.Label27.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1174. Me.Label27.Name = "Label27"
  1175. Me.Label27.Size = New System.Drawing.Size(167, 16)
  1176. Me.Label27.TabIndex = 1728
  1177. Me.Label27.Text = "售價 - ( 進價 + 買入總成本 ) ="
  1178. '
  1179. '成本
  1180. '
  1181. Me.成本.Location = New System.Drawing.Point(50, 145)
  1182. Me.成本.Margin = New System.Windows.Forms.Padding(4)
  1183. Me.成本.Name = "成本"
  1184. Me.成本.ReadOnly = True
  1185. Me.成本.RightToLeft = System.Windows.Forms.RightToLeft.No
  1186. Me.成本.Size = New System.Drawing.Size(131, 23)
  1187. Me.成本.TabIndex = 1725
  1188. '
  1189. '品名
  1190. '
  1191. Me.品名.Location = New System.Drawing.Point(50, 94)
  1192. Me.品名.Margin = New System.Windows.Forms.Padding(4)
  1193. Me.品名.Name = "品名"
  1194. Me.品名.ReadOnly = True
  1195. Me.品名.RightToLeft = System.Windows.Forms.RightToLeft.No
  1196. Me.品名.Size = New System.Drawing.Size(131, 23)
  1197. Me.品名.TabIndex = 1724
  1198. '
  1199. '庫存量1
  1200. '
  1201. Me.庫存量1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1202. Me.庫存量1.Location = New System.Drawing.Point(98, 400)
  1203. Me.庫存量1.Margin = New System.Windows.Forms.Padding(4)
  1204. Me.庫存量1.Name = "庫存量1"
  1205. Me.庫存量1.ReadOnly = True
  1206. Me.庫存量1.RightToLeft = System.Windows.Forms.RightToLeft.No
  1207. Me.庫存量1.Size = New System.Drawing.Size(85, 23)
  1208. Me.庫存量1.TabIndex = 1731
  1209. '
  1210. 'Label24
  1211. '
  1212. Me.Label24.AutoSize = True
  1213. Me.Label24.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1214. Me.Label24.Location = New System.Drawing.Point(16, 52)
  1215. Me.Label24.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1216. Me.Label24.Name = "Label24"
  1217. Me.Label24.Size = New System.Drawing.Size(31, 16)
  1218. Me.Label24.TabIndex = 1723
  1219. Me.Label24.Text = "料號"
  1220. '
  1221. '料號_tb
  1222. '
  1223. Me.料號_tb.Location = New System.Drawing.Point(50, 49)
  1224. Me.料號_tb.Margin = New System.Windows.Forms.Padding(4)
  1225. Me.料號_tb.Name = "料號_tb"
  1226. Me.料號_tb.ReadOnly = True
  1227. Me.料號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1228. Me.料號_tb.Size = New System.Drawing.Size(131, 23)
  1229. Me.料號_tb.TabIndex = 1722
  1230. '
  1231. 'Label33
  1232. '
  1233. Me.Label33.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1234. Me.Label33.AutoSize = True
  1235. Me.Label33.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1236. Me.Label33.Location = New System.Drawing.Point(47, 404)
  1237. Me.Label33.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1238. Me.Label33.Name = "Label33"
  1239. Me.Label33.Size = New System.Drawing.Size(43, 16)
  1240. Me.Label33.TabIndex = 1732
  1241. Me.Label33.Text = "庫存量"
  1242. '
  1243. '收支單中新增一筆空白資料_bt
  1244. '
  1245. Me.收支單中新增一筆空白資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Edit_Text
  1246. Me.收支單中新增一筆空白資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1247. Me.收支單中新增一筆空白資料_bt.ForeColor = System.Drawing.Color.Green
  1248. Me.收支單中新增一筆空白資料_bt.Location = New System.Drawing.Point(525, 169)
  1249. Me.收支單中新增一筆空白資料_bt.Margin = New System.Windows.Forms.Padding(4)
  1250. Me.收支單中新增一筆空白資料_bt.Name = "收支單中新增一筆空白資料_bt"
  1251. Me.收支單中新增一筆空白資料_bt.Size = New System.Drawing.Size(40, 40)
  1252. Me.收支單中新增一筆空白資料_bt.TabIndex = 1718
  1253. Me.收支單中新增一筆空白資料_bt.UseVisualStyleBackColor = True
  1254. '
  1255. '刪除選中的一筆資料_bt
  1256. '
  1257. Me.刪除選中的一筆資料_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Close
  1258. Me.刪除選中的一筆資料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1259. Me.刪除選中的一筆資料_bt.ForeColor = System.Drawing.Color.Red
  1260. Me.刪除選中的一筆資料_bt.Location = New System.Drawing.Point(570, 169)
  1261. Me.刪除選中的一筆資料_bt.Margin = New System.Windows.Forms.Padding(4)
  1262. Me.刪除選中的一筆資料_bt.Name = "刪除選中的一筆資料_bt"
  1263. Me.刪除選中的一筆資料_bt.Size = New System.Drawing.Size(40, 40)
  1264. Me.刪除選中的一筆資料_bt.TabIndex = 1719
  1265. Me.刪除選中的一筆資料_bt.UseVisualStyleBackColor = True
  1266. '
  1267. '申請_bt
  1268. '
  1269. Me.申請_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Sendnow
  1270. Me.申請_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1271. Me.申請_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1272. Me.申請_bt.Location = New System.Drawing.Point(615, 170)
  1273. Me.申請_bt.Margin = New System.Windows.Forms.Padding(4)
  1274. Me.申請_bt.Name = "申請_bt"
  1275. Me.申請_bt.Size = New System.Drawing.Size(40, 40)
  1276. Me.申請_bt.TabIndex = 1717
  1277. Me.申請_bt.UseVisualStyleBackColor = True
  1278. '
  1279. '檢測日期_dtp
  1280. '
  1281. Me.檢測日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1282. Me.檢測日期_dtp.Location = New System.Drawing.Point(231, 4)
  1283. Me.檢測日期_dtp.Name = "檢測日期_dtp"
  1284. Me.檢測日期_dtp.Size = New System.Drawing.Size(132, 23)
  1285. Me.檢測日期_dtp.TabIndex = 1728
  1286. '
  1287. 'ToolTip1
  1288. '
  1289. Me.ToolTip1.IsBalloon = True
  1290. Me.ToolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info
  1291. Me.ToolTip1.ToolTipTitle = "系統說明"
  1292. '
  1293. '選擇日期_dtp
  1294. '
  1295. Me.選擇日期_dtp.Location = New System.Drawing.Point(453, 6)
  1296. Me.選擇日期_dtp.Name = "選擇日期_dtp"
  1297. Me.選擇日期_dtp.Size = New System.Drawing.Size(134, 23)
  1298. Me.選擇日期_dtp.TabIndex = 1731
  1299. '
  1300. 'Label29
  1301. '
  1302. Me.Label29.AutoSize = True
  1303. Me.Label29.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1304. Me.Label29.Location = New System.Drawing.Point(391, 7)
  1305. Me.Label29.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1306. Me.Label29.Name = "Label29"
  1307. Me.Label29.Size = New System.Drawing.Size(55, 16)
  1308. Me.Label29.TabIndex = 1730
  1309. Me.Label29.Text = "選擇日期"
  1310. '
  1311. 'Panel4
  1312. '
  1313. Me.Panel4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1314. Me.Panel4.Controls.Add(Me.Label1)
  1315. Me.Panel4.Controls.Add(Me.廠牌_tb)
  1316. Me.Panel4.Controls.Add(Me.年分_tb)
  1317. Me.Panel4.Controls.Add(Me.Label2)
  1318. Me.Panel4.Controls.Add(Me.檢測日期_dtp)
  1319. Me.Panel4.Controls.Add(Me.引擎_tb)
  1320. Me.Panel4.Controls.Add(Me.Label4)
  1321. Me.Panel4.Controls.Add(Me.Label3)
  1322. Me.Panel4.Controls.Add(Me.備註_tb)
  1323. Me.Panel4.Controls.Add(Me.Label5)
  1324. Me.Panel4.Location = New System.Drawing.Point(1178, 2)
  1325. Me.Panel4.Name = "Panel4"
  1326. Me.Panel4.Size = New System.Drawing.Size(696, 62)
  1327. Me.Panel4.TabIndex = 1733
  1328. '
  1329. 'Panel5
  1330. '
  1331. Me.Panel5.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1332. Or System.Windows.Forms.AnchorStyles.Left) _
  1333. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1334. Me.Panel5.Controls.Add(Me.Panel7)
  1335. Me.Panel5.Controls.Add(Me.明細表1_dgv)
  1336. Me.Panel5.Controls.Add(Me.GroupBox4)
  1337. Me.Panel5.Controls.Add(Me.GroupBox3)
  1338. Me.Panel5.Location = New System.Drawing.Point(676, 62)
  1339. Me.Panel5.Name = "Panel5"
  1340. Me.Panel5.Size = New System.Drawing.Size(1198, 787)
  1341. Me.Panel5.TabIndex = 1733
  1342. '
  1343. 'Panel7
  1344. '
  1345. Me.Panel7.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1346. Me.Panel7.Controls.Add(Me.註解4_tb)
  1347. Me.Panel7.Controls.Add(Me.註解3_tb)
  1348. Me.Panel7.Controls.Add(Me.註解2_tb)
  1349. Me.Panel7.Controls.Add(Me.註解1_tb)
  1350. Me.Panel7.Location = New System.Drawing.Point(671, 257)
  1351. Me.Panel7.Name = "Panel7"
  1352. Me.Panel7.Size = New System.Drawing.Size(424, 509)
  1353. Me.Panel7.TabIndex = 1749
  1354. Me.Panel7.Visible = False
  1355. '
  1356. '註解4_tb
  1357. '
  1358. Me.註解4_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1359. Me.註解4_tb.Location = New System.Drawing.Point(54, 386)
  1360. Me.註解4_tb.Multiline = True
  1361. Me.註解4_tb.Name = "註解4_tb"
  1362. Me.註解4_tb.Size = New System.Drawing.Size(329, 105)
  1363. Me.註解4_tb.TabIndex = 7
  1364. '
  1365. '註解3_tb
  1366. '
  1367. Me.註解3_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1368. Me.註解3_tb.Location = New System.Drawing.Point(54, 264)
  1369. Me.註解3_tb.Multiline = True
  1370. Me.註解3_tb.Name = "註解3_tb"
  1371. Me.註解3_tb.Size = New System.Drawing.Size(329, 105)
  1372. Me.註解3_tb.TabIndex = 6
  1373. '
  1374. '註解2_tb
  1375. '
  1376. Me.註解2_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1377. Me.註解2_tb.Location = New System.Drawing.Point(54, 132)
  1378. Me.註解2_tb.Multiline = True
  1379. Me.註解2_tb.Name = "註解2_tb"
  1380. Me.註解2_tb.Size = New System.Drawing.Size(329, 105)
  1381. Me.註解2_tb.TabIndex = 5
  1382. '
  1383. '註解1_tb
  1384. '
  1385. Me.註解1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1386. Me.註解1_tb.Location = New System.Drawing.Point(54, 12)
  1387. Me.註解1_tb.Multiline = True
  1388. Me.註解1_tb.Name = "註解1_tb"
  1389. Me.註解1_tb.Size = New System.Drawing.Size(329, 105)
  1390. Me.註解1_tb.TabIndex = 4
  1391. '
  1392. '明細表1_dgv
  1393. '
  1394. DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
  1395. Me.明細表1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
  1396. Me.明細表1_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1397. Or System.Windows.Forms.AnchorStyles.Left) _
  1398. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1399. Me.明細表1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1400. Me.明細表1_dgv.BackgroundColor = System.Drawing.Color.White
  1401. Me.明細表1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1402. Me.明細表1_dgv.Location = New System.Drawing.Point(8, 195)
  1403. Me.明細表1_dgv.Margin = New System.Windows.Forms.Padding(4)
  1404. Me.明細表1_dgv.Name = "明細表1_dgv"
  1405. Me.明細表1_dgv.RowHeadersWidth = 5
  1406. DataGridViewCellStyle7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1407. DataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1408. Me.明細表1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle7
  1409. Me.明細表1_dgv.RowTemplate.Height = 24
  1410. Me.明細表1_dgv.Size = New System.Drawing.Size(1187, 588)
  1411. Me.明細表1_dgv.TabIndex = 960
  1412. '
  1413. 'GroupBox4
  1414. '
  1415. Me.GroupBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1416. Me.GroupBox4.Controls.Add(Me.全部_tb)
  1417. Me.GroupBox4.Controls.Add(Me.Label57)
  1418. Me.GroupBox4.Controls.Add(Me.Label58)
  1419. Me.GroupBox4.Controls.Add(Me.總計_tb)
  1420. Me.GroupBox4.Controls.Add(Me.零件_tb)
  1421. Me.GroupBox4.Controls.Add(Me.Label40)
  1422. Me.GroupBox4.Controls.Add(Me.工資_tb)
  1423. Me.GroupBox4.Controls.Add(Me.稅金_tb)
  1424. Me.GroupBox4.Controls.Add(Me.Label35)
  1425. Me.GroupBox4.Controls.Add(Me.Label38)
  1426. Me.GroupBox4.Controls.Add(Me.現金_tb)
  1427. Me.GroupBox4.Controls.Add(Me.信用卡_tb)
  1428. Me.GroupBox4.Controls.Add(Me.Label34)
  1429. Me.GroupBox4.Controls.Add(Me.Label39)
  1430. Me.GroupBox4.Controls.Add(Me.支票_tb)
  1431. Me.GroupBox4.Controls.Add(Me.應收合計_tb)
  1432. Me.GroupBox4.Controls.Add(Me.Label37)
  1433. Me.GroupBox4.Controls.Add(Me.Label36)
  1434. Me.GroupBox4.Controls.Add(Me.賒帳_tb)
  1435. Me.GroupBox4.Location = New System.Drawing.Point(935, 2)
  1436. Me.GroupBox4.Name = "GroupBox4"
  1437. Me.GroupBox4.Size = New System.Drawing.Size(260, 189)
  1438. Me.GroupBox4.TabIndex = 1748
  1439. Me.GroupBox4.TabStop = False
  1440. Me.GroupBox4.Text = "金額"
  1441. '
  1442. '全部_tb
  1443. '
  1444. Me.全部_tb.Location = New System.Drawing.Point(96, 164)
  1445. Me.全部_tb.Margin = New System.Windows.Forms.Padding(4)
  1446. Me.全部_tb.Name = "全部_tb"
  1447. Me.全部_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1448. Me.全部_tb.Size = New System.Drawing.Size(76, 23)
  1449. Me.全部_tb.TabIndex = 1747
  1450. Me.全部_tb.Visible = False
  1451. '
  1452. 'Label57
  1453. '
  1454. Me.Label57.AutoSize = True
  1455. Me.Label57.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1456. Me.Label57.Location = New System.Drawing.Point(8, 20)
  1457. Me.Label57.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1458. Me.Label57.Name = "Label57"
  1459. Me.Label57.Size = New System.Drawing.Size(31, 16)
  1460. Me.Label57.TabIndex = 1716
  1461. Me.Label57.Text = "工資"
  1462. '
  1463. 'Label58
  1464. '
  1465. Me.Label58.AutoSize = True
  1466. Me.Label58.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1467. Me.Label58.Location = New System.Drawing.Point(133, 20)
  1468. Me.Label58.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1469. Me.Label58.Name = "Label58"
  1470. Me.Label58.Size = New System.Drawing.Size(31, 16)
  1471. Me.Label58.TabIndex = 1714
  1472. Me.Label58.Text = "零件"
  1473. '
  1474. '總計_tb
  1475. '
  1476. Me.總計_tb.Location = New System.Drawing.Point(43, 48)
  1477. Me.總計_tb.Margin = New System.Windows.Forms.Padding(4)
  1478. Me.總計_tb.Name = "總計_tb"
  1479. Me.總計_tb.ReadOnly = True
  1480. Me.總計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1481. Me.總計_tb.Size = New System.Drawing.Size(209, 23)
  1482. Me.總計_tb.TabIndex = 1745
  1483. '
  1484. '零件_tb
  1485. '
  1486. Me.零件_tb.Location = New System.Drawing.Point(168, 17)
  1487. Me.零件_tb.Margin = New System.Windows.Forms.Padding(4)
  1488. Me.零件_tb.Name = "零件_tb"
  1489. Me.零件_tb.ReadOnly = True
  1490. Me.零件_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1491. Me.零件_tb.Size = New System.Drawing.Size(84, 23)
  1492. Me.零件_tb.TabIndex = 1713
  1493. '
  1494. 'Label40
  1495. '
  1496. Me.Label40.AutoSize = True
  1497. Me.Label40.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1498. Me.Label40.Location = New System.Drawing.Point(8, 51)
  1499. Me.Label40.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1500. Me.Label40.Name = "Label40"
  1501. Me.Label40.Size = New System.Drawing.Size(31, 16)
  1502. Me.Label40.TabIndex = 1746
  1503. Me.Label40.Text = "總計"
  1504. '
  1505. '工資_tb
  1506. '
  1507. Me.工資_tb.Location = New System.Drawing.Point(43, 17)
  1508. Me.工資_tb.Margin = New System.Windows.Forms.Padding(4)
  1509. Me.工資_tb.Name = "工資_tb"
  1510. Me.工資_tb.ReadOnly = True
  1511. Me.工資_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1512. Me.工資_tb.Size = New System.Drawing.Size(76, 23)
  1513. Me.工資_tb.TabIndex = 1715
  1514. '
  1515. '稅金_tb
  1516. '
  1517. Me.稅金_tb.Location = New System.Drawing.Point(43, 79)
  1518. Me.稅金_tb.Margin = New System.Windows.Forms.Padding(4)
  1519. Me.稅金_tb.Name = "稅金_tb"
  1520. Me.稅金_tb.ReadOnly = True
  1521. Me.稅金_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1522. Me.稅金_tb.Size = New System.Drawing.Size(76, 23)
  1523. Me.稅金_tb.TabIndex = 1743
  1524. '
  1525. 'Label35
  1526. '
  1527. Me.Label35.AutoSize = True
  1528. Me.Label35.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1529. Me.Label35.Location = New System.Drawing.Point(133, 141)
  1530. Me.Label35.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1531. Me.Label35.Name = "Label35"
  1532. Me.Label35.Size = New System.Drawing.Size(31, 16)
  1533. Me.Label35.TabIndex = 1734
  1534. Me.Label35.Text = "現金"
  1535. '
  1536. 'Label38
  1537. '
  1538. Me.Label38.AutoSize = True
  1539. Me.Label38.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1540. Me.Label38.Location = New System.Drawing.Point(8, 82)
  1541. Me.Label38.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1542. Me.Label38.Name = "Label38"
  1543. Me.Label38.Size = New System.Drawing.Size(31, 16)
  1544. Me.Label38.TabIndex = 1744
  1545. Me.Label38.Text = "稅金"
  1546. '
  1547. '現金_tb
  1548. '
  1549. Me.現金_tb.Location = New System.Drawing.Point(168, 138)
  1550. Me.現金_tb.Margin = New System.Windows.Forms.Padding(4)
  1551. Me.現金_tb.Name = "現金_tb"
  1552. Me.現金_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1553. Me.現金_tb.Size = New System.Drawing.Size(83, 23)
  1554. Me.現金_tb.TabIndex = 1733
  1555. '
  1556. '信用卡_tb
  1557. '
  1558. Me.信用卡_tb.Location = New System.Drawing.Point(168, 79)
  1559. Me.信用卡_tb.Margin = New System.Windows.Forms.Padding(4)
  1560. Me.信用卡_tb.Name = "信用卡_tb"
  1561. Me.信用卡_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1562. Me.信用卡_tb.Size = New System.Drawing.Size(84, 23)
  1563. Me.信用卡_tb.TabIndex = 1741
  1564. '
  1565. 'Label34
  1566. '
  1567. Me.Label34.AutoSize = True
  1568. Me.Label34.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1569. Me.Label34.Location = New System.Drawing.Point(8, 141)
  1570. Me.Label34.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1571. Me.Label34.Name = "Label34"
  1572. Me.Label34.Size = New System.Drawing.Size(31, 16)
  1573. Me.Label34.TabIndex = 1736
  1574. Me.Label34.Text = "支票"
  1575. '
  1576. 'Label39
  1577. '
  1578. Me.Label39.AutoSize = True
  1579. Me.Label39.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1580. Me.Label39.Location = New System.Drawing.Point(121, 82)
  1581. Me.Label39.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1582. Me.Label39.Name = "Label39"
  1583. Me.Label39.Size = New System.Drawing.Size(43, 16)
  1584. Me.Label39.TabIndex = 1742
  1585. Me.Label39.Text = "信用卡"
  1586. '
  1587. '支票_tb
  1588. '
  1589. Me.支票_tb.Location = New System.Drawing.Point(43, 138)
  1590. Me.支票_tb.Margin = New System.Windows.Forms.Padding(4)
  1591. Me.支票_tb.Name = "支票_tb"
  1592. Me.支票_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1593. Me.支票_tb.Size = New System.Drawing.Size(76, 23)
  1594. Me.支票_tb.TabIndex = 1735
  1595. '
  1596. '應收合計_tb
  1597. '
  1598. Me.應收合計_tb.Location = New System.Drawing.Point(43, 110)
  1599. Me.應收合計_tb.Margin = New System.Windows.Forms.Padding(4)
  1600. Me.應收合計_tb.Name = "應收合計_tb"
  1601. Me.應收合計_tb.ReadOnly = True
  1602. Me.應收合計_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1603. Me.應收合計_tb.Size = New System.Drawing.Size(76, 23)
  1604. Me.應收合計_tb.TabIndex = 1739
  1605. '
  1606. 'Label37
  1607. '
  1608. Me.Label37.AutoSize = True
  1609. Me.Label37.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1610. Me.Label37.Location = New System.Drawing.Point(133, 113)
  1611. Me.Label37.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1612. Me.Label37.Name = "Label37"
  1613. Me.Label37.Size = New System.Drawing.Size(31, 16)
  1614. Me.Label37.TabIndex = 1738
  1615. Me.Label37.Text = "賒帳"
  1616. '
  1617. 'Label36
  1618. '
  1619. Me.Label36.AutoSize = True
  1620. Me.Label36.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1621. Me.Label36.Location = New System.Drawing.Point(6, 113)
  1622. Me.Label36.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1623. Me.Label36.Name = "Label36"
  1624. Me.Label36.Size = New System.Drawing.Size(31, 16)
  1625. Me.Label36.TabIndex = 1740
  1626. Me.Label36.Text = "合計"
  1627. '
  1628. '賒帳_tb
  1629. '
  1630. Me.賒帳_tb.Location = New System.Drawing.Point(168, 110)
  1631. Me.賒帳_tb.Margin = New System.Windows.Forms.Padding(4)
  1632. Me.賒帳_tb.Name = "賒帳_tb"
  1633. Me.賒帳_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1634. Me.賒帳_tb.Size = New System.Drawing.Size(83, 23)
  1635. Me.賒帳_tb.TabIndex = 1737
  1636. '
  1637. 'GroupBox3
  1638. '
  1639. Me.GroupBox3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1640. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1641. Me.GroupBox3.Controls.Add(Me.隱藏成本_cb)
  1642. Me.GroupBox3.Controls.Add(Me.年_tb)
  1643. Me.GroupBox3.Controls.Add(Me.Label45)
  1644. Me.GroupBox3.Controls.Add(Me.Label46)
  1645. Me.GroupBox3.Controls.Add(Me.輪胎尺寸_tb)
  1646. Me.GroupBox3.Controls.Add(Me.引擎號碼1_tb)
  1647. Me.GroupBox3.Controls.Add(Me.Label44)
  1648. Me.GroupBox3.Controls.Add(Me.Label56)
  1649. Me.GroupBox3.Controls.Add(Me.刪除選中的一筆資料1_bt)
  1650. Me.GroupBox3.Controls.Add(Me.申請1_bt)
  1651. Me.GroupBox3.Controls.Add(Me.收支單中新增一筆資料1_bt)
  1652. Me.GroupBox3.Controls.Add(Me.收支單中新增一筆空白資料1_bt)
  1653. Me.GroupBox3.Controls.Add(Me.Label55)
  1654. Me.GroupBox3.Controls.Add(Me.Label54)
  1655. Me.GroupBox3.Controls.Add(Me.Label53)
  1656. Me.GroupBox3.Controls.Add(Me.Label52)
  1657. Me.GroupBox3.Controls.Add(Me.Label50)
  1658. Me.GroupBox3.Controls.Add(Me.Label43)
  1659. Me.GroupBox3.Controls.Add(Me.車號_tb)
  1660. Me.GroupBox3.Controls.Add(Me.電話_tb)
  1661. Me.GroupBox3.Controls.Add(Me.車型_tb)
  1662. Me.GroupBox3.Controls.Add(Me.保養預示_tb)
  1663. Me.GroupBox3.Controls.Add(Me.車主名稱_tb)
  1664. Me.GroupBox3.Controls.Add(Me.Button2)
  1665. Me.GroupBox3.Controls.Add(Me.入廠日期_dtp)
  1666. Me.GroupBox3.Controls.Add(Me.里程_tb)
  1667. Me.GroupBox3.Location = New System.Drawing.Point(0, 0)
  1668. Me.GroupBox3.Name = "GroupBox3"
  1669. Me.GroupBox3.Size = New System.Drawing.Size(934, 191)
  1670. Me.GroupBox3.TabIndex = 1747
  1671. Me.GroupBox3.TabStop = False
  1672. Me.GroupBox3.Text = " 基本資料"
  1673. '
  1674. '隱藏成本_cb
  1675. '
  1676. Me.隱藏成本_cb.AutoSize = True
  1677. Me.隱藏成本_cb.Location = New System.Drawing.Point(191, 155)
  1678. Me.隱藏成本_cb.Name = "隱藏成本_cb"
  1679. Me.隱藏成本_cb.Size = New System.Drawing.Size(74, 20)
  1680. Me.隱藏成本_cb.TabIndex = 1746
  1681. Me.隱藏成本_cb.Text = "隱藏成本"
  1682. Me.隱藏成本_cb.UseVisualStyleBackColor = True
  1683. '
  1684. '年_tb
  1685. '
  1686. Me.年_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1687. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1688. Me.年_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1689. Me.年_tb.Location = New System.Drawing.Point(282, 92)
  1690. Me.年_tb.Margin = New System.Windows.Forms.Padding(4)
  1691. Me.年_tb.Name = "年_tb"
  1692. Me.年_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1693. Me.年_tb.Size = New System.Drawing.Size(644, 23)
  1694. Me.年_tb.TabIndex = 1744
  1695. '
  1696. 'Label45
  1697. '
  1698. Me.Label45.AutoSize = True
  1699. Me.Label45.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1700. Me.Label45.Location = New System.Drawing.Point(234, 97)
  1701. Me.Label45.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1702. Me.Label45.Name = "Label45"
  1703. Me.Label45.Size = New System.Drawing.Size(31, 16)
  1704. Me.Label45.TabIndex = 1745
  1705. Me.Label45.Text = "年份"
  1706. '
  1707. 'Label46
  1708. '
  1709. Me.Label46.AutoSize = True
  1710. Me.Label46.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1711. Me.Label46.Location = New System.Drawing.Point(5, 67)
  1712. Me.Label46.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1713. Me.Label46.Name = "Label46"
  1714. Me.Label46.Size = New System.Drawing.Size(55, 16)
  1715. Me.Label46.TabIndex = 1743
  1716. Me.Label46.Text = "輪胎尺寸"
  1717. '
  1718. '輪胎尺寸_tb
  1719. '
  1720. Me.輪胎尺寸_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1721. Me.輪胎尺寸_tb.Location = New System.Drawing.Point(71, 61)
  1722. Me.輪胎尺寸_tb.Margin = New System.Windows.Forms.Padding(4)
  1723. Me.輪胎尺寸_tb.Name = "輪胎尺寸_tb"
  1724. Me.輪胎尺寸_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1725. Me.輪胎尺寸_tb.Size = New System.Drawing.Size(138, 23)
  1726. Me.輪胎尺寸_tb.TabIndex = 1742
  1727. '
  1728. '引擎號碼1_tb
  1729. '
  1730. Me.引擎號碼1_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1731. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1732. Me.引擎號碼1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1733. Me.引擎號碼1_tb.Location = New System.Drawing.Point(280, 119)
  1734. Me.引擎號碼1_tb.Margin = New System.Windows.Forms.Padding(4)
  1735. Me.引擎號碼1_tb.Name = "引擎號碼1_tb"
  1736. Me.引擎號碼1_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1737. Me.引擎號碼1_tb.Size = New System.Drawing.Size(644, 23)
  1738. Me.引擎號碼1_tb.TabIndex = 1740
  1739. '
  1740. 'Label44
  1741. '
  1742. Me.Label44.AutoSize = True
  1743. Me.Label44.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1744. Me.Label44.Location = New System.Drawing.Point(210, 122)
  1745. Me.Label44.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1746. Me.Label44.Name = "Label44"
  1747. Me.Label44.Size = New System.Drawing.Size(55, 16)
  1748. Me.Label44.TabIndex = 1741
  1749. Me.Label44.Text = "引擎號碼"
  1750. '
  1751. 'Label56
  1752. '
  1753. Me.Label56.AutoSize = True
  1754. Me.Label56.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1755. Me.Label56.Location = New System.Drawing.Point(5, 41)
  1756. Me.Label56.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1757. Me.Label56.Name = "Label56"
  1758. Me.Label56.Size = New System.Drawing.Size(55, 16)
  1759. Me.Label56.TabIndex = 1739
  1760. Me.Label56.Text = "入廠日期"
  1761. '
  1762. '刪除選中的一筆資料1_bt
  1763. '
  1764. Me.刪除選中的一筆資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Close
  1765. Me.刪除選中的一筆資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1766. Me.刪除選中的一筆資料1_bt.ForeColor = System.Drawing.Color.Red
  1767. Me.刪除選中的一筆資料1_bt.Location = New System.Drawing.Point(96, 145)
  1768. Me.刪除選中的一筆資料1_bt.Margin = New System.Windows.Forms.Padding(4)
  1769. Me.刪除選中的一筆資料1_bt.Name = "刪除選中的一筆資料1_bt"
  1770. Me.刪除選中的一筆資料1_bt.Size = New System.Drawing.Size(40, 40)
  1771. Me.刪除選中的一筆資料1_bt.TabIndex = 1719
  1772. Me.刪除選中的一筆資料1_bt.UseVisualStyleBackColor = True
  1773. '
  1774. '申請1_bt
  1775. '
  1776. Me.申請1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Sendnow
  1777. Me.申請1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1778. Me.申請1_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1779. Me.申請1_bt.Location = New System.Drawing.Point(141, 145)
  1780. Me.申請1_bt.Margin = New System.Windows.Forms.Padding(4)
  1781. Me.申請1_bt.Name = "申請1_bt"
  1782. Me.申請1_bt.Size = New System.Drawing.Size(40, 40)
  1783. Me.申請1_bt.TabIndex = 1717
  1784. Me.申請1_bt.UseVisualStyleBackColor = True
  1785. '
  1786. '收支單中新增一筆資料1_bt
  1787. '
  1788. Me.收支單中新增一筆資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
  1789. Me.收支單中新增一筆資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1790. Me.收支單中新增一筆資料1_bt.ForeColor = System.Drawing.Color.Green
  1791. Me.收支單中新增一筆資料1_bt.Location = New System.Drawing.Point(7, 144)
  1792. Me.收支單中新增一筆資料1_bt.Margin = New System.Windows.Forms.Padding(4)
  1793. Me.收支單中新增一筆資料1_bt.Name = "收支單中新增一筆資料1_bt"
  1794. Me.收支單中新增一筆資料1_bt.Size = New System.Drawing.Size(40, 40)
  1795. Me.收支單中新增一筆資料1_bt.TabIndex = 1725
  1796. Me.收支單中新增一筆資料1_bt.UseVisualStyleBackColor = True
  1797. '
  1798. '收支單中新增一筆空白資料1_bt
  1799. '
  1800. Me.收支單中新增一筆空白資料1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Edit_Text
  1801. Me.收支單中新增一筆空白資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1802. Me.收支單中新增一筆空白資料1_bt.ForeColor = System.Drawing.Color.Green
  1803. Me.收支單中新增一筆空白資料1_bt.Location = New System.Drawing.Point(52, 144)
  1804. Me.收支單中新增一筆空白資料1_bt.Margin = New System.Windows.Forms.Padding(4)
  1805. Me.收支單中新增一筆空白資料1_bt.Name = "收支單中新增一筆空白資料1_bt"
  1806. Me.收支單中新增一筆空白資料1_bt.Size = New System.Drawing.Size(40, 40)
  1807. Me.收支單中新增一筆空白資料1_bt.TabIndex = 1718
  1808. Me.收支單中新增一筆空白資料1_bt.UseVisualStyleBackColor = True
  1809. '
  1810. 'Label55
  1811. '
  1812. Me.Label55.AutoSize = True
  1813. Me.Label55.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1814. Me.Label55.Location = New System.Drawing.Point(4, 92)
  1815. Me.Label55.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1816. Me.Label55.Name = "Label55"
  1817. Me.Label55.Size = New System.Drawing.Size(83, 16)
  1818. Me.Label55.TabIndex = 1738
  1819. Me.Label55.Text = "進廠里程(KM)"
  1820. '
  1821. 'Label54
  1822. '
  1823. Me.Label54.AutoSize = True
  1824. Me.Label54.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1825. Me.Label54.Location = New System.Drawing.Point(4, 119)
  1826. Me.Label54.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1827. Me.Label54.Name = "Label54"
  1828. Me.Label54.Size = New System.Drawing.Size(83, 16)
  1829. Me.Label54.TabIndex = 1737
  1830. Me.Label54.Text = "保養預示(KM)"
  1831. '
  1832. 'Label53
  1833. '
  1834. Me.Label53.AutoSize = True
  1835. Me.Label53.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1836. Me.Label53.Location = New System.Drawing.Point(234, 18)
  1837. Me.Label53.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1838. Me.Label53.Name = "Label53"
  1839. Me.Label53.Size = New System.Drawing.Size(31, 16)
  1840. Me.Label53.TabIndex = 1736
  1841. Me.Label53.Text = "車號"
  1842. '
  1843. 'Label52
  1844. '
  1845. Me.Label52.AutoSize = True
  1846. Me.Label52.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1847. Me.Label52.Location = New System.Drawing.Point(234, 42)
  1848. Me.Label52.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1849. Me.Label52.Name = "Label52"
  1850. Me.Label52.Size = New System.Drawing.Size(31, 16)
  1851. Me.Label52.TabIndex = 1735
  1852. Me.Label52.Text = "電話"
  1853. '
  1854. 'Label50
  1855. '
  1856. Me.Label50.AutoSize = True
  1857. Me.Label50.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1858. Me.Label50.Location = New System.Drawing.Point(234, 69)
  1859. Me.Label50.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1860. Me.Label50.Name = "Label50"
  1861. Me.Label50.Size = New System.Drawing.Size(31, 16)
  1862. Me.Label50.TabIndex = 1734
  1863. Me.Label50.Text = "車型"
  1864. '
  1865. 'Label43
  1866. '
  1867. Me.Label43.AutoSize = True
  1868. Me.Label43.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1869. Me.Label43.Location = New System.Drawing.Point(5, 18)
  1870. Me.Label43.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1871. Me.Label43.Name = "Label43"
  1872. Me.Label43.Size = New System.Drawing.Size(55, 16)
  1873. Me.Label43.TabIndex = 1732
  1874. Me.Label43.Text = "車主名稱"
  1875. '
  1876. '車號_tb
  1877. '
  1878. Me.車號_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1879. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1880. Me.車號_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1881. Me.車號_tb.Location = New System.Drawing.Point(281, 11)
  1882. Me.車號_tb.Margin = New System.Windows.Forms.Padding(4)
  1883. Me.車號_tb.Name = "車號_tb"
  1884. Me.車號_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1885. Me.車號_tb.Size = New System.Drawing.Size(646, 23)
  1886. Me.車號_tb.TabIndex = 1681
  1887. '
  1888. '電話_tb
  1889. '
  1890. Me.電話_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1891. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1892. Me.電話_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1893. Me.電話_tb.Location = New System.Drawing.Point(283, 38)
  1894. Me.電話_tb.Margin = New System.Windows.Forms.Padding(4)
  1895. Me.電話_tb.Name = "電話_tb"
  1896. Me.電話_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1897. Me.電話_tb.Size = New System.Drawing.Size(644, 23)
  1898. Me.電話_tb.TabIndex = 1689
  1899. '
  1900. '車型_tb
  1901. '
  1902. Me.車型_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1903. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1904. Me.車型_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1905. Me.車型_tb.Location = New System.Drawing.Point(283, 65)
  1906. Me.車型_tb.Margin = New System.Windows.Forms.Padding(4)
  1907. Me.車型_tb.Name = "車型_tb"
  1908. Me.車型_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1909. Me.車型_tb.Size = New System.Drawing.Size(644, 23)
  1910. Me.車型_tb.TabIndex = 1693
  1911. '
  1912. '保養預示_tb
  1913. '
  1914. Me.保養預示_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1915. Me.保養預示_tb.Location = New System.Drawing.Point(95, 115)
  1916. Me.保養預示_tb.Margin = New System.Windows.Forms.Padding(4)
  1917. Me.保養預示_tb.Name = "保養預示_tb"
  1918. Me.保養預示_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1919. Me.保養預示_tb.Size = New System.Drawing.Size(113, 23)
  1920. Me.保養預示_tb.TabIndex = 1695
  1921. '
  1922. '車主名稱_tb
  1923. '
  1924. Me.車主名稱_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1925. Me.車主名稱_tb.Location = New System.Drawing.Point(70, 11)
  1926. Me.車主名稱_tb.Margin = New System.Windows.Forms.Padding(4)
  1927. Me.車主名稱_tb.Name = "車主名稱_tb"
  1928. Me.車主名稱_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1929. Me.車主名稱_tb.Size = New System.Drawing.Size(114, 23)
  1930. Me.車主名稱_tb.TabIndex = 1685
  1931. '
  1932. 'Button2
  1933. '
  1934. Me.Button2.BackgroundImage = CType(resources.GetObject("Button2.BackgroundImage"), System.Drawing.Image)
  1935. Me.Button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1936. Me.Button2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold)
  1937. Me.Button2.Location = New System.Drawing.Point(191, 7)
  1938. Me.Button2.Name = "Button2"
  1939. Me.Button2.Size = New System.Drawing.Size(28, 29)
  1940. Me.Button2.TabIndex = 1725
  1941. Me.Button2.UseVisualStyleBackColor = True
  1942. '
  1943. '入廠日期_dtp
  1944. '
  1945. Me.入廠日期_dtp.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1946. Me.入廠日期_dtp.Location = New System.Drawing.Point(70, 36)
  1947. Me.入廠日期_dtp.Name = "入廠日期_dtp"
  1948. Me.入廠日期_dtp.Size = New System.Drawing.Size(142, 23)
  1949. Me.入廠日期_dtp.TabIndex = 1729
  1950. '
  1951. '里程_tb
  1952. '
  1953. Me.里程_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1954. Me.里程_tb.Location = New System.Drawing.Point(95, 88)
  1955. Me.里程_tb.Margin = New System.Windows.Forms.Padding(4)
  1956. Me.里程_tb.Name = "里程_tb"
  1957. Me.里程_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  1958. Me.里程_tb.Size = New System.Drawing.Size(115, 23)
  1959. Me.里程_tb.TabIndex = 1730
  1960. '
  1961. 'Panel6
  1962. '
  1963. Me.Panel6.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1964. Me.Panel6.Controls.Add(Me.Button3)
  1965. Me.Panel6.Controls.Add(Me.Label42)
  1966. Me.Panel6.Controls.Add(Me.Button1)
  1967. Me.Panel6.Controls.Add(Me.應驗車日_dtp)
  1968. Me.Panel6.Controls.Add(Me.是否收稅_cb)
  1969. Me.Panel6.Controls.Add(Me.Label41)
  1970. Me.Panel6.Controls.Add(Me.出險公司_tb)
  1971. Me.Panel6.Location = New System.Drawing.Point(1448, 1)
  1972. Me.Panel6.Name = "Panel6"
  1973. Me.Panel6.Size = New System.Drawing.Size(426, 62)
  1974. Me.Panel6.TabIndex = 1734
  1975. '
  1976. 'Button3
  1977. '
  1978. Me.Button3.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
  1979. Me.Button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1980. Me.Button3.Location = New System.Drawing.Point(273, 7)
  1981. Me.Button3.Name = "Button3"
  1982. Me.Button3.Size = New System.Drawing.Size(50, 50)
  1983. Me.Button3.TabIndex = 1733
  1984. Me.Button3.UseVisualStyleBackColor = True
  1985. '
  1986. 'Label42
  1987. '
  1988. Me.Label42.AutoSize = True
  1989. Me.Label42.ImeMode = System.Windows.Forms.ImeMode.NoControl
  1990. Me.Label42.Location = New System.Drawing.Point(4, 12)
  1991. Me.Label42.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1992. Me.Label42.Name = "Label42"
  1993. Me.Label42.Size = New System.Drawing.Size(55, 16)
  1994. Me.Label42.TabIndex = 1730
  1995. Me.Label42.Text = "應驗車日"
  1996. '
  1997. 'Button1
  1998. '
  1999. Me.Button1.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.pen
  2000. Me.Button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2001. Me.Button1.Location = New System.Drawing.Point(328, 7)
  2002. Me.Button1.Name = "Button1"
  2003. Me.Button1.Size = New System.Drawing.Size(50, 50)
  2004. Me.Button1.TabIndex = 1732
  2005. Me.Button1.UseVisualStyleBackColor = True
  2006. '
  2007. '應驗車日_dtp
  2008. '
  2009. Me.應驗車日_dtp.Location = New System.Drawing.Point(66, 7)
  2010. Me.應驗車日_dtp.Name = "應驗車日_dtp"
  2011. Me.應驗車日_dtp.Size = New System.Drawing.Size(119, 23)
  2012. Me.應驗車日_dtp.TabIndex = 1731
  2013. '
  2014. '是否收稅_cb
  2015. '
  2016. Me.是否收稅_cb.AutoSize = True
  2017. Me.是否收稅_cb.Location = New System.Drawing.Point(199, 15)
  2018. Me.是否收稅_cb.Name = "是否收稅_cb"
  2019. Me.是否收稅_cb.Size = New System.Drawing.Size(74, 20)
  2020. Me.是否收稅_cb.TabIndex = 1672
  2021. Me.是否收稅_cb.Text = "是否收稅"
  2022. Me.是否收稅_cb.UseVisualStyleBackColor = True
  2023. '
  2024. 'Label41
  2025. '
  2026. Me.Label41.AutoSize = True
  2027. Me.Label41.ImeMode = System.Windows.Forms.ImeMode.NoControl
  2028. Me.Label41.Location = New System.Drawing.Point(4, 39)
  2029. Me.Label41.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2030. Me.Label41.Name = "Label41"
  2031. Me.Label41.Size = New System.Drawing.Size(55, 16)
  2032. Me.Label41.TabIndex = 1671
  2033. Me.Label41.Text = "出險公司"
  2034. '
  2035. '出險公司_tb
  2036. '
  2037. Me.出險公司_tb.Location = New System.Drawing.Point(63, 35)
  2038. Me.出險公司_tb.Margin = New System.Windows.Forms.Padding(4)
  2039. Me.出險公司_tb.Name = "出險公司_tb"
  2040. Me.出險公司_tb.RightToLeft = System.Windows.Forms.RightToLeft.No
  2041. Me.出險公司_tb.Size = New System.Drawing.Size(129, 23)
  2042. Me.出險公司_tb.TabIndex = 1670
  2043. '
  2044. '查詢物_bt
  2045. '
  2046. Me.查詢物_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Search
  2047. Me.查詢物_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2048. Me.查詢物_bt.Location = New System.Drawing.Point(333, 2)
  2049. Me.查詢物_bt.Margin = New System.Windows.Forms.Padding(4)
  2050. Me.查詢物_bt.Name = "查詢物_bt"
  2051. Me.查詢物_bt.Size = New System.Drawing.Size(50, 50)
  2052. Me.查詢物_bt.TabIndex = 1735
  2053. Me.查詢物_bt.UseVisualStyleBackColor = True
  2054. '
  2055. '匯出EXCEL_bt
  2056. '
  2057. Me.匯出EXCEL_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.print
  2058. Me.匯出EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2059. Me.匯出EXCEL_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2060. Me.匯出EXCEL_bt.ForeColor = System.Drawing.Color.Red
  2061. Me.匯出EXCEL_bt.Location = New System.Drawing.Point(275, 0)
  2062. Me.匯出EXCEL_bt.Margin = New System.Windows.Forms.Padding(4)
  2063. Me.匯出EXCEL_bt.Name = "匯出EXCEL_bt"
  2064. Me.匯出EXCEL_bt.Size = New System.Drawing.Size(50, 50)
  2065. Me.匯出EXCEL_bt.TabIndex = 1729
  2066. Me.匯出EXCEL_bt.UseVisualStyleBackColor = True
  2067. '
  2068. '確認新增_bt
  2069. '
  2070. Me.確認新增_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER2
  2071. Me.確認新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2072. Me.確認新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2073. Me.確認新增_bt.ForeColor = System.Drawing.Color.Blue
  2074. Me.確認新增_bt.Location = New System.Drawing.Point(110, 0)
  2075. Me.確認新增_bt.Margin = New System.Windows.Forms.Padding(4)
  2076. Me.確認新增_bt.Name = "確認新增_bt"
  2077. Me.確認新增_bt.Size = New System.Drawing.Size(50, 50)
  2078. Me.確認新增_bt.TabIndex = 1669
  2079. Me.確認新增_bt.UseVisualStyleBackColor = True
  2080. '
  2081. '查詢_bt
  2082. '
  2083. Me.查詢_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.下載
  2084. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2085. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2086. Me.查詢_bt.Location = New System.Drawing.Point(0, 0)
  2087. Me.查詢_bt.Margin = New System.Windows.Forms.Padding(4)
  2088. Me.查詢_bt.Name = "查詢_bt"
  2089. Me.查詢_bt.Size = New System.Drawing.Size(50, 50)
  2090. Me.查詢_bt.TabIndex = 1668
  2091. Me.查詢_bt.UseVisualStyleBackColor = True
  2092. '
  2093. '刪除_bt
  2094. '
  2095. Me.刪除_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  2096. Me.刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2097. Me.刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2098. Me.刪除_bt.ForeColor = System.Drawing.Color.Red
  2099. Me.刪除_bt.Location = New System.Drawing.Point(220, 0)
  2100. Me.刪除_bt.Margin = New System.Windows.Forms.Padding(4)
  2101. Me.刪除_bt.Name = "刪除_bt"
  2102. Me.刪除_bt.Size = New System.Drawing.Size(50, 50)
  2103. Me.刪除_bt.TabIndex = 1667
  2104. Me.刪除_bt.UseVisualStyleBackColor = True
  2105. '
  2106. '新增_bt
  2107. '
  2108. Me.新增_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.add_2
  2109. Me.新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2110. Me.新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2111. Me.新增_bt.ForeColor = System.Drawing.Color.Blue
  2112. Me.新增_bt.Location = New System.Drawing.Point(55, 0)
  2113. Me.新增_bt.Margin = New System.Windows.Forms.Padding(4)
  2114. Me.新增_bt.Name = "新增_bt"
  2115. Me.新增_bt.Size = New System.Drawing.Size(50, 50)
  2116. Me.新增_bt.TabIndex = 1665
  2117. Me.新增_bt.UseVisualStyleBackColor = True
  2118. '
  2119. '修改_bt
  2120. '
  2121. Me.修改_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
  2122. Me.修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2123. Me.修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2124. Me.修改_bt.ForeColor = System.Drawing.Color.DarkGreen
  2125. Me.修改_bt.Location = New System.Drawing.Point(165, 0)
  2126. Me.修改_bt.Margin = New System.Windows.Forms.Padding(4)
  2127. Me.修改_bt.Name = "修改_bt"
  2128. Me.修改_bt.Size = New System.Drawing.Size(50, 50)
  2129. Me.修改_bt.TabIndex = 1666
  2130. Me.修改_bt.UseVisualStyleBackColor = True
  2131. '
  2132. '只顯示未付款_cb
  2133. '
  2134. Me.只顯示未付款_cb.AutoSize = True
  2135. Me.只顯示未付款_cb.Location = New System.Drawing.Point(44, 61)
  2136. Me.只顯示未付款_cb.Name = "只顯示未付款_cb"
  2137. Me.只顯示未付款_cb.Size = New System.Drawing.Size(98, 20)
  2138. Me.只顯示未付款_cb.TabIndex = 1736
  2139. Me.只顯示未付款_cb.Text = "只顯示未付款"
  2140. Me.只顯示未付款_cb.UseVisualStyleBackColor = True
  2141. '
  2142. '車輛銷售管理
  2143. '
  2144. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  2145. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  2146. Me.AutoScroll = True
  2147. Me.ClientSize = New System.Drawing.Size(1884, 861)
  2148. Me.Controls.Add(Me.只顯示未付款_cb)
  2149. Me.Controls.Add(Me.查詢物_bt)
  2150. Me.Controls.Add(Me.選擇日期_dtp)
  2151. Me.Controls.Add(Me.Label29)
  2152. Me.Controls.Add(Me.匯出EXCEL_bt)
  2153. Me.Controls.Add(Me.確認新增_bt)
  2154. Me.Controls.Add(Me.查詢_bt)
  2155. Me.Controls.Add(Me.刪除_bt)
  2156. Me.Controls.Add(Me.新增_bt)
  2157. Me.Controls.Add(Me.修改_bt)
  2158. Me.Controls.Add(Me.Label0)
  2159. Me.Controls.Add(Me.單號_tb)
  2160. Me.Controls.Add(Me.控制表_dgv)
  2161. Me.Controls.Add(Me.Panel1)
  2162. Me.Controls.Add(Me.Panel6)
  2163. Me.Controls.Add(Me.Panel4)
  2164. Me.Controls.Add(Me.Panel5)
  2165. Me.Controls.Add(Me.Panel2)
  2166. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2167. Me.Margin = New System.Windows.Forms.Padding(4)
  2168. Me.Name = "車輛銷售管理"
  2169. Me.Text = "車輛銷售管理"
  2170. CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2171. CType(Me.明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2172. Me.Panel1.ResumeLayout(False)
  2173. Me.Panel1.PerformLayout()
  2174. CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2175. Me.Panel2.ResumeLayout(False)
  2176. Me.Panel2.PerformLayout()
  2177. CType(Me.利潤率, System.ComponentModel.ISupportInitialize).EndInit()
  2178. Me.GroupBox2.ResumeLayout(False)
  2179. Me.GroupBox2.PerformLayout()
  2180. Me.GroupBox1.ResumeLayout(False)
  2181. Me.GroupBox1.PerformLayout()
  2182. Me.Panel3.ResumeLayout(False)
  2183. Me.Panel3.PerformLayout()
  2184. CType(Me.庫存_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2185. Me.Panel4.ResumeLayout(False)
  2186. Me.Panel4.PerformLayout()
  2187. Me.Panel5.ResumeLayout(False)
  2188. Me.Panel7.ResumeLayout(False)
  2189. Me.Panel7.PerformLayout()
  2190. CType(Me.明細表1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2191. Me.GroupBox4.ResumeLayout(False)
  2192. Me.GroupBox4.PerformLayout()
  2193. Me.GroupBox3.ResumeLayout(False)
  2194. Me.GroupBox3.PerformLayout()
  2195. Me.Panel6.ResumeLayout(False)
  2196. Me.Panel6.PerformLayout()
  2197. Me.ResumeLayout(False)
  2198. Me.PerformLayout()
  2199. End Sub
  2200. Friend WithEvents 控制表_dgv As DataGridView
  2201. Friend WithEvents 明細表_dgv As DataGridView
  2202. Friend WithEvents 單號_tb As TextBox
  2203. Friend WithEvents Label0 As Label
  2204. Friend WithEvents 確認新增_bt As Button
  2205. Friend WithEvents 查詢_bt As Button
  2206. Friend WithEvents 刪除_bt As Button
  2207. Friend WithEvents 新增_bt As Button
  2208. Friend WithEvents 修改_bt As Button
  2209. Friend WithEvents Label1 As Label
  2210. Friend WithEvents 廠牌_tb As TextBox
  2211. Friend WithEvents Label2 As Label
  2212. Friend WithEvents 年分_tb As TextBox
  2213. Friend WithEvents Label3 As Label
  2214. Friend WithEvents Label4 As Label
  2215. Friend WithEvents 引擎_tb As TextBox
  2216. Friend WithEvents Label5 As Label
  2217. Friend WithEvents 備註_tb As TextBox
  2218. Friend WithEvents Label6 As Label
  2219. Friend WithEvents Label7 As Label
  2220. Friend WithEvents 買入車主名稱_tb As TextBox
  2221. Friend WithEvents Label8 As Label
  2222. Friend WithEvents 買入顏色_tb As TextBox
  2223. Friend WithEvents label As Label
  2224. Friend WithEvents 買入牌照號碼_tb As TextBox
  2225. Friend WithEvents Label9 As Label
  2226. Friend WithEvents 買入車主電話_tb As TextBox
  2227. Friend WithEvents Label10 As Label
  2228. Friend WithEvents 買入車主地址_tb As TextBox
  2229. Friend WithEvents Label11 As Label
  2230. Friend WithEvents 買入經手人_tb As TextBox
  2231. Friend WithEvents Label12 As Label
  2232. Friend WithEvents 進價_tb As TextBox
  2233. Friend WithEvents Label13 As Label
  2234. Friend WithEvents 賣出經手人_tb As TextBox
  2235. Friend WithEvents Label14 As Label
  2236. Friend WithEvents 售價_tb As TextBox
  2237. Friend WithEvents Label15 As Label
  2238. Friend WithEvents 賣出車主地址_tb As TextBox
  2239. Friend WithEvents Label16 As Label
  2240. Friend WithEvents 賣出車主電話_tb As TextBox
  2241. Friend WithEvents Label17 As Label
  2242. Friend WithEvents Label18 As Label
  2243. Friend WithEvents 賣出車主名稱_tb As TextBox
  2244. Friend WithEvents Label19 As Label
  2245. Friend WithEvents 賣出顏色_tb As TextBox
  2246. Friend WithEvents Label20 As Label
  2247. Friend WithEvents 賣出牌照號碼_tb As TextBox
  2248. Friend WithEvents Label21 As Label
  2249. Friend WithEvents 總成本_tb As TextBox
  2250. Friend WithEvents Label22 As Label
  2251. Friend WithEvents 支出合計_tb As TextBox
  2252. Friend WithEvents 收支單中新增一筆空白資料_bt As Button
  2253. Friend WithEvents 申請_bt As Button
  2254. Friend WithEvents 刪除選中的一筆資料_bt As Button
  2255. Friend WithEvents Label23 As Label
  2256. Friend WithEvents 流水號_tb As TextBox
  2257. Friend WithEvents Panel1 As Panel
  2258. Friend WithEvents Panel2 As Panel
  2259. Friend WithEvents 料號_tb As TextBox
  2260. Friend WithEvents Label24 As Label
  2261. Friend WithEvents 物料_dgv As DataGridView
  2262. Friend WithEvents GroupBox1 As GroupBox
  2263. Friend WithEvents 查詢1_bt As Button
  2264. Friend WithEvents GroupBox2 As GroupBox
  2265. Friend WithEvents 查詢2_bt As Button
  2266. Friend WithEvents 檢測日期_dtp As DateTimePicker
  2267. Friend WithEvents 買入日期_dtp As DateTimePicker
  2268. Friend WithEvents 賣出日期_dtp As DateTimePicker
  2269. Friend WithEvents 收支單中新增一筆資料_bt As Button
  2270. Friend WithEvents Panel3 As Panel
  2271. Friend WithEvents 成本 As TextBox
  2272. Friend WithEvents 品名 As TextBox
  2273. Friend WithEvents 選擇供應商_cb As ComboBox
  2274. Friend WithEvents Label25 As Label
  2275. Friend WithEvents Label27 As Label
  2276. Friend WithEvents 總利潤_tb As TextBox
  2277. Friend WithEvents Label26 As Label
  2278. Friend WithEvents 利潤率 As NumericUpDown
  2279. Friend WithEvents Label28 As Label
  2280. Friend WithEvents 供應商編號_tb As TextBox
  2281. Friend WithEvents ToolTip1 As ToolTip
  2282. Friend WithEvents 已交車_cb As CheckBox
  2283. Friend WithEvents 匯出EXCEL_bt As Button
  2284. Friend WithEvents 公司名稱 As TextBox
  2285. Friend WithEvents 料號1_tb As TextBox
  2286. Friend WithEvents 選擇日期_dtp As DateTimePicker
  2287. Friend WithEvents Label29 As Label
  2288. Friend WithEvents 庫存_dgv As DataGridView
  2289. Friend WithEvents TextBox1 As TextBox
  2290. Friend WithEvents Label30 As Label
  2291. Friend WithEvents Label32 As Label
  2292. Friend WithEvents 出廠里程_tb As TextBox
  2293. Friend WithEvents Label31 As Label
  2294. Friend WithEvents 進廠里程_tb As TextBox
  2295. Friend WithEvents Panel4 As Panel
  2296. Friend WithEvents Panel5 As Panel
  2297. Friend WithEvents 庫存量1 As TextBox
  2298. Friend WithEvents 里程_tb As TextBox
  2299. Friend WithEvents Label33 As Label
  2300. Friend WithEvents 入廠日期_dtp As DateTimePicker
  2301. Friend WithEvents Button2 As Button
  2302. Friend WithEvents 車主名稱_tb As TextBox
  2303. Friend WithEvents 保養預示_tb As TextBox
  2304. Friend WithEvents 車型_tb As TextBox
  2305. Friend WithEvents 收支單中新增一筆資料1_bt As Button
  2306. Friend WithEvents 電話_tb As TextBox
  2307. Friend WithEvents 收支單中新增一筆空白資料1_bt As Button
  2308. Friend WithEvents 工資_tb As TextBox
  2309. Friend WithEvents Label57 As Label
  2310. Friend WithEvents 刪除選中的一筆資料1_bt As Button
  2311. Friend WithEvents 申請1_bt As Button
  2312. Friend WithEvents 車號_tb As TextBox
  2313. Friend WithEvents 零件_tb As TextBox
  2314. Friend WithEvents Label58 As Label
  2315. Friend WithEvents 總計_tb As TextBox
  2316. Friend WithEvents Label40 As Label
  2317. Friend WithEvents 稅金_tb As TextBox
  2318. Friend WithEvents Label38 As Label
  2319. Friend WithEvents 信用卡_tb As TextBox
  2320. Friend WithEvents Label39 As Label
  2321. Friend WithEvents 應收合計_tb As TextBox
  2322. Friend WithEvents Label36 As Label
  2323. Friend WithEvents 賒帳_tb As TextBox
  2324. Friend WithEvents Label37 As Label
  2325. Friend WithEvents 支票_tb As TextBox
  2326. Friend WithEvents Label34 As Label
  2327. Friend WithEvents 現金_tb As TextBox
  2328. Friend WithEvents Label35 As Label
  2329. Friend WithEvents GroupBox4 As GroupBox
  2330. Friend WithEvents GroupBox3 As GroupBox
  2331. Friend WithEvents Panel6 As Panel
  2332. Friend WithEvents 是否收稅_cb As CheckBox
  2333. Friend WithEvents Label41 As Label
  2334. Friend WithEvents 出險公司_tb As TextBox
  2335. Friend WithEvents Label42 As Label
  2336. Friend WithEvents 應驗車日_dtp As DateTimePicker
  2337. Friend WithEvents 狀態_tb As TextBox
  2338. Friend WithEvents Button1 As Button
  2339. Friend WithEvents Panel7 As Panel
  2340. Friend WithEvents 註解4_tb As TextBox
  2341. Friend WithEvents 註解3_tb As TextBox
  2342. Friend WithEvents 註解2_tb As TextBox
  2343. Friend WithEvents 註解1_tb As TextBox
  2344. Friend WithEvents Button3 As Button
  2345. Friend WithEvents 查詢物_bt As Button
  2346. Friend WithEvents 地址_tb As TextBox
  2347. Friend WithEvents Label56 As Label
  2348. Friend WithEvents Label55 As Label
  2349. Friend WithEvents Label54 As Label
  2350. Friend WithEvents Label53 As Label
  2351. Friend WithEvents Label52 As Label
  2352. Friend WithEvents Label50 As Label
  2353. Friend WithEvents Label43 As Label
  2354. Friend WithEvents 引擎號碼1_tb As TextBox
  2355. Friend WithEvents Label44 As Label
  2356. Friend WithEvents 明細表1_dgv As DataGridView
  2357. Friend WithEvents 年_tb As TextBox
  2358. Friend WithEvents Label45 As Label
  2359. Friend WithEvents Label46 As Label
  2360. Friend WithEvents 輪胎尺寸_tb As TextBox
  2361. Friend WithEvents 顯示成本_cb As CheckBox
  2362. Friend WithEvents 隱藏成本_cb As CheckBox
  2363. Friend WithEvents 只顯示未付款_cb As CheckBox
  2364. Friend WithEvents 全部_tb As TextBox
  2365. End Class