123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class 合約報價單審核
- Inherits System.Windows.Forms.Form
-
- 'Form 覆寫 Dispose 以清除元件清單。
- <System.Diagnostics.DebuggerNonUserCode()>
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
-
- '為 Windows Form 設計工具的必要項
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下為 Windows Form 設計工具所需的程序
- '可以使用 Windows Form 設計工具進行修改。
- '請勿使用程式碼編輯器進行修改。
- <System.Diagnostics.DebuggerStepThrough()>
- Private Sub InitializeComponent()
- Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.合約編號3_tb = New System.Windows.Forms.TextBox()
- Me.合約編號2_tb = New System.Windows.Forms.TextBox()
- Me.明細選項_bt = New System.Windows.Forms.TextBox()
- Me.項目流水_tb = New System.Windows.Forms.TextBox()
- Me.選擇項3_tb = New System.Windows.Forms.TextBox()
- Me.連動編號_tb = New System.Windows.Forms.TextBox()
- Me.PictureBox2 = New System.Windows.Forms.PictureBox()
- Me.PictureBox1 = New System.Windows.Forms.PictureBox()
- Me.合約改版_bt = New System.Windows.Forms.Button()
- Me.工程期_ch = New System.Windows.Forms.ComboBox()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.選擇項2_tb = New System.Windows.Forms.TextBox()
- Me.DGV位置2 = New System.Windows.Forms.NumericUpDown()
- Me.DGV位置1 = New System.Windows.Forms.NumericUpDown()
- Me.明細表流水_tb = New System.Windows.Forms.TextBox()
- Me.總表流水_tb = New System.Windows.Forms.TextBox()
- Me.Y_2_tb = New System.Windows.Forms.TextBox()
- Me.Y_3_tb = New System.Windows.Forms.TextBox()
- Me.係數合約號_tb = New System.Windows.Forms.TextBox()
- Me.Label42 = New System.Windows.Forms.Label()
- Me.Label379 = New System.Windows.Forms.Label()
- Me.最末頁_cb = New System.Windows.Forms.ComboBox()
- Me.NUD1 = New System.Windows.Forms.NumericUpDown()
- Me.Label43 = New System.Windows.Forms.Label()
- Me.合約編號1_tb = New System.Windows.Forms.TextBox()
- Me.合約編號_cb = New System.Windows.Forms.ComboBox()
- Me.Label397 = New System.Windows.Forms.Label()
- Me.金額6_und = New System.Windows.Forms.NumericUpDown()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
- Me.合約種類_tb = New System.Windows.Forms.TextBox()
- Me.語言_dgv = New System.Windows.Forms.DataGridView()
- Me.NUD2 = New System.Windows.Forms.NumericUpDown()
- Me.係數流水號_tb = New System.Windows.Forms.TextBox()
- Me.群組編碼_cb = New System.Windows.Forms.ComboBox()
- Me.X_2_tb = New System.Windows.Forms.TextBox()
- Me.X_3_tb = New System.Windows.Forms.TextBox()
- Me.存檔比較_dgv = New System.Windows.Forms.DataGridView()
- Me.範例文本_dgv = New System.Windows.Forms.DataGridView()
- Me.群組碼_tb = New System.Windows.Forms.TextBox()
- Me.表號_tb = New System.Windows.Forms.TextBox()
- Me.表頭_tb = New System.Windows.Forms.TextBox()
- Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.試算控制表_dgv = New System.Windows.Forms.DataGridView()
- Me.最高扣款_bt = New System.Windows.Forms.TextBox()
- Me.工程合約報價明細_tc = New System.Windows.Forms.TabPage()
- Me.詳細資料2_ch = New System.Windows.Forms.CheckBox()
- Me.報價係數_dgv = New System.Windows.Forms.DataGridView()
- Me.報價單立約日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.Label27 = New System.Windows.Forms.Label()
- Me.Label26 = New System.Windows.Forms.Label()
- Me.報價單合約編號_tb = New System.Windows.Forms.TextBox()
- Me.報價工程名稱_英_tb = New System.Windows.Forms.TextBox()
- Me.報價工程名稱_中_tb = New System.Windows.Forms.TextBox()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.報價單客戶名稱_cb = New System.Windows.Forms.ComboBox()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.報價明細表_dgv = New System.Windows.Forms.DataGridView()
- Me.Panel5 = New System.Windows.Forms.Panel()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.Label33 = New System.Windows.Forms.Label()
- Me.工資_ch = New System.Windows.Forms.CheckBox()
- Me.料號_tb = New System.Windows.Forms.TextBox()
- Me.單位2_tb = New System.Windows.Forms.TextBox()
- Me.Label32 = New System.Windows.Forms.Label()
- Me.申請數_lb = New System.Windows.Forms.Label()
- Me.ITEM3_cb = New System.Windows.Forms.ComboBox()
- Me.申請數_nud = New System.Windows.Forms.NumericUpDown()
- Me.利潤表_ch = New System.Windows.Forms.CheckBox()
- Me.材料_ch = New System.Windows.Forms.CheckBox()
- Me.物料圖1_pb = New System.Windows.Forms.PictureBox()
- Me.Label372 = New System.Windows.Forms.Label()
- Me.Label394 = New System.Windows.Forms.Label()
- Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
- Me.Label396 = New System.Windows.Forms.Label()
- Me.Label373 = New System.Windows.Forms.Label()
- Me.NUD3 = New System.Windows.Forms.NumericUpDown()
- Me.Label374 = New System.Windows.Forms.Label()
- Me.合約種類_cb = New System.Windows.Forms.ComboBox()
- Me.Label375 = New System.Windows.Forms.Label()
- Me.逾期_bt = New System.Windows.Forms.TextBox()
- Me.存檔_bt = New System.Windows.Forms.Button()
- Me.使用計算機_ch = New System.Windows.Forms.CheckBox()
- Me.直接輸入_ch = New System.Windows.Forms.CheckBox()
- Me.材料加入1_bt = New System.Windows.Forms.Button()
- Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
- Me.Label395 = New System.Windows.Forms.Label()
- Me.客戶地址_tb = New System.Windows.Forms.TextBox()
- Me.Label393 = New System.Windows.Forms.Label()
- Me.金額5_und = New System.Windows.Forms.NumericUpDown()
- Me.係數_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label380 = New System.Windows.Forms.Label()
- Me.刪除1_bt = New System.Windows.Forms.Button()
- Me.工程地點_tb = New System.Windows.Forms.TextBox()
- Me.Label406 = New System.Windows.Forms.Label()
- Me.金額4_und = New System.Windows.Forms.NumericUpDown()
- Me.逾期_英_bt = New System.Windows.Forms.TextBox()
- Me.Label376 = New System.Windows.Forms.Label()
- Me.工期_nud = New System.Windows.Forms.NumericUpDown()
- Me.金額3_und = New System.Windows.Forms.NumericUpDown()
- Me.最高扣款_英_bt = New System.Windows.Forms.TextBox()
- Me.Label414 = New System.Windows.Forms.Label()
- Me.Label391 = New System.Windows.Forms.Label()
- Me.金額2_und = New System.Windows.Forms.NumericUpDown()
- Me.Label403 = New System.Windows.Forms.Label()
- Me.工程合約試算表_tc = New System.Windows.Forms.TabPage()
- Me.詳細資料3_ch = New System.Windows.Forms.CheckBox()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.修改樓層_迴圈_bt = New System.Windows.Forms.Button()
- Me.新增物件_bt = New System.Windows.Forms.Button()
- Me.料號_lb = New System.Windows.Forms.Label()
- Me.樓層_迴路_cb = New System.Windows.Forms.ComboBox()
- Me.料號1_tb = New System.Windows.Forms.TextBox()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.修改試算表名稱_bt = New System.Windows.Forms.Button()
- Me.新增試算表_bt = New System.Windows.Forms.Button()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.試算表_cb = New System.Windows.Forms.ComboBox()
- Me.試算表_dgv = New System.Windows.Forms.DataGridView()
- Me.物料圖_pb = New System.Windows.Forms.PictureBox()
- Me.選擇公司_cb = New System.Windows.Forms.ComboBox()
- Me.立約日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.負責人_B_cb = New System.Windows.Forms.ComboBox()
- Me.金額1_und = New System.Windows.Forms.NumericUpDown()
- Me.Label407 = New System.Windows.Forms.Label()
- Me.Label410 = New System.Windows.Forms.Label()
- Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label408 = New System.Windows.Forms.Label()
- Me.Label377 = New System.Windows.Forms.Label()
- Me.Label405 = New System.Windows.Forms.Label()
- Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
- Me.減價_bt = New System.Windows.Forms.TextBox()
- Me.頁數_bt = New System.Windows.Forms.TextBox()
- Me.Label409 = New System.Windows.Forms.Label()
- Me.Label399 = New System.Windows.Forms.Label()
- Me.負責人_A_cb = New System.Windows.Forms.ComboBox()
- Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
- Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label404 = New System.Windows.Forms.Label()
- Me.Label413 = New System.Windows.Forms.Label()
- Me.Label412 = New System.Windows.Forms.Label()
- Me.Label400 = New System.Windows.Forms.Label()
- Me.我司地址_tb = New System.Windows.Forms.TextBox()
- Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
- Me.放行_bt = New System.Windows.Forms.Button()
- Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
- Me.存檔_tb = New System.Windows.Forms.Button()
- Me.合約停止_ch = New System.Windows.Forms.CheckBox()
- Me.列印成EXCEL_bt = New System.Windows.Forms.Button()
- Me.縮放2_bt = New System.Windows.Forms.Button()
- Me.合約_dgv = New System.Windows.Forms.DataGridView()
- Me.錨點2 = New System.Windows.Forms.TextBox()
- Me.縮放1_bt = New System.Windows.Forms.Button()
- Me.查詢_bt = New System.Windows.Forms.Button()
- Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
- Me.Label53 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.工材分離_ch = New System.Windows.Forms.CheckBox()
- Me.空間3 = New System.Windows.Forms.Panel()
- Me.歸零數_tb = New System.Windows.Forms.TextBox()
- Me.利潤比4_tb = New System.Windows.Forms.TextBox()
- Me.Label71 = New System.Windows.Forms.Label()
- Me.Label70 = New System.Windows.Forms.Label()
- Me.Label69 = New System.Windows.Forms.Label()
- Me.Label68 = New System.Windows.Forms.Label()
- Me.Label67 = New System.Windows.Forms.Label()
- Me.Label64 = New System.Windows.Forms.Label()
- Me.Label63 = New System.Windows.Forms.Label()
- Me.利潤比3_tb = New System.Windows.Forms.TextBox()
- Me.Label60 = New System.Windows.Forms.Label()
- Me.總報價_tb = New System.Windows.Forms.TextBox()
- Me.總成本_tb = New System.Windows.Forms.TextBox()
- Me.Label58 = New System.Windows.Forms.Label()
- Me.Label59 = New System.Windows.Forms.Label()
- Me.利潤比2_tb = New System.Windows.Forms.TextBox()
- Me.Label57 = New System.Windows.Forms.Label()
- Me.利潤比1_tb = New System.Windows.Forms.TextBox()
- Me.預估利潤_tb = New System.Windows.Forms.TextBox()
- Me.預估材料總報價_tb = New System.Windows.Forms.TextBox()
- Me.預估工資總報價_tb = New System.Windows.Forms.TextBox()
- Me.預估材料總成本_tb = New System.Windows.Forms.TextBox()
- Me.Label54 = New System.Windows.Forms.Label()
- Me.預估工資總成本_tb = New System.Windows.Forms.TextBox()
- Me.Label55 = New System.Windows.Forms.Label()
- Me.Label65 = New System.Windows.Forms.Label()
- Me.Label62 = New System.Windows.Forms.Label()
- Me.Label66 = New System.Windows.Forms.Label()
- Me.Label61 = New System.Windows.Forms.Label()
- Me.TabControl3 = New System.Windows.Forms.TabControl()
- Me.TabPage1 = New System.Windows.Forms.TabPage()
- Me.折價計算_bt = New System.Windows.Forms.Button()
- Me.Label83 = New System.Windows.Forms.Label()
- Me.甲方_cb = New System.Windows.Forms.ComboBox()
- Me.未折價前_tb = New System.Windows.Forms.TextBox()
- Me.Label82 = New System.Windows.Forms.Label()
- Me.歸零位數_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label81 = New System.Windows.Forms.Label()
- Me.稅後歸零_ch = New System.Windows.Forms.CheckBox()
- Me.稅前歸零_ch = New System.Windows.Forms.CheckBox()
- Me.Label80 = New System.Windows.Forms.Label()
- Me.折讓比例_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label79 = New System.Windows.Forms.Label()
- Me.報價小計_tb = New System.Windows.Forms.TextBox()
- Me.Label39 = New System.Windows.Forms.Label()
- Me.TabPage2 = New System.Windows.Forms.TabPage()
- Me.報價說明_tb = New System.Windows.Forms.TextBox()
- Me.Panel2 = New System.Windows.Forms.Panel()
- Me.Label378 = New System.Windows.Forms.Label()
- Me.廠區_中文_tb = New System.Windows.Forms.TextBox()
- Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.Label382 = New System.Windows.Forms.Label()
- Me.稅額顯示_lb = New System.Windows.Forms.Label()
- Me.CH2 = New System.Windows.Forms.CheckBox()
- Me.CH1 = New System.Windows.Forms.CheckBox()
- Me.Label402 = New System.Windows.Forms.Label()
- Me.Label392 = New System.Windows.Forms.Label()
- Me.Label381 = New System.Windows.Forms.Label()
- Me.Label386 = New System.Windows.Forms.Label()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.TabControl2 = New System.Windows.Forms.TabControl()
- Me.TabPage5 = New System.Windows.Forms.TabPage()
- Me.第1期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage6 = New System.Windows.Forms.TabPage()
- Me.第2期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage7 = New System.Windows.Forms.TabPage()
- Me.第3期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage8 = New System.Windows.Forms.TabPage()
- Me.第4期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage9 = New System.Windows.Forms.TabPage()
- Me.第5期_dgv = New System.Windows.Forms.DataGridView()
- Me.Label388 = New System.Windows.Forms.Label()
- Me.Label387 = New System.Windows.Forms.Label()
- Me.Label390 = New System.Windows.Forms.Label()
- Me.Label389 = New System.Windows.Forms.Label()
- Me.Label411 = New System.Windows.Forms.Label()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.Label35 = New System.Windows.Forms.Label()
- Me.Label34 = New System.Windows.Forms.Label()
- Me.建立合約資料_tc = New System.Windows.Forms.TabPage()
- Me.印尼盾_ch = New System.Windows.Forms.CheckBox()
- Me.人民幣_ch = New System.Windows.Forms.CheckBox()
- Me.美金_ch = New System.Windows.Forms.CheckBox()
- Me.台幣_ch = New System.Windows.Forms.CheckBox()
- Me.合約編號清單_bt = New System.Windows.Forms.Button()
- Me.工程期1_ch = New System.Windows.Forms.ComboBox()
- Me.Label40 = New System.Windows.Forms.Label()
- Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.合約編號_tb = New System.Windows.Forms.TextBox()
- Me.TabControl1 = New System.Windows.Forms.TabControl()
- Me.Label41 = New System.Windows.Forms.Label()
- CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel1.SuspendLayout()
- CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.工程合約報價明細_tc.SuspendLayout()
- CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel5.SuspendLayout()
- CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.工程合約試算表_tc.SuspendLayout()
- CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.空間3.SuspendLayout()
- Me.TabControl3.SuspendLayout()
- Me.TabPage1.SuspendLayout()
- CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage2.SuspendLayout()
- Me.Panel2.SuspendLayout()
- CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabControl2.SuspendLayout()
- Me.TabPage5.SuspendLayout()
- CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage6.SuspendLayout()
- CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage7.SuspendLayout()
- CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage8.SuspendLayout()
- CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage9.SuspendLayout()
- CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.建立合約資料_tc.SuspendLayout()
- Me.TabControl1.SuspendLayout()
- Me.SuspendLayout()
- '
- 'Label20
- '
- Me.Label20.AutoSize = True
- Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label20.Location = New System.Drawing.Point(523, 22)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(79, 16)
- Me.Label20.TabIndex = 1351
- Me.Label20.Text = "設定最末頁為"
- Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號3_tb
- '
- Me.合約編號3_tb.Location = New System.Drawing.Point(220, 18)
- Me.合約編號3_tb.Name = "合約編號3_tb"
- Me.合約編號3_tb.Size = New System.Drawing.Size(35, 23)
- Me.合約編號3_tb.TabIndex = 1041
- '
- '合約編號2_tb
- '
- Me.合約編號2_tb.Location = New System.Drawing.Point(154, 18)
- Me.合約編號2_tb.MaxLength = 6
- Me.合約編號2_tb.Name = "合約編號2_tb"
- Me.合約編號2_tb.Size = New System.Drawing.Size(65, 23)
- Me.合約編號2_tb.TabIndex = 1040
- '
- '明細選項_bt
- '
- Me.明細選項_bt.Enabled = False
- Me.明細選項_bt.Location = New System.Drawing.Point(254, 469)
- Me.明細選項_bt.Name = "明細選項_bt"
- Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
- Me.明細選項_bt.TabIndex = 1145
- '
- '項目流水_tb
- '
- Me.項目流水_tb.Location = New System.Drawing.Point(309, 208)
- Me.項目流水_tb.Name = "項目流水_tb"
- Me.項目流水_tb.Size = New System.Drawing.Size(101, 23)
- Me.項目流水_tb.TabIndex = 1435
- '
- '選擇項3_tb
- '
- Me.選擇項3_tb.Enabled = False
- Me.選擇項3_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.選擇項3_tb.Location = New System.Drawing.Point(3, 208)
- Me.選擇項3_tb.Name = "選擇項3_tb"
- Me.選擇項3_tb.Size = New System.Drawing.Size(50, 23)
- Me.選擇項3_tb.TabIndex = 1433
- Me.選擇項3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '連動編號_tb
- '
- Me.連動編號_tb.Enabled = False
- Me.連動編號_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.連動編號_tb.Location = New System.Drawing.Point(108, 233)
- Me.連動編號_tb.Name = "連動編號_tb"
- Me.連動編號_tb.Size = New System.Drawing.Size(112, 23)
- Me.連動編號_tb.TabIndex = 1394
- Me.連動編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'PictureBox2
- '
- Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.PictureBox2.Image = Global.工巧明智能管理系統.My.Resources.Resources.HXLOGO01
- Me.PictureBox2.Location = New System.Drawing.Point(3, 144)
- Me.PictureBox2.Name = "PictureBox2"
- Me.PictureBox2.Size = New System.Drawing.Size(471, 61)
- Me.PictureBox2.TabIndex = 1432
- Me.PictureBox2.TabStop = False
- '
- 'PictureBox1
- '
- Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.PictureBox1.Image = Global.工巧明智能管理系統.My.Resources.Resources.PGSLOGO01
- Me.PictureBox1.Location = New System.Drawing.Point(3, 81)
- Me.PictureBox1.Name = "PictureBox1"
- Me.PictureBox1.Size = New System.Drawing.Size(471, 61)
- Me.PictureBox1.TabIndex = 1431
- Me.PictureBox1.TabStop = False
- '
- '合約改版_bt
- '
- Me.合約改版_bt.Location = New System.Drawing.Point(217, 206)
- Me.合約改版_bt.Name = "合約改版_bt"
- Me.合約改版_bt.Size = New System.Drawing.Size(90, 26)
- Me.合約改版_bt.TabIndex = 1366
- Me.合約改版_bt.Text = "合約改版複製"
- Me.合約改版_bt.UseVisualStyleBackColor = True
- '
- '工程期_ch
- '
- Me.工程期_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.工程期_ch.ForeColor = System.Drawing.Color.Blue
- Me.工程期_ch.FormattingEnabled = True
- Me.工程期_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.工程期_ch.Location = New System.Drawing.Point(257, 17)
- Me.工程期_ch.Name = "工程期_ch"
- Me.工程期_ch.Size = New System.Drawing.Size(74, 24)
- Me.工程期_ch.TabIndex = 1404
- '
- 'Label19
- '
- Me.Label19.AutoSize = True
- Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label19.Location = New System.Drawing.Point(449, 475)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(235, 16)
- Me.Label19.TabIndex = 1147
- Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
- Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label15.Location = New System.Drawing.Point(333, 2)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(302, 16)
- Me.Label15.TabIndex = 1403
- Me.Label15.Text = "立約日期的格式為YYMMDD (年兩位,月兩位,日兩位)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '選擇項2_tb
- '
- Me.選擇項2_tb.Enabled = False
- Me.選擇項2_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.選擇項2_tb.Location = New System.Drawing.Point(271, 53)
- Me.選擇項2_tb.Name = "選擇項2_tb"
- Me.選擇項2_tb.Size = New System.Drawing.Size(50, 23)
- Me.選擇項2_tb.TabIndex = 1430
- Me.選擇項2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'DGV位置2
- '
- Me.DGV位置2.Location = New System.Drawing.Point(230, 54)
- Me.DGV位置2.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
- Me.DGV位置2.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
- Me.DGV位置2.Name = "DGV位置2"
- Me.DGV位置2.Size = New System.Drawing.Size(40, 23)
- Me.DGV位置2.TabIndex = 1355
- Me.DGV位置2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.DGV位置2.ThousandsSeparator = True
- '
- 'DGV位置1
- '
- Me.DGV位置1.Location = New System.Drawing.Point(188, 54)
- Me.DGV位置1.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
- Me.DGV位置1.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
- Me.DGV位置1.Name = "DGV位置1"
- Me.DGV位置1.Size = New System.Drawing.Size(40, 23)
- Me.DGV位置1.TabIndex = 1354
- Me.DGV位置1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.DGV位置1.ThousandsSeparator = True
- '
- '明細表流水_tb
- '
- Me.明細表流水_tb.Location = New System.Drawing.Point(136, 54)
- Me.明細表流水_tb.Name = "明細表流水_tb"
- Me.明細表流水_tb.Size = New System.Drawing.Size(50, 23)
- Me.明細表流水_tb.TabIndex = 1353
- '
- '總表流水_tb
- '
- Me.總表流水_tb.Location = New System.Drawing.Point(86, 54)
- Me.總表流水_tb.Name = "總表流水_tb"
- Me.總表流水_tb.Size = New System.Drawing.Size(50, 23)
- Me.總表流水_tb.TabIndex = 1352
- '
- 'Y_2_tb
- '
- Me.Y_2_tb.Enabled = False
- Me.Y_2_tb.ForeColor = System.Drawing.Color.Red
- Me.Y_2_tb.Location = New System.Drawing.Point(179, 208)
- Me.Y_2_tb.Name = "Y_2_tb"
- Me.Y_2_tb.Size = New System.Drawing.Size(35, 23)
- Me.Y_2_tb.TabIndex = 1375
- Me.Y_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Y_3_tb
- '
- Me.Y_3_tb.Enabled = False
- Me.Y_3_tb.Location = New System.Drawing.Point(99, 208)
- Me.Y_3_tb.Name = "Y_3_tb"
- Me.Y_3_tb.Size = New System.Drawing.Size(35, 23)
- Me.Y_3_tb.TabIndex = 1375
- Me.Y_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '係數合約號_tb
- '
- Me.係數合約號_tb.Location = New System.Drawing.Point(271, 28)
- Me.係數合約號_tb.Name = "係數合約號_tb"
- Me.係數合約號_tb.Size = New System.Drawing.Size(50, 23)
- Me.係數合約號_tb.TabIndex = 1351
- '
- 'Label42
- '
- Me.Label42.AutoSize = True
- Me.Label42.ForeColor = System.Drawing.Color.Green
- Me.Label42.Location = New System.Drawing.Point(6, 772)
- Me.Label42.Name = "Label42"
- Me.Label42.Size = New System.Drawing.Size(478, 16)
- Me.Label42.TabIndex = 1406
- Me.Label42.Text = "如遇有拆除困難,經A方同意在不影響結構安全下應由B方出具保證切結書,得減價收受。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'Label379
- '
- Me.Label379.AutoSize = True
- Me.Label379.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label379.Location = New System.Drawing.Point(-1, 3)
- Me.Label379.Name = "Label379"
- Me.Label379.Size = New System.Drawing.Size(39, 38)
- Me.Label379.TabIndex = 1037
- Me.Label379.Text = "合約" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "編號"
- Me.Label379.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '最末頁_cb
- '
- Me.最末頁_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.最末頁_cb.ForeColor = System.Drawing.Color.Blue
- Me.最末頁_cb.FormattingEnabled = True
- Me.最末頁_cb.Items.AddRange(New Object() {"16", "17", "18", "19", "20"})
- Me.最末頁_cb.Location = New System.Drawing.Point(604, 18)
- Me.最末頁_cb.Name = "最末頁_cb"
- Me.最末頁_cb.Size = New System.Drawing.Size(78, 24)
- Me.最末頁_cb.TabIndex = 1352
- '
- 'NUD1
- '
- Me.NUD1.Enabled = False
- Me.NUD1.Location = New System.Drawing.Point(132, 366)
- Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD1.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.NUD1.Name = "NUD1"
- Me.NUD1.Size = New System.Drawing.Size(105, 23)
- Me.NUD1.TabIndex = 1085
- Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD1.ThousandsSeparator = True
- '
- 'Label43
- '
- Me.Label43.AutoSize = True
- Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label43.Location = New System.Drawing.Point(3, 236)
- Me.Label43.Name = "Label43"
- Me.Label43.Size = New System.Drawing.Size(103, 16)
- Me.Label43.TabIndex = 1395
- Me.Label43.Text = "明細計算連動編號"
- Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號1_tb
- '
- Me.合約編號1_tb.Location = New System.Drawing.Point(103, 18)
- Me.合約編號1_tb.Name = "合約編號1_tb"
- Me.合約編號1_tb.Size = New System.Drawing.Size(50, 23)
- Me.合約編號1_tb.TabIndex = 1039
- '
- '合約編號_cb
- '
- Me.合約編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.合約編號_cb.ForeColor = System.Drawing.Color.Blue
- Me.合約編號_cb.FormattingEnabled = True
- Me.合約編號_cb.Items.AddRange(New Object() {"GCM", "ICS"})
- Me.合約編號_cb.Location = New System.Drawing.Point(39, 17)
- Me.合約編號_cb.Name = "合約編號_cb"
- Me.合約編號_cb.Size = New System.Drawing.Size(62, 24)
- Me.合約編號_cb.TabIndex = 1038
- '
- 'Label397
- '
- Me.Label397.AutoSize = True
- Me.Label397.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label397.Location = New System.Drawing.Point(3, 45)
- Me.Label397.Name = "Label397"
- Me.Label397.Size = New System.Drawing.Size(74, 21)
- Me.Label397.TabIndex = 1114
- Me.Label397.Text = "工程合約"
- Me.Label397.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '金額6_und
- '
- Me.金額6_und.Enabled = False
- Me.金額6_und.Location = New System.Drawing.Point(577, 440)
- Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額6_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額6_und.Name = "金額6_und"
- Me.金額6_und.Size = New System.Drawing.Size(105, 23)
- Me.金額6_und.TabIndex = 1140
- Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額6_und.ThousandsSeparator = True
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.Location = New System.Drawing.Point(-2, 30)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(687, 16)
- Me.Label5.TabIndex = 1151
- Me.Label5.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- '工程款6_nud
- '
- Me.工程款6_nud.Enabled = False
- Me.工程款6_nud.Location = New System.Drawing.Point(536, 440)
- Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
- Me.工程款6_nud.Name = "工程款6_nud"
- Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款6_nud.TabIndex = 1139
- Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款6_nud.ThousandsSeparator = True
- Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
- '
- '合約種類_tb
- '
- Me.合約種類_tb.Location = New System.Drawing.Point(190, 68)
- Me.合約種類_tb.Name = "合約種類_tb"
- Me.合約種類_tb.Size = New System.Drawing.Size(494, 23)
- Me.合約種類_tb.TabIndex = 1081
- Me.合約種類_tb.Text = "MECHANICAL ELECTRICAL CONSTRUCTION CONTRACT"
- '
- '語言_dgv
- '
- Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.語言_dgv.Location = New System.Drawing.Point(3, 29)
- Me.語言_dgv.Name = "語言_dgv"
- Me.語言_dgv.RowHeadersWidth = 5
- Me.語言_dgv.RowTemplate.Height = 24
- Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
- Me.語言_dgv.TabIndex = 1345
- '
- 'NUD2
- '
- Me.NUD2.Enabled = False
- Me.NUD2.Location = New System.Drawing.Point(359, 366)
- Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD2.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.NUD2.Name = "NUD2"
- Me.NUD2.Size = New System.Drawing.Size(105, 23)
- Me.NUD2.TabIndex = 1086
- Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD2.ThousandsSeparator = True
- '
- '係數流水號_tb
- '
- Me.係數流水號_tb.Location = New System.Drawing.Point(271, 2)
- Me.係數流水號_tb.Name = "係數流水號_tb"
- Me.係數流水號_tb.Size = New System.Drawing.Size(50, 23)
- Me.係數流水號_tb.TabIndex = 1350
- '
- '群組編碼_cb
- '
- Me.群組編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.群組編碼_cb.FormattingEnabled = True
- Me.群組編碼_cb.Items.AddRange(New Object() {"2019"})
- Me.群組編碼_cb.Location = New System.Drawing.Point(3, 3)
- Me.群組編碼_cb.Name = "群組編碼_cb"
- Me.群組編碼_cb.Size = New System.Drawing.Size(81, 24)
- Me.群組編碼_cb.TabIndex = 1340
- '
- 'X_2_tb
- '
- Me.X_2_tb.Enabled = False
- Me.X_2_tb.ForeColor = System.Drawing.Color.Red
- Me.X_2_tb.Location = New System.Drawing.Point(140, 208)
- Me.X_2_tb.Name = "X_2_tb"
- Me.X_2_tb.Size = New System.Drawing.Size(35, 23)
- Me.X_2_tb.TabIndex = 1374
- Me.X_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'X_3_tb
- '
- Me.X_3_tb.Enabled = False
- Me.X_3_tb.Location = New System.Drawing.Point(58, 208)
- Me.X_3_tb.Name = "X_3_tb"
- Me.X_3_tb.Size = New System.Drawing.Size(35, 23)
- Me.X_3_tb.TabIndex = 1374
- Me.X_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '存檔比較_dgv
- '
- DataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.存檔比較_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle15
- Me.存檔比較_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.存檔比較_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.存檔比較_dgv.Location = New System.Drawing.Point(400, 4)
- Me.存檔比較_dgv.Name = "存檔比較_dgv"
- Me.存檔比較_dgv.RowHeadersWidth = 5
- Me.存檔比較_dgv.RowTemplate.Height = 24
- Me.存檔比較_dgv.Size = New System.Drawing.Size(74, 72)
- Me.存檔比較_dgv.TabIndex = 1149
- '
- '範例文本_dgv
- '
- DataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.範例文本_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle16
- Me.範例文本_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.範例文本_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.範例文本_dgv.Location = New System.Drawing.Point(188, 2)
- Me.範例文本_dgv.Name = "範例文本_dgv"
- Me.範例文本_dgv.RowHeadersWidth = 5
- Me.範例文本_dgv.RowTemplate.Height = 24
- Me.範例文本_dgv.Size = New System.Drawing.Size(81, 49)
- Me.範例文本_dgv.TabIndex = 1146
- '
- '群組碼_tb
- '
- Me.群組碼_tb.Location = New System.Drawing.Point(86, 4)
- Me.群組碼_tb.Name = "群組碼_tb"
- Me.群組碼_tb.Size = New System.Drawing.Size(102, 23)
- Me.群組碼_tb.TabIndex = 1349
- '
- '表號_tb
- '
- Me.表號_tb.Location = New System.Drawing.Point(86, 29)
- Me.表號_tb.Name = "表號_tb"
- Me.表號_tb.Size = New System.Drawing.Size(50, 23)
- Me.表號_tb.TabIndex = 1047
- '
- '表頭_tb
- '
- Me.表頭_tb.Location = New System.Drawing.Point(136, 29)
- Me.表頭_tb.Name = "表頭_tb"
- Me.表頭_tb.Size = New System.Drawing.Size(50, 23)
- Me.表頭_tb.TabIndex = 1052
- '
- '報價總表_dgv
- '
- DataGridViewCellStyle17.BackColor = System.Drawing.Color.White
- Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17
- Me.報價總表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.報價總表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.報價總表_dgv.Location = New System.Drawing.Point(711, -3)
- Me.報價總表_dgv.Name = "報價總表_dgv"
- Me.報價總表_dgv.RowHeadersWidth = 5
- Me.報價總表_dgv.RowTemplate.Height = 24
- Me.報價總表_dgv.Size = New System.Drawing.Size(1045, 781)
- Me.報價總表_dgv.TabIndex = 1354
- '
- 'Panel1
- '
- Me.Panel1.BackColor = System.Drawing.Color.Gainsboro
- Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Panel1.Controls.Add(Me.項目流水_tb)
- Me.Panel1.Controls.Add(Me.選擇項3_tb)
- Me.Panel1.Controls.Add(Me.連動編號_tb)
- Me.Panel1.Controls.Add(Me.PictureBox2)
- Me.Panel1.Controls.Add(Me.PictureBox1)
- Me.Panel1.Controls.Add(Me.合約改版_bt)
- Me.Panel1.Controls.Add(Me.選擇項2_tb)
- Me.Panel1.Controls.Add(Me.DGV位置2)
- Me.Panel1.Controls.Add(Me.DGV位置1)
- Me.Panel1.Controls.Add(Me.明細表流水_tb)
- Me.Panel1.Controls.Add(Me.總表流水_tb)
- Me.Panel1.Controls.Add(Me.Y_2_tb)
- Me.Panel1.Controls.Add(Me.Y_3_tb)
- Me.Panel1.Controls.Add(Me.係數合約號_tb)
- Me.Panel1.Controls.Add(Me.Label43)
- Me.Panel1.Controls.Add(Me.係數流水號_tb)
- Me.Panel1.Controls.Add(Me.群組編碼_cb)
- Me.Panel1.Controls.Add(Me.X_2_tb)
- Me.Panel1.Controls.Add(Me.語言_dgv)
- Me.Panel1.Controls.Add(Me.X_3_tb)
- Me.Panel1.Controls.Add(Me.存檔比較_dgv)
- Me.Panel1.Controls.Add(Me.範例文本_dgv)
- Me.Panel1.Controls.Add(Me.群組碼_tb)
- Me.Panel1.Controls.Add(Me.表號_tb)
- Me.Panel1.Controls.Add(Me.表頭_tb)
- Me.Panel1.Controls.Add(Me.試算控制表_dgv)
- Me.Panel1.Location = New System.Drawing.Point(725, 5)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(479, 263)
- Me.Panel1.TabIndex = 1418
- '
- '試算控制表_dgv
- '
- DataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.試算控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle18
- Me.試算控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.試算控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.試算控制表_dgv.Location = New System.Drawing.Point(323, 4)
- Me.試算控制表_dgv.Name = "試算控制表_dgv"
- Me.試算控制表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle19.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.試算控制表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle19
- Me.試算控制表_dgv.RowTemplate.Height = 24
- Me.試算控制表_dgv.Size = New System.Drawing.Size(74, 72)
- Me.試算控制表_dgv.TabIndex = 1340
- '
- '最高扣款_bt
- '
- Me.最高扣款_bt.Location = New System.Drawing.Point(536, 676)
- Me.最高扣款_bt.Name = "最高扣款_bt"
- Me.最高扣款_bt.Size = New System.Drawing.Size(147, 23)
- Me.最高扣款_bt.TabIndex = 1109
- Me.最高扣款_bt.Text = "5% (百分之五)"
- Me.最高扣款_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '工程合約報價明細_tc
- '
- Me.工程合約報價明細_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.工程合約報價明細_tc.Controls.Add(Me.詳細資料2_ch)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價係數_dgv)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價單立約日期_dtp)
- Me.工程合約報價明細_tc.Controls.Add(Me.Label27)
- Me.工程合約報價明細_tc.Controls.Add(Me.Label26)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價單合約編號_tb)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_英_tb)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_中_tb)
- Me.工程合約報價明細_tc.Controls.Add(Me.Label9)
- Me.工程合約報價明細_tc.Controls.Add(Me.Label8)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價單客戶名稱_cb)
- Me.工程合約報價明細_tc.Controls.Add(Me.Label6)
- Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表_dgv)
- Me.工程合約報價明細_tc.Controls.Add(Me.Panel5)
- Me.工程合約報價明細_tc.Controls.Add(Me.物料圖1_pb)
- Me.工程合約報價明細_tc.Location = New System.Drawing.Point(4, 28)
- Me.工程合約報價明細_tc.Name = "工程合約報價明細_tc"
- Me.工程合約報價明細_tc.Padding = New System.Windows.Forms.Padding(3)
- Me.工程合約報價明細_tc.Size = New System.Drawing.Size(1906, 1010)
- Me.工程合約報價明細_tc.TabIndex = 0
- Me.工程合約報價明細_tc.Text = "工程合約報價明細"
- Me.工程合約報價明細_tc.UseVisualStyleBackColor = True
- '
- '詳細資料2_ch
- '
- Me.詳細資料2_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.詳細資料2_ch.AutoSize = True
- Me.詳細資料2_ch.Location = New System.Drawing.Point(992, 24)
- Me.詳細資料2_ch.Name = "詳細資料2_ch"
- Me.詳細資料2_ch.Size = New System.Drawing.Size(126, 20)
- Me.詳細資料2_ch.TabIndex = 1833
- Me.詳細資料2_ch.Text = "詳細資料 / Rincian"
- Me.詳細資料2_ch.UseVisualStyleBackColor = True
- '
- '報價係數_dgv
- '
- Me.報價係數_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價係數_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.報價係數_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.報價係數_dgv.Location = New System.Drawing.Point(1497, 3)
- Me.報價係數_dgv.Name = "報價係數_dgv"
- Me.報價係數_dgv.RowHeadersWidth = 5
- Me.報價係數_dgv.RowTemplate.Height = 24
- Me.報價係數_dgv.Size = New System.Drawing.Size(255, 99)
- Me.報價係數_dgv.TabIndex = 1382
- '
- '報價單立約日期_dtp
- '
- Me.報價單立約日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價單立約日期_dtp.CustomFormat = "yyyy/MM/dd"
- Me.報價單立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
- Me.報價單立約日期_dtp.Location = New System.Drawing.Point(886, 3)
- Me.報價單立約日期_dtp.Name = "報價單立約日期_dtp"
- Me.報價單立約日期_dtp.Size = New System.Drawing.Size(95, 23)
- Me.報價單立約日期_dtp.TabIndex = 1388
- '
- 'Label27
- '
- Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label27.AutoSize = True
- Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
- Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label27.Location = New System.Drawing.Point(829, 6)
- Me.Label27.Name = "Label27"
- Me.Label27.Size = New System.Drawing.Size(55, 16)
- Me.Label27.TabIndex = 1387
- Me.Label27.Text = "合約日期"
- Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label26
- '
- Me.Label26.AutoSize = True
- Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label26.Location = New System.Drawing.Point(6, 5)
- Me.Label26.Name = "Label26"
- Me.Label26.Size = New System.Drawing.Size(55, 16)
- Me.Label26.TabIndex = 1386
- Me.Label26.Text = "合約編號"
- Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '報價單合約編號_tb
- '
- Me.報價單合約編號_tb.Enabled = False
- Me.報價單合約編號_tb.Location = New System.Drawing.Point(62, 2)
- Me.報價單合約編號_tb.Name = "報價單合約編號_tb"
- Me.報價單合約編號_tb.Size = New System.Drawing.Size(163, 23)
- Me.報價單合約編號_tb.TabIndex = 1385
- '
- '報價工程名稱_英_tb
- '
- Me.報價工程名稱_英_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價工程名稱_英_tb.Enabled = False
- Me.報價工程名稱_英_tb.Location = New System.Drawing.Point(94, 79)
- Me.報價工程名稱_英_tb.Name = "報價工程名稱_英_tb"
- Me.報價工程名稱_英_tb.Size = New System.Drawing.Size(887, 23)
- Me.報價工程名稱_英_tb.TabIndex = 1362
- '
- '報價工程名稱_中_tb
- '
- Me.報價工程名稱_中_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價工程名稱_中_tb.Enabled = False
- Me.報價工程名稱_中_tb.Location = New System.Drawing.Point(94, 54)
- Me.報價工程名稱_中_tb.Name = "報價工程名稱_中_tb"
- Me.報價工程名稱_中_tb.Size = New System.Drawing.Size(887, 23)
- Me.報價工程名稱_中_tb.TabIndex = 1361
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
- Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label9.Location = New System.Drawing.Point(6, 83)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(87, 16)
- Me.Label9.TabIndex = 1360
- Me.Label9.Text = "工程名稱(英文)"
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
- Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label8.Location = New System.Drawing.Point(6, 57)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(87, 16)
- Me.Label8.TabIndex = 1359
- Me.Label8.Text = "工程名稱(中文)"
- '
- '報價單客戶名稱_cb
- '
- Me.報價單客戶名稱_cb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價單客戶名稱_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
- Me.報價單客戶名稱_cb.Enabled = False
- Me.報價單客戶名稱_cb.FormattingEnabled = True
- Me.報價單客戶名稱_cb.Location = New System.Drawing.Point(62, 28)
- Me.報價單客戶名稱_cb.Name = "報價單客戶名稱_cb"
- Me.報價單客戶名稱_cb.Size = New System.Drawing.Size(919, 24)
- Me.報價單客戶名稱_cb.TabIndex = 1358
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
- Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label6.Location = New System.Drawing.Point(6, 33)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(55, 16)
- Me.Label6.TabIndex = 1357
- Me.Label6.Text = "客戶名稱"
- '
- '報價明細表_dgv
- '
- Me.報價明細表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.報價明細表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.報價明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.報價明細表_dgv.Location = New System.Drawing.Point(3, 104)
- Me.報價明細表_dgv.Name = "報價明細表_dgv"
- Me.報價明細表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle20.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.報價明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle20
- Me.報價明細表_dgv.RowTemplate.Height = 24
- Me.報價明細表_dgv.Size = New System.Drawing.Size(1899, 898)
- Me.報價明細表_dgv.TabIndex = 1389
- '
- 'Panel5
- '
- Me.Panel5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Panel5.Controls.Add(Me.Label22)
- Me.Panel5.Controls.Add(Me.Label33)
- Me.Panel5.Controls.Add(Me.工資_ch)
- Me.Panel5.Controls.Add(Me.料號_tb)
- Me.Panel5.Controls.Add(Me.單位2_tb)
- Me.Panel5.Controls.Add(Me.Label32)
- Me.Panel5.Controls.Add(Me.申請數_lb)
- Me.Panel5.Controls.Add(Me.ITEM3_cb)
- Me.Panel5.Controls.Add(Me.申請數_nud)
- Me.Panel5.Controls.Add(Me.利潤表_ch)
- Me.Panel5.Controls.Add(Me.材料_ch)
- Me.Panel5.Location = New System.Drawing.Point(983, 46)
- Me.Panel5.Name = "Panel5"
- Me.Panel5.Size = New System.Drawing.Size(410, 59)
- Me.Panel5.TabIndex = 1431
- '
- 'Label22
- '
- Me.Label22.AutoSize = True
- Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label22.Location = New System.Drawing.Point(126, 7)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(36, 16)
- Me.Label22.TabIndex = 1421
- Me.Label22.Text = "ITEM"
- Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label33
- '
- Me.Label33.AutoSize = True
- Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label33.Location = New System.Drawing.Point(216, 7)
- Me.Label33.Name = "Label33"
- Me.Label33.Size = New System.Drawing.Size(36, 16)
- Me.Label33.TabIndex = 1428
- Me.Label33.Text = "UNIT"
- Me.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工資_ch
- '
- Me.工資_ch.AutoSize = True
- Me.工資_ch.Checked = True
- Me.工資_ch.CheckState = System.Windows.Forms.CheckState.Checked
- Me.工資_ch.Location = New System.Drawing.Point(8, 19)
- Me.工資_ch.Name = "工資_ch"
- Me.工資_ch.Size = New System.Drawing.Size(86, 20)
- Me.工資_ch.TabIndex = 1424
- Me.工資_ch.Text = "工資 / GAJI"
- Me.工資_ch.UseVisualStyleBackColor = True
- '
- '料號_tb
- '
- Me.料號_tb.Enabled = False
- Me.料號_tb.Location = New System.Drawing.Point(163, 29)
- Me.料號_tb.Name = "料號_tb"
- Me.料號_tb.Size = New System.Drawing.Size(241, 23)
- Me.料號_tb.TabIndex = 1417
- '
- '單位2_tb
- '
- Me.單位2_tb.Location = New System.Drawing.Point(252, 4)
- Me.單位2_tb.Name = "單位2_tb"
- Me.單位2_tb.Size = New System.Drawing.Size(45, 23)
- Me.單位2_tb.TabIndex = 1427
- Me.單位2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label32
- '
- Me.Label32.AutoSize = True
- Me.Label32.Location = New System.Drawing.Point(128, 32)
- Me.Label32.Name = "Label32"
- Me.Label32.Size = New System.Drawing.Size(31, 16)
- Me.Label32.TabIndex = 1418
- Me.Label32.Text = "料號"
- '
- '申請數_lb
- '
- Me.申請數_lb.AutoSize = True
- Me.申請數_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.申請數_lb.Location = New System.Drawing.Point(303, 7)
- Me.申請數_lb.Name = "申請數_lb"
- Me.申請數_lb.Size = New System.Drawing.Size(31, 16)
- Me.申請數_lb.TabIndex = 1419
- Me.申請數_lb.Text = "數量"
- '
- 'ITEM3_cb
- '
- Me.ITEM3_cb.ForeColor = System.Drawing.Color.Blue
- Me.ITEM3_cb.FormattingEnabled = True
- Me.ITEM3_cb.Items.AddRange(New Object() {"", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"})
- Me.ITEM3_cb.Location = New System.Drawing.Point(163, 3)
- Me.ITEM3_cb.Name = "ITEM3_cb"
- Me.ITEM3_cb.Size = New System.Drawing.Size(51, 24)
- Me.ITEM3_cb.TabIndex = 1422
- '
- '申請數_nud
- '
- Me.申請數_nud.Location = New System.Drawing.Point(336, 4)
- Me.申請數_nud.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
- Me.申請數_nud.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
- Me.申請數_nud.Name = "申請數_nud"
- Me.申請數_nud.Size = New System.Drawing.Size(67, 23)
- Me.申請數_nud.TabIndex = 1420
- Me.申請數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '利潤表_ch
- '
- Me.利潤表_ch.AutoSize = True
- Me.利潤表_ch.Location = New System.Drawing.Point(8, 0)
- Me.利潤表_ch.Name = "利潤表_ch"
- Me.利潤表_ch.Size = New System.Drawing.Size(102, 20)
- Me.利潤表_ch.TabIndex = 1426
- Me.利潤表_ch.Text = "利潤表 / LABA"
- Me.利潤表_ch.UseVisualStyleBackColor = True
- '
- '材料_ch
- '
- Me.材料_ch.AutoSize = True
- Me.材料_ch.Checked = True
- Me.材料_ch.CheckState = System.Windows.Forms.CheckState.Checked
- Me.材料_ch.Location = New System.Drawing.Point(8, 38)
- Me.材料_ch.Name = "材料_ch"
- Me.材料_ch.Size = New System.Drawing.Size(103, 20)
- Me.材料_ch.TabIndex = 1425
- Me.材料_ch.Text = "材料 / BAHAN"
- Me.材料_ch.UseVisualStyleBackColor = True
- '
- '物料圖1_pb
- '
- Me.物料圖1_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.物料圖1_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.物料圖1_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.物料圖1_pb.Location = New System.Drawing.Point(1755, 1)
- Me.物料圖1_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.物料圖1_pb.Name = "物料圖1_pb"
- Me.物料圖1_pb.Size = New System.Drawing.Size(146, 100)
- Me.物料圖1_pb.TabIndex = 1402
- Me.物料圖1_pb.TabStop = False
- '
- 'Label372
- '
- Me.Label372.AutoSize = True
- Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label372.Location = New System.Drawing.Point(1, 121)
- Me.Label372.Name = "Label372"
- Me.Label372.Size = New System.Drawing.Size(55, 16)
- Me.Label372.TabIndex = 1065
- Me.Label372.Text = "客戶名稱"
- Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label394
- '
- Me.Label394.AutoSize = True
- Me.Label394.ForeColor = System.Drawing.Color.Green
- Me.Label394.Location = New System.Drawing.Point(450, 679)
- Me.Label394.Name = "Label394"
- Me.Label394.Size = New System.Drawing.Size(79, 16)
- Me.Label394.TabIndex = 1108
- Me.Label394.Text = ",最高扣罰至"
- '
- '客戶名稱_tb
- '
- Me.客戶名稱_tb.FormattingEnabled = True
- Me.客戶名稱_tb.Location = New System.Drawing.Point(58, 118)
- Me.客戶名稱_tb.Name = "客戶名稱_tb"
- Me.客戶名稱_tb.Size = New System.Drawing.Size(369, 24)
- Me.客戶名稱_tb.TabIndex = 1066
- Me.客戶名稱_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
- '
- 'Label396
- '
- Me.Label396.AutoSize = True
- Me.Label396.ForeColor = System.Drawing.Color.Green
- Me.Label396.Location = New System.Drawing.Point(4, 704)
- Me.Label396.Name = "Label396"
- Me.Label396.Size = New System.Drawing.Size(233, 16)
- Me.Label396.TabIndex = 1110
- Me.Label396.Text = "The penalty of the delay of the project is"
- '
- 'Label373
- '
- Me.Label373.AutoSize = True
- Me.Label373.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label373.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label373.Location = New System.Drawing.Point(1, 146)
- Me.Label373.Name = "Label373"
- Me.Label373.Size = New System.Drawing.Size(55, 16)
- Me.Label373.TabIndex = 1067
- Me.Label373.Text = "工程地點"
- Me.Label373.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'NUD3
- '
- Me.NUD3.Location = New System.Drawing.Point(578, 366)
- Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD3.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.NUD3.Name = "NUD3"
- Me.NUD3.Size = New System.Drawing.Size(105, 23)
- Me.NUD3.TabIndex = 1087
- Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD3.ThousandsSeparator = True
- '
- 'Label374
- '
- Me.Label374.AutoSize = True
- Me.Label374.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label374.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label374.Location = New System.Drawing.Point(1, 186)
- Me.Label374.Name = "Label374"
- Me.Label374.Size = New System.Drawing.Size(43, 16)
- Me.Label374.TabIndex = 1068
- Me.Label374.Text = "地 址"
- Me.Label374.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約種類_cb
- '
- Me.合約種類_cb.ForeColor = System.Drawing.Color.Black
- Me.合約種類_cb.FormattingEnabled = True
- Me.合約種類_cb.Items.AddRange(New Object() {"HX", "PGS"})
- Me.合約種類_cb.Location = New System.Drawing.Point(58, 67)
- Me.合約種類_cb.Name = "合約種類_cb"
- Me.合約種類_cb.Size = New System.Drawing.Size(126, 24)
- Me.合約種類_cb.TabIndex = 1080
- Me.合約種類_cb.Text = "機電施工合約"
- '
- 'Label375
- '
- Me.Label375.AutoSize = True
- Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label375.Location = New System.Drawing.Point(1, 228)
- Me.Label375.Name = "Label375"
- Me.Label375.Size = New System.Drawing.Size(87, 16)
- Me.Label375.TabIndex = 1069
- Me.Label375.Text = "工程名稱(中文)"
- Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '逾期_bt
- '
- Me.逾期_bt.Location = New System.Drawing.Point(320, 675)
- Me.逾期_bt.Name = "逾期_bt"
- Me.逾期_bt.Size = New System.Drawing.Size(126, 23)
- Me.逾期_bt.TabIndex = 1107
- Me.逾期_bt.Text = "0.0005% (萬分之五)"
- Me.逾期_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '存檔_bt
- '
- Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.存檔_bt.ForeColor = System.Drawing.Color.Purple
- Me.存檔_bt.Location = New System.Drawing.Point(889, 2)
- Me.存檔_bt.Name = "存檔_bt"
- Me.存檔_bt.Size = New System.Drawing.Size(175, 79)
- Me.存檔_bt.TabIndex = 1354
- Me.存檔_bt.Text = "存檔"
- Me.存檔_bt.UseVisualStyleBackColor = True
- '
- '使用計算機_ch
- '
- Me.使用計算機_ch.AutoSize = True
- Me.使用計算機_ch.Location = New System.Drawing.Point(652, 59)
- Me.使用計算機_ch.Name = "使用計算機_ch"
- Me.使用計算機_ch.Size = New System.Drawing.Size(86, 20)
- Me.使用計算機_ch.TabIndex = 1353
- Me.使用計算機_ch.Text = "使用計算機"
- Me.使用計算機_ch.UseVisualStyleBackColor = True
- '
- '直接輸入_ch
- '
- Me.直接輸入_ch.AutoSize = True
- Me.直接輸入_ch.Location = New System.Drawing.Point(538, 59)
- Me.直接輸入_ch.Name = "直接輸入_ch"
- Me.直接輸入_ch.Size = New System.Drawing.Size(74, 20)
- Me.直接輸入_ch.TabIndex = 1352
- Me.直接輸入_ch.Text = "直接輸入"
- Me.直接輸入_ch.UseVisualStyleBackColor = True
- '
- '材料加入1_bt
- '
- Me.材料加入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.材料加入1_bt.ForeColor = System.Drawing.Color.Purple
- Me.材料加入1_bt.Location = New System.Drawing.Point(533, 30)
- Me.材料加入1_bt.Name = "材料加入1_bt"
- Me.材料加入1_bt.Size = New System.Drawing.Size(175, 25)
- Me.材料加入1_bt.TabIndex = 1351
- Me.材料加入1_bt.Text = "選擇材料加入試算表"
- Me.材料加入1_bt.UseVisualStyleBackColor = True
- '
- '工程名稱_中_tb
- '
- Me.工程名稱_中_tb.Location = New System.Drawing.Point(95, 225)
- Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
- Me.工程名稱_中_tb.Size = New System.Drawing.Size(588, 23)
- Me.工程名稱_中_tb.TabIndex = 1070
- Me.工程名稱_中_tb.Text = "JCS #B3分站高壓電力工程"
- '
- 'Label395
- '
- Me.Label395.AutoSize = True
- Me.Label395.ForeColor = System.Drawing.Color.Green
- Me.Label395.Location = New System.Drawing.Point(4, 729)
- Me.Label395.Name = "Label395"
- Me.Label395.Size = New System.Drawing.Size(358, 16)
- Me.Label395.TabIndex = 1111
- Me.Label395.Text = "per day from total contract price, the maximum penalty is until " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- '客戶地址_tb
- '
- Me.客戶地址_tb.Location = New System.Drawing.Point(58, 184)
- Me.客戶地址_tb.Multiline = True
- Me.客戶地址_tb.Name = "客戶地址_tb"
- Me.客戶地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.客戶地址_tb.Size = New System.Drawing.Size(625, 40)
- Me.客戶地址_tb.TabIndex = 1071
- Me.客戶地址_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL, KAB, MAJALENGKA JAWA BARAT, INDONESIA JAWA " &
- "BARAT - 45456"
- '
- 'Label393
- '
- Me.Label393.AutoSize = True
- Me.Label393.ForeColor = System.Drawing.Color.Green
- Me.Label393.Location = New System.Drawing.Point(138, 679)
- Me.Label393.Name = "Label393"
- Me.Label393.Size = New System.Drawing.Size(175, 16)
- Me.Label393.TabIndex = 1106
- Me.Label393.Text = "總工期逾期以每日扣罰工程總價"
- '
- '金額5_und
- '
- Me.金額5_und.Enabled = False
- Me.金額5_und.Location = New System.Drawing.Point(577, 416)
- Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額5_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額5_und.Name = "金額5_und"
- Me.金額5_und.Size = New System.Drawing.Size(105, 23)
- Me.金額5_und.TabIndex = 1102
- Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額5_und.ThousandsSeparator = True
- '
- '係數_nud
- '
- Me.係數_nud.Location = New System.Drawing.Point(835, 3)
- Me.係數_nud.Name = "係數_nud"
- Me.係數_nud.Size = New System.Drawing.Size(49, 23)
- Me.係數_nud.TabIndex = 1355
- '
- 'Label380
- '
- Me.Label380.AutoSize = True
- Me.Label380.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label380.Location = New System.Drawing.Point(0, 70)
- Me.Label380.Name = "Label380"
- Me.Label380.Size = New System.Drawing.Size(55, 16)
- Me.Label380.TabIndex = 1079
- Me.Label380.Text = "合約種類"
- Me.Label380.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '刪除1_bt
- '
- Me.刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除1_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除1_bt.Location = New System.Drawing.Point(711, 30)
- Me.刪除1_bt.Name = "刪除1_bt"
- Me.刪除1_bt.Size = New System.Drawing.Size(175, 25)
- Me.刪除1_bt.TabIndex = 1356
- Me.刪除1_bt.Text = "刪除試算表中選中的資料"
- Me.刪除1_bt.UseVisualStyleBackColor = True
- '
- '工程地點_tb
- '
- Me.工程地點_tb.Location = New System.Drawing.Point(58, 143)
- Me.工程地點_tb.Multiline = True
- Me.工程地點_tb.Name = "工程地點_tb"
- Me.工程地點_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.工程地點_tb.Size = New System.Drawing.Size(625, 40)
- Me.工程地點_tb.TabIndex = 1072
- Me.工程地點_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL KAB, MAJALENGKA JAWA BARAT, INDONESIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'Label406
- '
- Me.Label406.AutoSize = True
- Me.Label406.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label406.Location = New System.Drawing.Point(3, 95)
- Me.Label406.Name = "Label406"
- Me.Label406.Size = New System.Drawing.Size(154, 21)
- Me.Label406.TabIndex = 1123
- Me.Label406.Text = "第一條、履約和數量"
- Me.Label406.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '金額4_und
- '
- Me.金額4_und.Enabled = False
- Me.金額4_und.Location = New System.Drawing.Point(348, 440)
- Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額4_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額4_und.Name = "金額4_und"
- Me.金額4_und.Size = New System.Drawing.Size(105, 23)
- Me.金額4_und.TabIndex = 1101
- Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額4_und.ThousandsSeparator = True
- '
- '逾期_英_bt
- '
- Me.逾期_英_bt.Location = New System.Drawing.Point(244, 700)
- Me.逾期_英_bt.Name = "逾期_英_bt"
- Me.逾期_英_bt.Size = New System.Drawing.Size(439, 23)
- Me.逾期_英_bt.TabIndex = 1112
- Me.逾期_英_bt.Text = "0.0005% (null point null null null five percent)"
- '
- 'Label376
- '
- Me.Label376.AutoSize = True
- Me.Label376.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label376.ForeColor = System.Drawing.Color.Blue
- Me.Label376.Location = New System.Drawing.Point(1, 277)
- Me.Label376.Name = "Label376"
- Me.Label376.Size = New System.Drawing.Size(55, 16)
- Me.Label376.TabIndex = 1073
- Me.Label376.Text = "公司名稱"
- Me.Label376.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工期_nud
- '
- Me.工期_nud.Location = New System.Drawing.Point(79, 675)
- Me.工期_nud.Maximum = New Decimal(New Integer() {1215752192, 23, 0, 0})
- Me.工期_nud.Name = "工期_nud"
- Me.工期_nud.Size = New System.Drawing.Size(53, 23)
- Me.工期_nud.TabIndex = 1104
- Me.工期_nud.ThousandsSeparator = True
- Me.工期_nud.Value = New Decimal(New Integer() {180, 0, 0, 0})
- '
- '金額3_und
- '
- Me.金額3_und.Enabled = False
- Me.金額3_und.Location = New System.Drawing.Point(348, 416)
- Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額3_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額3_und.Name = "金額3_und"
- Me.金額3_und.Size = New System.Drawing.Size(105, 23)
- Me.金額3_und.TabIndex = 1100
- Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額3_und.ThousandsSeparator = True
- '
- '最高扣款_英_bt
- '
- Me.最高扣款_英_bt.Location = New System.Drawing.Point(369, 724)
- Me.最高扣款_英_bt.Name = "最高扣款_英_bt"
- Me.最高扣款_英_bt.Size = New System.Drawing.Size(314, 23)
- Me.最高扣款_英_bt.TabIndex = 1113
- Me.最高扣款_英_bt.Text = "5 (five)%. "
- '
- 'Label414
- '
- Me.Label414.AutoSize = True
- Me.Label414.ForeColor = System.Drawing.Color.Green
- Me.Label414.Location = New System.Drawing.Point(514, 839)
- Me.Label414.Name = "Label414"
- Me.Label414.Size = New System.Drawing.Size(55, 16)
- Me.Label414.TabIndex = 1135
- Me.Label414.Text = "立約日期" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'Label391
- '
- Me.Label391.AutoSize = True
- Me.Label391.ForeColor = System.Drawing.Color.Green
- Me.Label391.Location = New System.Drawing.Point(5, 678)
- Me.Label391.Name = "Label391"
- Me.Label391.Size = New System.Drawing.Size(67, 16)
- Me.Label391.TabIndex = 1103
- Me.Label391.Text = "需工期時間"
- '
- '金額2_und
- '
- Me.金額2_und.Enabled = False
- Me.金額2_und.Location = New System.Drawing.Point(118, 440)
- Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額2_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額2_und.Name = "金額2_und"
- Me.金額2_und.Size = New System.Drawing.Size(105, 23)
- Me.金額2_und.TabIndex = 1099
- Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額2_und.ThousandsSeparator = True
- '
- 'Label403
- '
- Me.Label403.AutoSize = True
- Me.Label403.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label403.Location = New System.Drawing.Point(4, 652)
- Me.Label403.Name = "Label403"
- Me.Label403.Size = New System.Drawing.Size(202, 21)
- Me.Label403.TabIndex = 1118
- Me.Label403.Text = "第四條、工期時間及擔保品"
- Me.Label403.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工程合約試算表_tc
- '
- Me.工程合約試算表_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.工程合約試算表_tc.Controls.Add(Me.詳細資料3_ch)
- Me.工程合約試算表_tc.Controls.Add(Me.Label4)
- Me.工程合約試算表_tc.Controls.Add(Me.刪除1_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.係數_nud)
- Me.工程合約試算表_tc.Controls.Add(Me.存檔_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.使用計算機_ch)
- Me.工程合約試算表_tc.Controls.Add(Me.直接輸入_ch)
- Me.工程合約試算表_tc.Controls.Add(Me.材料加入1_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.修改樓層_迴圈_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.新增物件_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.料號_lb)
- Me.工程合約試算表_tc.Controls.Add(Me.樓層_迴路_cb)
- Me.工程合約試算表_tc.Controls.Add(Me.料號1_tb)
- Me.工程合約試算表_tc.Controls.Add(Me.Label3)
- Me.工程合約試算表_tc.Controls.Add(Me.修改試算表名稱_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.新增試算表_bt)
- Me.工程合約試算表_tc.Controls.Add(Me.Label1)
- Me.工程合約試算表_tc.Controls.Add(Me.試算表_cb)
- Me.工程合約試算表_tc.Controls.Add(Me.試算表_dgv)
- Me.工程合約試算表_tc.Controls.Add(Me.物料圖_pb)
- Me.工程合約試算表_tc.Location = New System.Drawing.Point(4, 28)
- Me.工程合約試算表_tc.Name = "工程合約試算表_tc"
- Me.工程合約試算表_tc.Padding = New System.Windows.Forms.Padding(3)
- Me.工程合約試算表_tc.Size = New System.Drawing.Size(1906, 1010)
- Me.工程合約試算表_tc.TabIndex = 1
- Me.工程合約試算表_tc.Text = "工程合約試算表"
- Me.工程合約試算表_tc.UseVisualStyleBackColor = True
- '
- '詳細資料3_ch
- '
- Me.詳細資料3_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.詳細資料3_ch.AutoSize = True
- Me.詳細資料3_ch.Location = New System.Drawing.Point(760, 59)
- Me.詳細資料3_ch.Name = "詳細資料3_ch"
- Me.詳細資料3_ch.Size = New System.Drawing.Size(126, 20)
- Me.詳細資料3_ch.TabIndex = 1834
- Me.詳細資料3_ch.Text = "詳細資料 / Rincian"
- Me.詳細資料3_ch.UseVisualStyleBackColor = True
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Location = New System.Drawing.Point(773, 6)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(55, 16)
- Me.Label4.TabIndex = 1357
- Me.Label4.Text = "系 數"
- '
- '修改樓層_迴圈_bt
- '
- Me.修改樓層_迴圈_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.修改樓層_迴圈_bt.ForeColor = System.Drawing.Color.Green
- Me.修改樓層_迴圈_bt.Location = New System.Drawing.Point(250, 56)
- Me.修改樓層_迴圈_bt.Name = "修改樓層_迴圈_bt"
- Me.修改樓層_迴圈_bt.Size = New System.Drawing.Size(278, 25)
- Me.修改樓層_迴圈_bt.TabIndex = 1054
- Me.修改樓層_迴圈_bt.Text = "修改樓層/迴路名稱"
- Me.修改樓層_迴圈_bt.UseVisualStyleBackColor = True
- '
- '新增物件_bt
- '
- Me.新增物件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.新增物件_bt.ForeColor = System.Drawing.Color.Blue
- Me.新增物件_bt.Location = New System.Drawing.Point(250, 30)
- Me.新增物件_bt.Name = "新增物件_bt"
- Me.新增物件_bt.Size = New System.Drawing.Size(278, 25)
- Me.新增物件_bt.TabIndex = 1053
- Me.新增物件_bt.Text = "新增樓層/迴路"
- Me.新增物件_bt.UseVisualStyleBackColor = True
- '
- '料號_lb
- '
- Me.料號_lb.AutoSize = True
- Me.料號_lb.Location = New System.Drawing.Point(530, 6)
- Me.料號_lb.Name = "料號_lb"
- Me.料號_lb.Size = New System.Drawing.Size(55, 16)
- Me.料號_lb.TabIndex = 1343
- Me.料號_lb.Text = "料 號"
- '
- '樓層_迴路_cb
- '
- Me.樓層_迴路_cb.ForeColor = System.Drawing.Color.Blue
- Me.樓層_迴路_cb.FormattingEnabled = True
- Me.樓層_迴路_cb.Location = New System.Drawing.Point(312, 3)
- Me.樓層_迴路_cb.Name = "樓層_迴路_cb"
- Me.樓層_迴路_cb.Size = New System.Drawing.Size(216, 24)
- Me.樓層_迴路_cb.TabIndex = 1051
- '
- '料號1_tb
- '
- Me.料號1_tb.Location = New System.Drawing.Point(592, 3)
- Me.料號1_tb.Name = "料號1_tb"
- Me.料號1_tb.Size = New System.Drawing.Size(175, 23)
- Me.料號1_tb.TabIndex = 1342
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label3.Location = New System.Drawing.Point(251, 7)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(60, 16)
- Me.Label3.TabIndex = 1050
- Me.Label3.Text = "樓層/迴路"
- Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '修改試算表名稱_bt
- '
- Me.修改試算表名稱_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.修改試算表名稱_bt.ForeColor = System.Drawing.Color.Green
- Me.修改試算表名稱_bt.Location = New System.Drawing.Point(3, 56)
- Me.修改試算表名稱_bt.Name = "修改試算表名稱_bt"
- Me.修改試算表名稱_bt.Size = New System.Drawing.Size(246, 25)
- Me.修改試算表名稱_bt.TabIndex = 1049
- Me.修改試算表名稱_bt.Text = "修改試算表名稱"
- Me.修改試算表名稱_bt.UseVisualStyleBackColor = True
- '
- '新增試算表_bt
- '
- Me.新增試算表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.新增試算表_bt.ForeColor = System.Drawing.Color.Blue
- Me.新增試算表_bt.Location = New System.Drawing.Point(3, 30)
- Me.新增試算表_bt.Name = "新增試算表_bt"
- Me.新增試算表_bt.Size = New System.Drawing.Size(246, 25)
- Me.新增試算表_bt.TabIndex = 1048
- Me.新增試算表_bt.Text = "新增試算表"
- Me.新增試算表_bt.UseVisualStyleBackColor = True
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label1.Location = New System.Drawing.Point(2, 7)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(67, 16)
- Me.Label1.TabIndex = 1046
- Me.Label1.Text = "選擇試算表"
- Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '試算表_cb
- '
- Me.試算表_cb.ForeColor = System.Drawing.Color.Blue
- Me.試算表_cb.FormattingEnabled = True
- Me.試算表_cb.Location = New System.Drawing.Point(73, 4)
- Me.試算表_cb.Name = "試算表_cb"
- Me.試算表_cb.Size = New System.Drawing.Size(176, 24)
- Me.試算表_cb.TabIndex = 946
- Me.試算表_cb.Text = "試算表1"
- '
- '試算表_dgv
- '
- DataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.試算表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle21
- Me.試算表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.試算表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.試算表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.試算表_dgv.Location = New System.Drawing.Point(2, 84)
- Me.試算表_dgv.Name = "試算表_dgv"
- Me.試算表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle22.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.試算表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle22
- Me.試算表_dgv.RowTemplate.Height = 24
- Me.試算表_dgv.Size = New System.Drawing.Size(1900, 918)
- Me.試算表_dgv.TabIndex = 1339
- '
- '物料圖_pb
- '
- Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.物料圖_pb.Location = New System.Drawing.Point(1746, 1)
- Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.物料圖_pb.Name = "物料圖_pb"
- Me.物料圖_pb.Size = New System.Drawing.Size(155, 82)
- Me.物料圖_pb.TabIndex = 1350
- Me.物料圖_pb.TabStop = False
- '
- '選擇公司_cb
- '
- Me.選擇公司_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.選擇公司_cb.ForeColor = System.Drawing.Color.Blue
- Me.選擇公司_cb.FormattingEnabled = True
- Me.選擇公司_cb.Items.AddRange(New Object() {"PT HONG XHE INDUSTRIAL", "PT PUNCAK GEMILANG SEMESTA"})
- Me.選擇公司_cb.Location = New System.Drawing.Point(57, 274)
- Me.選擇公司_cb.Name = "選擇公司_cb"
- Me.選擇公司_cb.Size = New System.Drawing.Size(369, 24)
- Me.選擇公司_cb.TabIndex = 1074
- '
- '立約日期_dtp
- '
- Me.立約日期_dtp.CustomFormat = "yyyy/MM/dd"
- Me.立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
- Me.立約日期_dtp.Location = New System.Drawing.Point(572, 835)
- Me.立約日期_dtp.Name = "立約日期_dtp"
- Me.立約日期_dtp.Size = New System.Drawing.Size(111, 23)
- Me.立約日期_dtp.TabIndex = 1134
- '
- '負責人_B_cb
- '
- Me.負責人_B_cb.FormattingEnabled = True
- Me.負責人_B_cb.Location = New System.Drawing.Point(477, 274)
- Me.負責人_B_cb.Name = "負責人_B_cb"
- Me.負責人_B_cb.Size = New System.Drawing.Size(206, 24)
- Me.負責人_B_cb.TabIndex = 1122
- '
- '金額1_und
- '
- Me.金額1_und.Enabled = False
- Me.金額1_und.Location = New System.Drawing.Point(118, 416)
- Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額1_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
- Me.金額1_und.Name = "金額1_und"
- Me.金額1_und.Size = New System.Drawing.Size(105, 23)
- Me.金額1_und.TabIndex = 1098
- Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額1_und.ThousandsSeparator = True
- '
- 'Label407
- '
- Me.Label407.AutoSize = True
- Me.Label407.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label407.Location = New System.Drawing.Point(4, 748)
- Me.Label407.Name = "Label407"
- Me.Label407.Size = New System.Drawing.Size(106, 21)
- Me.Label407.TabIndex = 1124
- Me.Label407.Text = "第八條、驗收"
- Me.Label407.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label410
- '
- Me.Label410.AutoSize = True
- Me.Label410.ForeColor = System.Drawing.Color.Green
- Me.Label410.Location = New System.Drawing.Point(5, 792)
- Me.Label410.Name = "Label410"
- Me.Label410.Size = New System.Drawing.Size(151, 16)
- Me.Label410.TabIndex = 1125
- Me.Label410.Text = "減價收受以該工程項目乘以"
- '
- '工程款5_nud
- '
- Me.工程款5_nud.Location = New System.Drawing.Point(536, 416)
- Me.工程款5_nud.Name = "工程款5_nud"
- Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款5_nud.TabIndex = 1097
- Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款5_nud.ThousandsSeparator = True
- Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
- '
- 'Label408
- '
- Me.Label408.AutoSize = True
- Me.Label408.ForeColor = System.Drawing.Color.Green
- Me.Label408.Location = New System.Drawing.Point(270, 792)
- Me.Label408.Name = "Label408"
- Me.Label408.Size = New System.Drawing.Size(43, 16)
- Me.Label408.TabIndex = 1126
- Me.Label408.Text = "計價。"
- '
- 'Label377
- '
- Me.Label377.AutoSize = True
- Me.Label377.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label377.ForeColor = System.Drawing.Color.Blue
- Me.Label377.Location = New System.Drawing.Point(1, 301)
- Me.Label377.Name = "Label377"
- Me.Label377.Size = New System.Drawing.Size(43, 16)
- Me.Label377.TabIndex = 1075
- Me.Label377.Text = "地 址"
- Me.Label377.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label405
- '
- Me.Label405.AutoSize = True
- Me.Label405.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label405.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label405.Location = New System.Drawing.Point(432, 278)
- Me.Label405.Name = "Label405"
- Me.Label405.Size = New System.Drawing.Size(43, 16)
- Me.Label405.TabIndex = 1121
- Me.Label405.Text = "負責人"
- Me.Label405.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工程款4_nud
- '
- Me.工程款4_nud.Location = New System.Drawing.Point(307, 440)
- Me.工程款4_nud.Name = "工程款4_nud"
- Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款4_nud.TabIndex = 1096
- Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款4_nud.ThousandsSeparator = True
- Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
- '
- '減價_bt
- '
- Me.減價_bt.Location = New System.Drawing.Point(158, 789)
- Me.減價_bt.Name = "減價_bt"
- Me.減價_bt.Size = New System.Drawing.Size(106, 23)
- Me.減價_bt.TabIndex = 1127
- Me.減價_bt.Text = "60% (sixty) "
- Me.減價_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '頁數_bt
- '
- Me.頁數_bt.Enabled = False
- Me.頁數_bt.Location = New System.Drawing.Point(407, 835)
- Me.頁數_bt.Name = "頁數_bt"
- Me.頁數_bt.Size = New System.Drawing.Size(106, 23)
- Me.頁數_bt.TabIndex = 1133
- Me.頁數_bt.Text = "8 (twelve)"
- Me.頁數_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label409
- '
- Me.Label409.AutoSize = True
- Me.Label409.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label409.Location = New System.Drawing.Point(4, 812)
- Me.Label409.Name = "Label409"
- Me.Label409.Size = New System.Drawing.Size(154, 21)
- Me.Label409.TabIndex = 1128
- Me.Label409.Text = "第十一條、合約效力"
- Me.Label409.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label399
- '
- Me.Label399.AutoSize = True
- Me.Label399.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label399.Location = New System.Drawing.Point(2, 341)
- Me.Label399.Name = "Label399"
- Me.Label399.Size = New System.Drawing.Size(186, 21)
- Me.Label399.TabIndex = 1115
- Me.Label399.Text = "第二條、工作範圍和總價"
- Me.Label399.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '負責人_A_cb
- '
- Me.負責人_A_cb.FormattingEnabled = True
- Me.負責人_A_cb.Location = New System.Drawing.Point(478, 118)
- Me.負責人_A_cb.Name = "負責人_A_cb"
- Me.負責人_A_cb.Size = New System.Drawing.Size(206, 24)
- Me.負責人_A_cb.TabIndex = 1120
- '
- '工程名稱_英_tb
- '
- Me.工程名稱_英_tb.Location = New System.Drawing.Point(95, 249)
- Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
- Me.工程名稱_英_tb.Size = New System.Drawing.Size(588, 23)
- Me.工程名稱_英_tb.TabIndex = 1078
- Me.工程名稱_英_tb.Text = "JSC #B3 substation high voltage power engineering "
- '
- '工程款3_nud
- '
- Me.工程款3_nud.Location = New System.Drawing.Point(307, 416)
- Me.工程款3_nud.Name = "工程款3_nud"
- Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款3_nud.TabIndex = 1095
- Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款3_nud.ThousandsSeparator = True
- Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
- '
- 'Label404
- '
- Me.Label404.AutoSize = True
- Me.Label404.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label404.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label404.Location = New System.Drawing.Point(433, 122)
- Me.Label404.Name = "Label404"
- Me.Label404.Size = New System.Drawing.Size(43, 16)
- Me.Label404.TabIndex = 1119
- Me.Label404.Text = "負責人"
- Me.Label404.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label413
- '
- Me.Label413.AutoSize = True
- Me.Label413.ForeColor = System.Drawing.Color.Green
- Me.Label413.Location = New System.Drawing.Point(267, 837)
- Me.Label413.Name = "Label413"
- Me.Label413.Size = New System.Drawing.Size(133, 16)
- Me.Label413.TabIndex = 1132
- Me.Label413.Text = "的中英文合 約條款共 計"
- '
- 'Label412
- '
- Me.Label412.AutoSize = True
- Me.Label412.ForeColor = System.Drawing.Color.Green
- Me.Label412.Location = New System.Drawing.Point(3, 838)
- Me.Label412.Name = "Label412"
- Me.Label412.Size = New System.Drawing.Size(111, 16)
- Me.Label412.TabIndex = 1130
- Me.Label412.Text = "客戶工程廠區(中文)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'Label400
- '
- Me.Label400.AutoSize = True
- Me.Label400.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label400.Location = New System.Drawing.Point(2, 391)
- Me.Label400.Name = "Label400"
- Me.Label400.Size = New System.Drawing.Size(218, 21)
- Me.Label400.TabIndex = 1116
- Me.Label400.Text = "第三條、合約金額和支付詳情"
- Me.Label400.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '我司地址_tb
- '
- Me.我司地址_tb.Location = New System.Drawing.Point(57, 299)
- Me.我司地址_tb.Multiline = True
- Me.我司地址_tb.Name = "我司地址_tb"
- Me.我司地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.我司地址_tb.Size = New System.Drawing.Size(626, 40)
- Me.我司地址_tb.TabIndex = 1076
- Me.我司地址_tb.Text = "BLOK WESEL RT 004 RW 002 NO.88 DESA MEKARWARU KECAMATAN GANTAR KABUPATEN INDRAMAY" &
- "U"
- '
- '工程款1_nud
- '
- Me.工程款1_nud.Location = New System.Drawing.Point(77, 416)
- Me.工程款1_nud.Name = "工程款1_nud"
- Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款1_nud.TabIndex = 1093
- Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款1_nud.ThousandsSeparator = True
- Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
- '
- '放行_bt
- '
- Me.放行_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.check
- Me.放行_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.放行_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.放行_bt.Location = New System.Drawing.Point(460, 0)
- Me.放行_bt.Name = "放行_bt"
- Me.放行_bt.Size = New System.Drawing.Size(40, 40)
- Me.放行_bt.TabIndex = 1679
- Me.放行_bt.UseVisualStyleBackColor = True
- '
- 'ProgressBar1
- '
- Me.ProgressBar1.Location = New System.Drawing.Point(338, 19)
- Me.ProgressBar1.Maximum = 10000
- Me.ProgressBar1.Name = "ProgressBar1"
- Me.ProgressBar1.Size = New System.Drawing.Size(78, 20)
- Me.ProgressBar1.TabIndex = 1677
- '
- '存檔_tb
- '
- Me.存檔_tb.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.SAVER2
- Me.存檔_tb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.存檔_tb.ForeColor = System.Drawing.Color.Green
- Me.存檔_tb.Location = New System.Drawing.Point(419, 0)
- Me.存檔_tb.Name = "存檔_tb"
- Me.存檔_tb.Size = New System.Drawing.Size(40, 40)
- Me.存檔_tb.TabIndex = 1676
- Me.存檔_tb.UseVisualStyleBackColor = True
- '
- '合約停止_ch
- '
- Me.合約停止_ch.AutoSize = True
- Me.合約停止_ch.BackColor = System.Drawing.SystemColors.Control
- Me.合約停止_ch.Location = New System.Drawing.Point(342, 1)
- Me.合約停止_ch.Name = "合約停止_ch"
- Me.合約停止_ch.Size = New System.Drawing.Size(74, 20)
- Me.合約停止_ch.TabIndex = 1678
- Me.合約停止_ch.Text = "合約停止"
- Me.合約停止_ch.UseVisualStyleBackColor = False
- '
- '列印成EXCEL_bt
- '
- Me.列印成EXCEL_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.列印成EXCEL_bt.BackColor = System.Drawing.SystemColors.Control
- Me.列印成EXCEL_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.print
- Me.列印成EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.列印成EXCEL_bt.ForeColor = System.Drawing.Color.Green
- Me.列印成EXCEL_bt.Location = New System.Drawing.Point(1859, 1)
- Me.列印成EXCEL_bt.Name = "列印成EXCEL_bt"
- Me.列印成EXCEL_bt.Size = New System.Drawing.Size(40, 40)
- Me.列印成EXCEL_bt.TabIndex = 1414
- Me.列印成EXCEL_bt.UseVisualStyleBackColor = False
- '
- '縮放2_bt
- '
- Me.縮放2_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.ZOOM01
- Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
- Me.縮放2_bt.Location = New System.Drawing.Point(50, 1)
- Me.縮放2_bt.Name = "縮放2_bt"
- Me.縮放2_bt.Size = New System.Drawing.Size(40, 40)
- Me.縮放2_bt.TabIndex = 1674
- Me.縮放2_bt.UseVisualStyleBackColor = True
- '
- '合約_dgv
- '
- DataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle23
- Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
- Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.合約_dgv.Location = New System.Drawing.Point(-1, 42)
- Me.合約_dgv.Name = "合約_dgv"
- Me.合約_dgv.RowHeadersWidth = 5
- Me.合約_dgv.RowTemplate.Height = 24
- Me.合約_dgv.Size = New System.Drawing.Size(147, 960)
- Me.合約_dgv.TabIndex = 1043
- '
- '錨點2
- '
- Me.錨點2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.錨點2.Location = New System.Drawing.Point(145, 1004)
- Me.錨點2.Name = "錨點2"
- Me.錨點2.Size = New System.Drawing.Size(25, 23)
- Me.錨點2.TabIndex = 1363
- Me.錨點2.Visible = False
- '
- '縮放1_bt
- '
- Me.縮放1_bt.Location = New System.Drawing.Point(1, 1)
- Me.縮放1_bt.Name = "縮放1_bt"
- Me.縮放1_bt.Size = New System.Drawing.Size(50, 40)
- Me.縮放1_bt.TabIndex = 1362
- Me.縮放1_bt.Text = "合約清單"
- Me.縮放1_bt.UseVisualStyleBackColor = True
- '
- '查詢_bt
- '
- Me.查詢_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.下載
- Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.查詢_bt.Location = New System.Drawing.Point(195, 1)
- Me.查詢_bt.Name = "查詢_bt"
- Me.查詢_bt.Size = New System.Drawing.Size(40, 40)
- Me.查詢_bt.TabIndex = 1046
- Me.查詢_bt.UseVisualStyleBackColor = True
- '
- '關鍵字搜尋_tb
- '
- Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(91, 16)
- Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
- Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(104, 23)
- Me.關鍵字搜尋_tb.TabIndex = 1044
- '
- 'Label53
- '
- Me.Label53.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label53.AutoSize = True
- Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label53.ForeColor = System.Drawing.Color.Red
- Me.Label53.Location = New System.Drawing.Point(1655, 5)
- Me.Label53.Name = "Label53"
- Me.Label53.Size = New System.Drawing.Size(127, 32)
- Me.Label53.TabIndex = 1675
- Me.Label53.Text = "連點兩下就可將明細連" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "動帶入總表選定的位置"
- Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label7.Location = New System.Drawing.Point(90, 2)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(67, 16)
- Me.Label7.TabIndex = 1045
- Me.Label7.Text = "合約號搜尋"
- Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工材分離_ch
- '
- Me.工材分離_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.工材分離_ch.AutoSize = True
- Me.工材分離_ch.BackColor = System.Drawing.SystemColors.Control
- Me.工材分離_ch.ForeColor = System.Drawing.Color.Green
- Me.工材分離_ch.Location = New System.Drawing.Point(1788, 3)
- Me.工材分離_ch.Name = "工材分離_ch"
- Me.工材分離_ch.Size = New System.Drawing.Size(74, 36)
- Me.工材分離_ch.TabIndex = 1414
- Me.工材分離_ch.Text = "工資材料" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "分離格式"
- Me.工材分離_ch.UseVisualStyleBackColor = False
- '
- '空間3
- '
- Me.空間3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.空間3.AutoScroll = True
- Me.空間3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.空間3.Controls.Add(Me.歸零數_tb)
- Me.空間3.Controls.Add(Me.利潤比4_tb)
- Me.空間3.Controls.Add(Me.Label71)
- Me.空間3.Controls.Add(Me.Label70)
- Me.空間3.Controls.Add(Me.Label69)
- Me.空間3.Controls.Add(Me.Label68)
- Me.空間3.Controls.Add(Me.Label67)
- Me.空間3.Controls.Add(Me.Label64)
- Me.空間3.Controls.Add(Me.Label63)
- Me.空間3.Controls.Add(Me.利潤比3_tb)
- Me.空間3.Controls.Add(Me.Label60)
- Me.空間3.Controls.Add(Me.總報價_tb)
- Me.空間3.Controls.Add(Me.總成本_tb)
- Me.空間3.Controls.Add(Me.Label58)
- Me.空間3.Controls.Add(Me.Label59)
- Me.空間3.Controls.Add(Me.利潤比2_tb)
- Me.空間3.Controls.Add(Me.Label57)
- Me.空間3.Controls.Add(Me.利潤比1_tb)
- Me.空間3.Controls.Add(Me.預估利潤_tb)
- Me.空間3.Controls.Add(Me.預估材料總報價_tb)
- Me.空間3.Controls.Add(Me.預估工資總報價_tb)
- Me.空間3.Controls.Add(Me.預估材料總成本_tb)
- Me.空間3.Controls.Add(Me.Label54)
- Me.空間3.Controls.Add(Me.預估工資總成本_tb)
- Me.空間3.Controls.Add(Me.Label55)
- Me.空間3.Controls.Add(Me.Label65)
- Me.空間3.Controls.Add(Me.Label62)
- Me.空間3.Controls.Add(Me.Label66)
- Me.空間3.Controls.Add(Me.Label61)
- Me.空間3.Controls.Add(Me.TabControl3)
- Me.空間3.Controls.Add(Me.Panel2)
- Me.空間3.Controls.Add(Me.Panel1)
- Me.空間3.Controls.Add(Me.報價總表_dgv)
- Me.空間3.Location = New System.Drawing.Point(145, 42)
- Me.空間3.Name = "空間3"
- Me.空間3.Size = New System.Drawing.Size(1757, 960)
- Me.空間3.TabIndex = 1353
- '
- '歸零數_tb
- '
- Me.歸零數_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.歸零數_tb.Location = New System.Drawing.Point(1210, 782)
- Me.歸零數_tb.Name = "歸零數_tb"
- Me.歸零數_tb.Size = New System.Drawing.Size(47, 16)
- Me.歸零數_tb.TabIndex = 1755
- '
- '利潤比4_tb
- '
- Me.利潤比4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.利潤比4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.利潤比4_tb.Location = New System.Drawing.Point(1205, 936)
- Me.利潤比4_tb.Name = "利潤比4_tb"
- Me.利潤比4_tb.Size = New System.Drawing.Size(47, 16)
- Me.利潤比4_tb.TabIndex = 1752
- Me.利潤比4_tb.Text = "100%"
- Me.利潤比4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label71
- '
- Me.Label71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label71.AutoSize = True
- Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label71.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label71.Location = New System.Drawing.Point(1101, 937)
- Me.Label71.Name = "Label71"
- Me.Label71.Size = New System.Drawing.Size(105, 16)
- Me.Label71.TabIndex = 1753
- Me.Label71.Text = "利 潤 比 (含折讓) :"
- Me.Label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label70
- '
- Me.Label70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label70.AutoSize = True
- Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label70.Location = New System.Drawing.Point(917, 936)
- Me.Label70.Name = "Label70"
- Me.Label70.Size = New System.Drawing.Size(26, 16)
- Me.Label70.TabIndex = 1751
- Me.Label70.Text = ") = "
- Me.Label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label69
- '
- Me.Label69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label69.AutoSize = True
- Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label69.ForeColor = System.Drawing.Color.Red
- Me.Label69.Location = New System.Drawing.Point(856, 937)
- Me.Label69.Name = "Label69"
- Me.Label69.Size = New System.Drawing.Size(55, 16)
- Me.Label69.TabIndex = 1750
- Me.Label69.Text = "折讓金額"
- Me.Label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label68
- '
- Me.Label68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label68.AutoSize = True
- Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label68.Location = New System.Drawing.Point(838, 935)
- Me.Label68.Name = "Label68"
- Me.Label68.Size = New System.Drawing.Size(12, 16)
- Me.Label68.TabIndex = 1749
- Me.Label68.Text = "-"
- Me.Label68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label67
- '
- Me.Label67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label67.AutoSize = True
- Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label67.ForeColor = System.Drawing.Color.Green
- Me.Label67.Location = New System.Drawing.Point(718, 936)
- Me.Label67.Name = "Label67"
- Me.Label67.Size = New System.Drawing.Size(43, 16)
- Me.Label67.TabIndex = 1748
- Me.Label67.Text = "總報價"
- Me.Label67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label64
- '
- Me.Label64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label64.AutoSize = True
- Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label64.Location = New System.Drawing.Point(763, 935)
- Me.Label64.Name = "Label64"
- Me.Label64.Size = New System.Drawing.Size(19, 16)
- Me.Label64.TabIndex = 1747
- Me.Label64.Text = "- ("
- Me.Label64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label63
- '
- Me.Label63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label63.AutoSize = True
- Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label63.ForeColor = System.Drawing.Color.Red
- Me.Label63.Location = New System.Drawing.Point(786, 936)
- Me.Label63.Name = "Label63"
- Me.Label63.Size = New System.Drawing.Size(46, 16)
- Me.Label63.TabIndex = 1746
- Me.Label63.Text = "總成本 "
- Me.Label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '利潤比3_tb
- '
- Me.利潤比3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.利潤比3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.利潤比3_tb.Location = New System.Drawing.Point(1205, 917)
- Me.利潤比3_tb.Name = "利潤比3_tb"
- Me.利潤比3_tb.Size = New System.Drawing.Size(47, 16)
- Me.利潤比3_tb.TabIndex = 1744
- Me.利潤比3_tb.Text = "100%"
- Me.利潤比3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label60
- '
- Me.Label60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label60.AutoSize = True
- Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label60.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label60.Location = New System.Drawing.Point(1101, 918)
- Me.Label60.Name = "Label60"
- Me.Label60.Size = New System.Drawing.Size(105, 16)
- Me.Label60.TabIndex = 1745
- Me.Label60.Text = "利潤比(不含折讓) :"
- Me.Label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '總報價_tb
- '
- Me.總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總報價_tb.Location = New System.Drawing.Point(1006, 917)
- Me.總報價_tb.Name = "總報價_tb"
- Me.總報價_tb.Size = New System.Drawing.Size(90, 16)
- Me.總報價_tb.TabIndex = 1741
- Me.總報價_tb.Text = "99,999,999,999"
- Me.總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '總成本_tb
- '
- Me.總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總成本_tb.Location = New System.Drawing.Point(812, 917)
- Me.總成本_tb.Name = "總成本_tb"
- Me.總成本_tb.Size = New System.Drawing.Size(90, 16)
- Me.總成本_tb.TabIndex = 1740
- Me.總成本_tb.Text = "99,999,999,999"
- Me.總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label58
- '
- Me.Label58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label58.AutoSize = True
- Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label58.ForeColor = System.Drawing.Color.Red
- Me.Label58.Location = New System.Drawing.Point(716, 916)
- Me.Label58.Name = "Label58"
- Me.Label58.Size = New System.Drawing.Size(97, 16)
- Me.Label58.TabIndex = 1742
- Me.Label58.Text = "總 成 本 :"
- Me.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label59
- '
- Me.Label59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label59.AutoSize = True
- Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label59.ForeColor = System.Drawing.Color.Green
- Me.Label59.Location = New System.Drawing.Point(911, 916)
- Me.Label59.Name = "Label59"
- Me.Label59.Size = New System.Drawing.Size(97, 16)
- Me.Label59.TabIndex = 1743
- Me.Label59.Text = "總 報 價 :"
- Me.Label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '利潤比2_tb
- '
- Me.利潤比2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.利潤比2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.利潤比2_tb.Location = New System.Drawing.Point(1206, 897)
- Me.利潤比2_tb.Name = "利潤比2_tb"
- Me.利潤比2_tb.Size = New System.Drawing.Size(47, 16)
- Me.利潤比2_tb.TabIndex = 1738
- Me.利潤比2_tb.Text = "100%"
- Me.利潤比2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label57
- '
- Me.Label57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label57.AutoSize = True
- Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label57.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label57.Location = New System.Drawing.Point(1102, 898)
- Me.Label57.Name = "Label57"
- Me.Label57.Size = New System.Drawing.Size(103, 16)
- Me.Label57.TabIndex = 1739
- Me.Label57.Text = "利 潤 比 :"
- Me.Label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '利潤比1_tb
- '
- Me.利潤比1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.利潤比1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.利潤比1_tb.Location = New System.Drawing.Point(1205, 878)
- Me.利潤比1_tb.Name = "利潤比1_tb"
- Me.利潤比1_tb.Size = New System.Drawing.Size(47, 16)
- Me.利潤比1_tb.TabIndex = 1729
- Me.利潤比1_tb.Text = "100%"
- Me.利潤比1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '預估利潤_tb
- '
- Me.預估利潤_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.預估利潤_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.預估利潤_tb.Location = New System.Drawing.Point(1006, 937)
- Me.預估利潤_tb.Name = "預估利潤_tb"
- Me.預估利潤_tb.Size = New System.Drawing.Size(90, 16)
- Me.預估利潤_tb.TabIndex = 1728
- Me.預估利潤_tb.Text = "99,999,999,999"
- Me.預估利潤_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '預估材料總報價_tb
- '
- Me.預估材料總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.預估材料總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.預估材料總報價_tb.Location = New System.Drawing.Point(1006, 897)
- Me.預估材料總報價_tb.Name = "預估材料總報價_tb"
- Me.預估材料總報價_tb.Size = New System.Drawing.Size(90, 16)
- Me.預估材料總報價_tb.TabIndex = 1727
- Me.預估材料總報價_tb.Text = "99,999,999,999"
- Me.預估材料總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '預估工資總報價_tb
- '
- Me.預估工資總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.預估工資總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.預估工資總報價_tb.Location = New System.Drawing.Point(1006, 877)
- Me.預估工資總報價_tb.Name = "預估工資總報價_tb"
- Me.預估工資總報價_tb.Size = New System.Drawing.Size(90, 16)
- Me.預估工資總報價_tb.TabIndex = 1726
- Me.預估工資總報價_tb.Text = "99,999,999,999"
- Me.預估工資總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '預估材料總成本_tb
- '
- Me.預估材料總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.預估材料總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.預估材料總成本_tb.Location = New System.Drawing.Point(812, 897)
- Me.預估材料總成本_tb.Name = "預估材料總成本_tb"
- Me.預估材料總成本_tb.Size = New System.Drawing.Size(90, 16)
- Me.預估材料總成本_tb.TabIndex = 1725
- Me.預估材料總成本_tb.Text = "99,999,999,999"
- Me.預估材料總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label54
- '
- Me.Label54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label54.AutoSize = True
- Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label54.ForeColor = System.Drawing.Color.Red
- Me.Label54.Location = New System.Drawing.Point(715, 877)
- Me.Label54.Name = "Label54"
- Me.Label54.Size = New System.Drawing.Size(97, 16)
- Me.Label54.TabIndex = 1731
- Me.Label54.Text = "預估工資總成本 :"
- Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '預估工資總成本_tb
- '
- Me.預估工資總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.預估工資總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.預估工資總成本_tb.Location = New System.Drawing.Point(812, 877)
- Me.預估工資總成本_tb.Name = "預估工資總成本_tb"
- Me.預估工資總成本_tb.Size = New System.Drawing.Size(90, 16)
- Me.預估工資總成本_tb.TabIndex = 1724
- Me.預估工資總成本_tb.Text = "99,999,999,999"
- Me.預估工資總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label55
- '
- Me.Label55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label55.AutoSize = True
- Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label55.ForeColor = System.Drawing.Color.Red
- Me.Label55.Location = New System.Drawing.Point(716, 897)
- Me.Label55.Name = "Label55"
- Me.Label55.Size = New System.Drawing.Size(97, 16)
- Me.Label55.TabIndex = 1733
- Me.Label55.Text = "預估材料總成本 :"
- Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label65
- '
- Me.Label65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label65.AutoSize = True
- Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label65.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label65.Location = New System.Drawing.Point(1101, 878)
- Me.Label65.Name = "Label65"
- Me.Label65.Size = New System.Drawing.Size(103, 16)
- Me.Label65.TabIndex = 1737
- Me.Label65.Text = "利 潤 比 :"
- Me.Label65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label62
- '
- Me.Label62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label62.AutoSize = True
- Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label62.ForeColor = System.Drawing.Color.Green
- Me.Label62.Location = New System.Drawing.Point(910, 877)
- Me.Label62.Name = "Label62"
- Me.Label62.Size = New System.Drawing.Size(97, 16)
- Me.Label62.TabIndex = 1734
- Me.Label62.Text = "預估工資總報價 :"
- Me.Label62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label66
- '
- Me.Label66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label66.AutoSize = True
- Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label66.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label66.Location = New System.Drawing.Point(946, 936)
- Me.Label66.Name = "Label66"
- Me.Label66.Size = New System.Drawing.Size(61, 16)
- Me.Label66.TabIndex = 1736
- Me.Label66.Text = "預估利潤 :"
- Me.Label66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label61
- '
- Me.Label61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label61.AutoSize = True
- Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label61.ForeColor = System.Drawing.Color.Green
- Me.Label61.Location = New System.Drawing.Point(911, 897)
- Me.Label61.Name = "Label61"
- Me.Label61.Size = New System.Drawing.Size(97, 16)
- Me.Label61.TabIndex = 1735
- Me.Label61.Text = "預估材料總報價 :"
- Me.Label61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'TabControl3
- '
- Me.TabControl3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TabControl3.Appearance = System.Windows.Forms.TabAppearance.Buttons
- Me.TabControl3.Controls.Add(Me.TabPage1)
- Me.TabControl3.Controls.Add(Me.TabPage2)
- Me.TabControl3.Location = New System.Drawing.Point(712, 782)
- Me.TabControl3.Name = "TabControl3"
- Me.TabControl3.SelectedIndex = 0
- Me.TabControl3.Size = New System.Drawing.Size(1040, 93)
- Me.TabControl3.TabIndex = 1730
- '
- 'TabPage1
- '
- Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage1.Controls.Add(Me.折價計算_bt)
- Me.TabPage1.Controls.Add(Me.Label83)
- Me.TabPage1.Controls.Add(Me.甲方_cb)
- Me.TabPage1.Controls.Add(Me.未折價前_tb)
- Me.TabPage1.Controls.Add(Me.Label82)
- Me.TabPage1.Controls.Add(Me.歸零位數_nud)
- Me.TabPage1.Controls.Add(Me.Label81)
- Me.TabPage1.Controls.Add(Me.稅後歸零_ch)
- Me.TabPage1.Controls.Add(Me.稅前歸零_ch)
- Me.TabPage1.Controls.Add(Me.Label80)
- Me.TabPage1.Controls.Add(Me.折讓比例_nud)
- Me.TabPage1.Controls.Add(Me.Label79)
- Me.TabPage1.Controls.Add(Me.報價小計_tb)
- Me.TabPage1.Controls.Add(Me.Label39)
- Me.TabPage1.Location = New System.Drawing.Point(4, 28)
- Me.TabPage1.Name = "TabPage1"
- Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage1.Size = New System.Drawing.Size(1032, 61)
- Me.TabPage1.TabIndex = 0
- Me.TabPage1.Text = "折讓與報價去尾數 / Discounts and quotes rounded off"
- Me.TabPage1.UseVisualStyleBackColor = True
- '
- '折價計算_bt
- '
- Me.折價計算_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.calc1
- Me.折價計算_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.折價計算_bt.Location = New System.Drawing.Point(460, 2)
- Me.折價計算_bt.Name = "折價計算_bt"
- Me.折價計算_bt.Size = New System.Drawing.Size(52, 52)
- Me.折價計算_bt.TabIndex = 1722
- Me.折價計算_bt.UseVisualStyleBackColor = True
- '
- 'Label83
- '
- Me.Label83.AutoSize = True
- Me.Label83.BackColor = System.Drawing.SystemColors.Control
- Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label83.ForeColor = System.Drawing.Color.Green
- Me.Label83.Location = New System.Drawing.Point(171, 7)
- Me.Label83.Name = "Label83"
- Me.Label83.Size = New System.Drawing.Size(55, 16)
- Me.Label83.TabIndex = 1721
- Me.Label83.Text = "折價參考"
- Me.Label83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '甲方_cb
- '
- Me.甲方_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.甲方_cb.ForeColor = System.Drawing.Color.Green
- Me.甲方_cb.FormattingEnabled = True
- Me.甲方_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.甲方_cb.Location = New System.Drawing.Point(225, 3)
- Me.甲方_cb.Name = "甲方_cb"
- Me.甲方_cb.Size = New System.Drawing.Size(94, 24)
- Me.甲方_cb.TabIndex = 1720
- '
- '未折價前_tb
- '
- Me.未折價前_tb.Location = New System.Drawing.Point(65, 4)
- Me.未折價前_tb.Name = "未折價前_tb"
- Me.未折價前_tb.Size = New System.Drawing.Size(110, 23)
- Me.未折價前_tb.TabIndex = 1718
- Me.未折價前_tb.Text = "99,999,999,999"
- Me.未折價前_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label82
- '
- Me.Label82.AutoSize = True
- Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label82.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label82.Location = New System.Drawing.Point(8, 7)
- Me.Label82.Name = "Label82"
- Me.Label82.Size = New System.Drawing.Size(55, 16)
- Me.Label82.TabIndex = 1719
- Me.Label82.Text = "未折價前"
- Me.Label82.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '歸零位數_nud
- '
- Me.歸零位數_nud.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.歸零位數_nud.Location = New System.Drawing.Point(403, 25)
- Me.歸零位數_nud.Maximum = New Decimal(New Integer() {10, 0, 0, 0})
- Me.歸零位數_nud.Name = "歸零位數_nud"
- Me.歸零位數_nud.Size = New System.Drawing.Size(52, 23)
- Me.歸零位數_nud.TabIndex = 1717
- Me.歸零位數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.歸零位數_nud.ThousandsSeparator = True
- '
- 'Label81
- '
- Me.Label81.AutoSize = True
- Me.Label81.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label81.Location = New System.Drawing.Point(401, 7)
- Me.Label81.Name = "Label81"
- Me.Label81.Size = New System.Drawing.Size(55, 16)
- Me.Label81.TabIndex = 1716
- Me.Label81.Text = "歸零位數"
- '
- '稅後歸零_ch
- '
- Me.稅後歸零_ch.AutoSize = True
- Me.稅後歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.稅後歸零_ch.Location = New System.Drawing.Point(324, 31)
- Me.稅後歸零_ch.Name = "稅後歸零_ch"
- Me.稅後歸零_ch.Size = New System.Drawing.Size(74, 20)
- Me.稅後歸零_ch.TabIndex = 1715
- Me.稅後歸零_ch.Text = "稅後歸零"
- Me.稅後歸零_ch.UseVisualStyleBackColor = True
- '
- '稅前歸零_ch
- '
- Me.稅前歸零_ch.AutoSize = True
- Me.稅前歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.稅前歸零_ch.Location = New System.Drawing.Point(324, 5)
- Me.稅前歸零_ch.Name = "稅前歸零_ch"
- Me.稅前歸零_ch.Size = New System.Drawing.Size(74, 20)
- Me.稅前歸零_ch.TabIndex = 1714
- Me.稅前歸零_ch.Text = "稅前歸零"
- Me.稅前歸零_ch.UseVisualStyleBackColor = True
- '
- 'Label80
- '
- Me.Label80.AutoSize = True
- Me.Label80.ForeColor = System.Drawing.Color.Green
- Me.Label80.Location = New System.Drawing.Point(301, 32)
- Me.Label80.Name = "Label80"
- Me.Label80.Size = New System.Drawing.Size(18, 16)
- Me.Label80.TabIndex = 1713
- Me.Label80.Text = "%"
- '
- '折讓比例_nud
- '
- Me.折讓比例_nud.ForeColor = System.Drawing.Color.Green
- Me.折讓比例_nud.Location = New System.Drawing.Point(249, 29)
- Me.折讓比例_nud.Name = "折讓比例_nud"
- Me.折讓比例_nud.Size = New System.Drawing.Size(49, 23)
- Me.折讓比例_nud.TabIndex = 1712
- Me.折讓比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.折讓比例_nud.ThousandsSeparator = True
- '
- 'Label79
- '
- Me.Label79.AutoSize = True
- Me.Label79.ForeColor = System.Drawing.Color.Green
- Me.Label79.Location = New System.Drawing.Point(192, 32)
- Me.Label79.Name = "Label79"
- Me.Label79.Size = New System.Drawing.Size(55, 16)
- Me.Label79.TabIndex = 1711
- Me.Label79.Text = "折讓比例"
- '
- '報價小計_tb
- '
- Me.報價小計_tb.Location = New System.Drawing.Point(65, 30)
- Me.報價小計_tb.Name = "報價小計_tb"
- Me.報價小計_tb.Size = New System.Drawing.Size(110, 23)
- Me.報價小計_tb.TabIndex = 1709
- Me.報價小計_tb.Text = "99,999,999,999"
- Me.報價小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label39
- '
- Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label39.AutoSize = True
- Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label39.Location = New System.Drawing.Point(8, 35)
- Me.Label39.Name = "Label39"
- Me.Label39.Size = New System.Drawing.Size(55, 16)
- Me.Label39.TabIndex = 1710
- Me.Label39.Text = "報價小計"
- Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'TabPage2
- '
- Me.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage2.Controls.Add(Me.報價說明_tb)
- Me.TabPage2.Location = New System.Drawing.Point(4, 28)
- Me.TabPage2.Name = "TabPage2"
- Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage2.Size = New System.Drawing.Size(1032, 61)
- Me.TabPage2.TabIndex = 1
- Me.TabPage2.Text = "報價說明/Offer descriptions:"
- Me.TabPage2.UseVisualStyleBackColor = True
- '
- '報價說明_tb
- '
- Me.報價說明_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.報價說明_tb.Location = New System.Drawing.Point(1, 4)
- Me.報價說明_tb.Multiline = True
- Me.報價說明_tb.Name = "報價說明_tb"
- Me.報價說明_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.報價說明_tb.Size = New System.Drawing.Size(1025, 57)
- Me.報價說明_tb.TabIndex = 1406
- '
- 'Panel2
- '
- Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Panel2.AutoScroll = True
- Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Panel2.Controls.Add(Me.Label42)
- Me.Panel2.Controls.Add(Me.Label379)
- Me.Panel2.Controls.Add(Me.工程期_ch)
- Me.Panel2.Controls.Add(Me.Label19)
- Me.Panel2.Controls.Add(Me.Label15)
- Me.Panel2.Controls.Add(Me.最末頁_cb)
- Me.Panel2.Controls.Add(Me.Label20)
- Me.Panel2.Controls.Add(Me.合約編號3_tb)
- Me.Panel2.Controls.Add(Me.合約編號2_tb)
- Me.Panel2.Controls.Add(Me.明細選項_bt)
- Me.Panel2.Controls.Add(Me.合約編號1_tb)
- Me.Panel2.Controls.Add(Me.合約編號_cb)
- Me.Panel2.Controls.Add(Me.Label397)
- Me.Panel2.Controls.Add(Me.金額6_und)
- Me.Panel2.Controls.Add(Me.Label5)
- Me.Panel2.Controls.Add(Me.工程款6_nud)
- Me.Panel2.Controls.Add(Me.最高扣款_bt)
- Me.Panel2.Controls.Add(Me.合約種類_tb)
- Me.Panel2.Controls.Add(Me.NUD2)
- Me.Panel2.Controls.Add(Me.NUD1)
- Me.Panel2.Controls.Add(Me.Label372)
- Me.Panel2.Controls.Add(Me.Label394)
- Me.Panel2.Controls.Add(Me.客戶名稱_tb)
- Me.Panel2.Controls.Add(Me.Label396)
- Me.Panel2.Controls.Add(Me.Label373)
- Me.Panel2.Controls.Add(Me.NUD3)
- Me.Panel2.Controls.Add(Me.Label374)
- Me.Panel2.Controls.Add(Me.合約種類_cb)
- Me.Panel2.Controls.Add(Me.Label375)
- Me.Panel2.Controls.Add(Me.逾期_bt)
- Me.Panel2.Controls.Add(Me.工程名稱_中_tb)
- Me.Panel2.Controls.Add(Me.Label395)
- Me.Panel2.Controls.Add(Me.客戶地址_tb)
- Me.Panel2.Controls.Add(Me.Label393)
- Me.Panel2.Controls.Add(Me.金額5_und)
- Me.Panel2.Controls.Add(Me.Label380)
- Me.Panel2.Controls.Add(Me.工程地點_tb)
- Me.Panel2.Controls.Add(Me.Label406)
- Me.Panel2.Controls.Add(Me.金額4_und)
- Me.Panel2.Controls.Add(Me.逾期_英_bt)
- Me.Panel2.Controls.Add(Me.Label376)
- Me.Panel2.Controls.Add(Me.工期_nud)
- Me.Panel2.Controls.Add(Me.金額3_und)
- Me.Panel2.Controls.Add(Me.最高扣款_英_bt)
- Me.Panel2.Controls.Add(Me.Label414)
- Me.Panel2.Controls.Add(Me.Label391)
- Me.Panel2.Controls.Add(Me.金額2_und)
- Me.Panel2.Controls.Add(Me.Label403)
- Me.Panel2.Controls.Add(Me.選擇公司_cb)
- Me.Panel2.Controls.Add(Me.負責人_B_cb)
- Me.Panel2.Controls.Add(Me.金額1_und)
- Me.Panel2.Controls.Add(Me.Label407)
- Me.Panel2.Controls.Add(Me.立約日期_dtp)
- Me.Panel2.Controls.Add(Me.Label410)
- Me.Panel2.Controls.Add(Me.工程款5_nud)
- Me.Panel2.Controls.Add(Me.Label408)
- Me.Panel2.Controls.Add(Me.Label377)
- Me.Panel2.Controls.Add(Me.Label405)
- Me.Panel2.Controls.Add(Me.工程款4_nud)
- Me.Panel2.Controls.Add(Me.減價_bt)
- Me.Panel2.Controls.Add(Me.頁數_bt)
- Me.Panel2.Controls.Add(Me.Label409)
- Me.Panel2.Controls.Add(Me.Label399)
- Me.Panel2.Controls.Add(Me.負責人_A_cb)
- Me.Panel2.Controls.Add(Me.我司地址_tb)
- Me.Panel2.Controls.Add(Me.工程名稱_英_tb)
- Me.Panel2.Controls.Add(Me.工程款3_nud)
- Me.Panel2.Controls.Add(Me.Label404)
- Me.Panel2.Controls.Add(Me.Label413)
- Me.Panel2.Controls.Add(Me.Label412)
- Me.Panel2.Controls.Add(Me.Label400)
- Me.Panel2.Controls.Add(Me.工程款1_nud)
- Me.Panel2.Controls.Add(Me.Label378)
- Me.Panel2.Controls.Add(Me.廠區_中文_tb)
- Me.Panel2.Controls.Add(Me.工程款2_nud)
- Me.Panel2.Controls.Add(Me.Label28)
- Me.Panel2.Controls.Add(Me.Label382)
- Me.Panel2.Controls.Add(Me.稅額顯示_lb)
- Me.Panel2.Controls.Add(Me.CH2)
- Me.Panel2.Controls.Add(Me.CH1)
- Me.Panel2.Controls.Add(Me.Label402)
- Me.Panel2.Controls.Add(Me.Label392)
- Me.Panel2.Controls.Add(Me.Label381)
- Me.Panel2.Controls.Add(Me.Label386)
- Me.Panel2.Controls.Add(Me.Label21)
- Me.Panel2.Controls.Add(Me.TabControl2)
- Me.Panel2.Controls.Add(Me.Label388)
- Me.Panel2.Controls.Add(Me.Label387)
- Me.Panel2.Controls.Add(Me.Label390)
- Me.Panel2.Controls.Add(Me.Label389)
- Me.Panel2.Controls.Add(Me.Label411)
- Me.Panel2.Controls.Add(Me.Label29)
- Me.Panel2.Controls.Add(Me.Label35)
- Me.Panel2.Controls.Add(Me.Label34)
- Me.Panel2.Location = New System.Drawing.Point(-1, -1)
- Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(713, 960)
- Me.Panel2.TabIndex = 1408
- '
- 'Label378
- '
- Me.Label378.AutoSize = True
- Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label378.Location = New System.Drawing.Point(1, 252)
- Me.Label378.Name = "Label378"
- Me.Label378.Size = New System.Drawing.Size(87, 16)
- Me.Label378.TabIndex = 1077
- Me.Label378.Text = "工程名稱(英文)"
- Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '廠區_中文_tb
- '
- Me.廠區_中文_tb.Location = New System.Drawing.Point(121, 835)
- Me.廠區_中文_tb.Name = "廠區_中文_tb"
- Me.廠區_中文_tb.Size = New System.Drawing.Size(140, 23)
- Me.廠區_中文_tb.TabIndex = 1131
- Me.廠區_中文_tb.Text = "印尼耐克鞋厂"
- Me.廠區_中文_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '工程款2_nud
- '
- Me.工程款2_nud.Location = New System.Drawing.Point(77, 440)
- Me.工程款2_nud.Name = "工程款2_nud"
- Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款2_nud.TabIndex = 1094
- Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款2_nud.ThousandsSeparator = True
- Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
- '
- 'Label28
- '
- Me.Label28.AutoSize = True
- Me.Label28.Location = New System.Drawing.Point(-2, 103)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(687, 16)
- Me.Label28.TabIndex = 1353
- Me.Label28.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- 'Label382
- '
- Me.Label382.AutoSize = True
- Me.Label382.Location = New System.Drawing.Point(-2, 351)
- Me.Label382.Name = "Label382"
- Me.Label382.Size = New System.Drawing.Size(687, 16)
- Me.Label382.TabIndex = 1083
- Me.Label382.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- '稅額顯示_lb
- '
- Me.稅額顯示_lb.AutoSize = True
- Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
- Me.稅額顯示_lb.Location = New System.Drawing.Point(242, 369)
- Me.稅額顯示_lb.Name = "稅額顯示_lb"
- Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
- Me.稅額顯示_lb.TabIndex = 1084
- Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
- '
- 'CH2
- '
- Me.CH2.AutoSize = True
- Me.CH2.ForeColor = System.Drawing.Color.Green
- Me.CH2.Location = New System.Drawing.Point(471, 368)
- Me.CH2.Name = "CH2"
- Me.CH2.Size = New System.Drawing.Size(111, 20)
- Me.CH2.TabIndex = 1137
- Me.CH2.Text = "工程總價 = Rp. "
- Me.CH2.UseVisualStyleBackColor = True
- '
- 'CH1
- '
- Me.CH1.AutoSize = True
- Me.CH1.ForeColor = System.Drawing.Color.Green
- Me.CH1.Location = New System.Drawing.Point(2, 368)
- Me.CH1.Name = "CH1"
- Me.CH1.Size = New System.Drawing.Size(135, 20)
- Me.CH1.TabIndex = 1136
- Me.CH1.Text = "分項工程報價 = Rp. "
- Me.CH1.UseVisualStyleBackColor = True
- '
- 'Label402
- '
- Me.Label402.AutoSize = True
- Me.Label402.Location = New System.Drawing.Point(-2, 401)
- Me.Label402.Name = "Label402"
- Me.Label402.Size = New System.Drawing.Size(687, 16)
- Me.Label402.TabIndex = 1117
- Me.Label402.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- 'Label392
- '
- Me.Label392.AutoSize = True
- Me.Label392.Location = New System.Drawing.Point(-2, 660)
- Me.Label392.Name = "Label392"
- Me.Label392.Size = New System.Drawing.Size(687, 16)
- Me.Label392.TabIndex = 1105
- Me.Label392.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- 'Label381
- '
- Me.Label381.AutoSize = True
- Me.Label381.Location = New System.Drawing.Point(-2, 756)
- Me.Label381.Name = "Label381"
- Me.Label381.Size = New System.Drawing.Size(687, 16)
- Me.Label381.TabIndex = 1082
- Me.Label381.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- 'Label386
- '
- Me.Label386.AutoSize = True
- Me.Label386.ForeColor = System.Drawing.Color.Green
- Me.Label386.Location = New System.Drawing.Point(457, 418)
- Me.Label386.Name = "Label386"
- Me.Label386.Size = New System.Drawing.Size(79, 16)
- Me.Label386.TabIndex = 1092
- Me.Label386.Text = "第五期工程款"
- '
- 'Label21
- '
- Me.Label21.AutoSize = True
- Me.Label21.ForeColor = System.Drawing.Color.Green
- Me.Label21.Location = New System.Drawing.Point(458, 442)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(79, 16)
- Me.Label21.TabIndex = 1138
- Me.Label21.Text = "工程款 總數"
- '
- 'TabControl2
- '
- Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
- Me.TabControl2.Controls.Add(Me.TabPage5)
- Me.TabControl2.Controls.Add(Me.TabPage6)
- Me.TabControl2.Controls.Add(Me.TabPage7)
- Me.TabControl2.Controls.Add(Me.TabPage8)
- Me.TabControl2.Controls.Add(Me.TabPage9)
- Me.TabControl2.Location = New System.Drawing.Point(-1, 469)
- Me.TabControl2.Name = "TabControl2"
- Me.TabControl2.SelectedIndex = 0
- Me.TabControl2.Size = New System.Drawing.Size(690, 187)
- Me.TabControl2.TabIndex = 1142
- '
- 'TabPage5
- '
- Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage5.Controls.Add(Me.第1期_dgv)
- Me.TabPage5.Location = New System.Drawing.Point(4, 28)
- Me.TabPage5.Name = "TabPage5"
- Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage5.Size = New System.Drawing.Size(682, 155)
- Me.TabPage5.TabIndex = 0
- Me.TabPage5.Text = "第一期"
- Me.TabPage5.UseVisualStyleBackColor = True
- '
- '第1期_dgv
- '
- DataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle24
- Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第1期_dgv.Name = "第1期_dgv"
- Me.第1期_dgv.RowHeadersWidth = 5
- Me.第1期_dgv.RowTemplate.Height = 24
- Me.第1期_dgv.Size = New System.Drawing.Size(675, 149)
- Me.第1期_dgv.TabIndex = 1038
- '
- 'TabPage6
- '
- Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage6.Controls.Add(Me.第2期_dgv)
- Me.TabPage6.Location = New System.Drawing.Point(4, 28)
- Me.TabPage6.Name = "TabPage6"
- Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage6.Size = New System.Drawing.Size(682, 155)
- Me.TabPage6.TabIndex = 1
- Me.TabPage6.Text = "第二期"
- Me.TabPage6.UseVisualStyleBackColor = True
- '
- '第2期_dgv
- '
- DataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle25
- Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第2期_dgv.Name = "第2期_dgv"
- Me.第2期_dgv.RowHeadersWidth = 5
- Me.第2期_dgv.RowTemplate.Height = 24
- Me.第2期_dgv.Size = New System.Drawing.Size(675, 149)
- Me.第2期_dgv.TabIndex = 1039
- '
- 'TabPage7
- '
- Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage7.Controls.Add(Me.第3期_dgv)
- Me.TabPage7.Location = New System.Drawing.Point(4, 28)
- Me.TabPage7.Name = "TabPage7"
- Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage7.Size = New System.Drawing.Size(682, 155)
- Me.TabPage7.TabIndex = 2
- Me.TabPage7.Text = "第三期"
- Me.TabPage7.UseVisualStyleBackColor = True
- '
- '第3期_dgv
- '
- DataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle26
- Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第3期_dgv.Name = "第3期_dgv"
- Me.第3期_dgv.RowHeadersWidth = 5
- Me.第3期_dgv.RowTemplate.Height = 24
- Me.第3期_dgv.Size = New System.Drawing.Size(675, 149)
- Me.第3期_dgv.TabIndex = 1040
- '
- 'TabPage8
- '
- Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage8.Controls.Add(Me.第4期_dgv)
- Me.TabPage8.Location = New System.Drawing.Point(4, 28)
- Me.TabPage8.Name = "TabPage8"
- Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage8.Size = New System.Drawing.Size(682, 155)
- Me.TabPage8.TabIndex = 3
- Me.TabPage8.Text = "第四期"
- Me.TabPage8.UseVisualStyleBackColor = True
- '
- '第4期_dgv
- '
- DataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle27
- Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第4期_dgv.Name = "第4期_dgv"
- Me.第4期_dgv.RowHeadersWidth = 5
- Me.第4期_dgv.RowTemplate.Height = 24
- Me.第4期_dgv.Size = New System.Drawing.Size(675, 149)
- Me.第4期_dgv.TabIndex = 1041
- '
- 'TabPage9
- '
- Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage9.Controls.Add(Me.第5期_dgv)
- Me.TabPage9.Location = New System.Drawing.Point(4, 28)
- Me.TabPage9.Name = "TabPage9"
- Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage9.Size = New System.Drawing.Size(682, 155)
- Me.TabPage9.TabIndex = 4
- Me.TabPage9.Text = "第五期"
- Me.TabPage9.UseVisualStyleBackColor = True
- '
- '第5期_dgv
- '
- DataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle28
- Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第5期_dgv.Name = "第5期_dgv"
- Me.第5期_dgv.RowHeadersWidth = 5
- Me.第5期_dgv.RowTemplate.Height = 24
- Me.第5期_dgv.Size = New System.Drawing.Size(675, 149)
- Me.第5期_dgv.TabIndex = 1042
- '
- 'Label388
- '
- Me.Label388.AutoSize = True
- Me.Label388.ForeColor = System.Drawing.Color.Green
- Me.Label388.Location = New System.Drawing.Point(228, 420)
- Me.Label388.Name = "Label388"
- Me.Label388.Size = New System.Drawing.Size(79, 16)
- Me.Label388.TabIndex = 1090
- Me.Label388.Text = "第三期工程款"
- '
- 'Label387
- '
- Me.Label387.AutoSize = True
- Me.Label387.ForeColor = System.Drawing.Color.Green
- Me.Label387.Location = New System.Drawing.Point(228, 443)
- Me.Label387.Name = "Label387"
- Me.Label387.Size = New System.Drawing.Size(79, 16)
- Me.Label387.TabIndex = 1091
- Me.Label387.Text = "第四期工程款"
- '
- 'Label390
- '
- Me.Label390.AutoSize = True
- Me.Label390.ForeColor = System.Drawing.Color.Green
- Me.Label390.Location = New System.Drawing.Point(-1, 420)
- Me.Label390.Name = "Label390"
- Me.Label390.Size = New System.Drawing.Size(79, 16)
- Me.Label390.TabIndex = 1088
- Me.Label390.Text = "第一期工程款"
- '
- 'Label389
- '
- Me.Label389.AutoSize = True
- Me.Label389.ForeColor = System.Drawing.Color.Green
- Me.Label389.Location = New System.Drawing.Point(-1, 444)
- Me.Label389.Name = "Label389"
- Me.Label389.Size = New System.Drawing.Size(79, 16)
- Me.Label389.TabIndex = 1089
- Me.Label389.Text = "第二期工程款"
- '
- 'Label411
- '
- Me.Label411.AutoSize = True
- Me.Label411.Location = New System.Drawing.Point(-2, 820)
- Me.Label411.Name = "Label411"
- Me.Label411.Size = New System.Drawing.Size(687, 16)
- Me.Label411.TabIndex = 1129
- Me.Label411.Text = "_________________________________________________________________________________" &
- "_______________________________________________________"
- '
- 'Label29
- '
- Me.Label29.AutoSize = True
- Me.Label29.Location = New System.Drawing.Point(676, 853)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(10, 16)
- Me.Label29.TabIndex = 1355
- Me.Label29.Text = "."
- '
- 'Label35
- '
- Me.Label35.AutoSize = True
- Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label35.Location = New System.Drawing.Point(38, 3)
- Me.Label35.Name = "Label35"
- Me.Label35.Size = New System.Drawing.Size(220, 16)
- Me.Label35.TabIndex = 1044
- Me.Label35.Text = "乙方 甲方 立約日期 序號 "
- Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label34
- '
- Me.Label34.AutoSize = True
- Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label34.Location = New System.Drawing.Point(257, 2)
- Me.Label34.Name = "Label34"
- Me.Label34.Size = New System.Drawing.Size(55, 16)
- Me.Label34.TabIndex = 1405
- Me.Label34.Text = "工程期數"
- Me.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '建立合約資料_tc
- '
- Me.建立合約資料_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.建立合約資料_tc.Controls.Add(Me.印尼盾_ch)
- Me.建立合約資料_tc.Controls.Add(Me.人民幣_ch)
- Me.建立合約資料_tc.Controls.Add(Me.美金_ch)
- Me.建立合約資料_tc.Controls.Add(Me.台幣_ch)
- Me.建立合約資料_tc.Controls.Add(Me.放行_bt)
- Me.建立合約資料_tc.Controls.Add(Me.ProgressBar1)
- Me.建立合約資料_tc.Controls.Add(Me.存檔_tb)
- Me.建立合約資料_tc.Controls.Add(Me.合約停止_ch)
- Me.建立合約資料_tc.Controls.Add(Me.列印成EXCEL_bt)
- Me.建立合約資料_tc.Controls.Add(Me.縮放2_bt)
- Me.建立合約資料_tc.Controls.Add(Me.合約_dgv)
- Me.建立合約資料_tc.Controls.Add(Me.錨點2)
- Me.建立合約資料_tc.Controls.Add(Me.縮放1_bt)
- Me.建立合約資料_tc.Controls.Add(Me.查詢_bt)
- Me.建立合約資料_tc.Controls.Add(Me.關鍵字搜尋_tb)
- Me.建立合約資料_tc.Controls.Add(Me.Label53)
- Me.建立合約資料_tc.Controls.Add(Me.Label7)
- Me.建立合約資料_tc.Controls.Add(Me.工材分離_ch)
- Me.建立合約資料_tc.Controls.Add(Me.空間3)
- Me.建立合約資料_tc.Location = New System.Drawing.Point(4, 28)
- Me.建立合約資料_tc.Name = "建立合約資料_tc"
- Me.建立合約資料_tc.Padding = New System.Windows.Forms.Padding(3)
- Me.建立合約資料_tc.Size = New System.Drawing.Size(1906, 1010)
- Me.建立合約資料_tc.TabIndex = 3
- Me.建立合約資料_tc.Text = "建立合約資料"
- Me.建立合約資料_tc.UseVisualStyleBackColor = True
- '
- '印尼盾_ch
- '
- Me.印尼盾_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.印尼盾_ch.AutoSize = True
- Me.印尼盾_ch.Location = New System.Drawing.Point(1581, 20)
- Me.印尼盾_ch.Name = "印尼盾_ch"
- Me.印尼盾_ch.Size = New System.Drawing.Size(62, 20)
- Me.印尼盾_ch.TabIndex = 1685
- Me.印尼盾_ch.Text = "印尼盾"
- Me.印尼盾_ch.UseVisualStyleBackColor = True
- '
- '人民幣_ch
- '
- Me.人民幣_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.人民幣_ch.AutoSize = True
- Me.人民幣_ch.Location = New System.Drawing.Point(1581, 1)
- Me.人民幣_ch.Name = "人民幣_ch"
- Me.人民幣_ch.Size = New System.Drawing.Size(62, 20)
- Me.人民幣_ch.TabIndex = 1684
- Me.人民幣_ch.Text = "人民幣"
- Me.人民幣_ch.UseVisualStyleBackColor = True
- '
- '美金_ch
- '
- Me.美金_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.美金_ch.AutoSize = True
- Me.美金_ch.Location = New System.Drawing.Point(1533, 1)
- Me.美金_ch.Name = "美金_ch"
- Me.美金_ch.Size = New System.Drawing.Size(50, 20)
- Me.美金_ch.TabIndex = 1683
- Me.美金_ch.Text = "美金"
- Me.美金_ch.UseVisualStyleBackColor = True
- '
- '台幣_ch
- '
- Me.台幣_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.台幣_ch.AutoSize = True
- Me.台幣_ch.Location = New System.Drawing.Point(1533, 20)
- Me.台幣_ch.Name = "台幣_ch"
- Me.台幣_ch.Size = New System.Drawing.Size(50, 20)
- Me.台幣_ch.TabIndex = 1682
- Me.台幣_ch.Text = "台幣"
- Me.台幣_ch.UseVisualStyleBackColor = True
- '
- '合約編號清單_bt
- '
- Me.合約編號清單_bt.BackColor = System.Drawing.SystemColors.Control
- Me.合約編號清單_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.合約編號清單_bt.Location = New System.Drawing.Point(552, 2)
- Me.合約編號清單_bt.Name = "合約編號清單_bt"
- Me.合約編號清單_bt.Size = New System.Drawing.Size(90, 26)
- Me.合約編號清單_bt.TabIndex = 1421
- Me.合約編號清單_bt.Text = "合約編號清單"
- Me.合約編號清單_bt.UseVisualStyleBackColor = False
- '
- '工程期1_ch
- '
- Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.工程期1_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.工程期1_ch.FormattingEnabled = True
- Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.工程期1_ch.Location = New System.Drawing.Point(475, 3)
- Me.工程期1_ch.Name = "工程期1_ch"
- Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
- Me.工程期1_ch.TabIndex = 1424
- '
- 'Label40
- '
- Me.Label40.AutoSize = True
- Me.Label40.BackColor = System.Drawing.SystemColors.Control
- Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label40.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label40.Location = New System.Drawing.Point(307, 7)
- Me.Label40.Name = "Label40"
- Me.Label40.Size = New System.Drawing.Size(31, 16)
- Me.Label40.TabIndex = 1423
- Me.Label40.Text = "甲方"
- Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號1_cb
- '
- Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.合約編號1_cb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.合約編號1_cb.FormattingEnabled = True
- Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.合約編號1_cb.Location = New System.Drawing.Point(339, 3)
- Me.合約編號1_cb.Name = "合約編號1_cb"
- Me.合約編號1_cb.Size = New System.Drawing.Size(74, 24)
- Me.合約編號1_cb.TabIndex = 1422
- '
- 'Label2
- '
- Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label2.AutoSize = True
- Me.Label2.BackColor = System.Drawing.SystemColors.Control
- Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label2.Location = New System.Drawing.Point(1726, 6)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(55, 16)
- Me.Label2.TabIndex = 1420
- Me.Label2.Text = "合約編號"
- Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號_tb
- '
- Me.合約編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.合約編號_tb.Enabled = False
- Me.合約編號_tb.Location = New System.Drawing.Point(1782, 2)
- Me.合約編號_tb.Name = "合約編號_tb"
- Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
- Me.合約編號_tb.TabIndex = 1419
- '
- 'TabControl1
- '
- Me.TabControl1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TabControl1.Appearance = System.Windows.Forms.TabAppearance.Buttons
- Me.TabControl1.Controls.Add(Me.建立合約資料_tc)
- Me.TabControl1.Controls.Add(Me.工程合約報價明細_tc)
- Me.TabControl1.Controls.Add(Me.工程合約試算表_tc)
- Me.TabControl1.Location = New System.Drawing.Point(0, 1)
- Me.TabControl1.Multiline = True
- Me.TabControl1.Name = "TabControl1"
- Me.TabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No
- Me.TabControl1.SelectedIndex = 0
- Me.TabControl1.Size = New System.Drawing.Size(1914, 1042)
- Me.TabControl1.TabIndex = 1418
- '
- 'Label41
- '
- Me.Label41.AutoSize = True
- Me.Label41.BackColor = System.Drawing.SystemColors.Control
- Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label41.Location = New System.Drawing.Point(418, 7)
- Me.Label41.Name = "Label41"
- Me.Label41.Size = New System.Drawing.Size(55, 16)
- Me.Label41.TabIndex = 1425
- Me.Label41.Text = "工程期數"
- Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約報價單審核
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1914, 1041)
- Me.Controls.Add(Me.合約編號清單_bt)
- Me.Controls.Add(Me.工程期1_ch)
- Me.Controls.Add(Me.Label40)
- Me.Controls.Add(Me.合約編號1_cb)
- Me.Controls.Add(Me.Label2)
- Me.Controls.Add(Me.合約編號_tb)
- Me.Controls.Add(Me.TabControl1)
- Me.Controls.Add(Me.Label41)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(4)
- Me.Name = "合約報價單審核"
- Me.Text = "合約報價單審核"
- CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel1.ResumeLayout(False)
- Me.Panel1.PerformLayout()
- CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.工程合約報價明細_tc.ResumeLayout(False)
- Me.工程合約報價明細_tc.PerformLayout()
- CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel5.ResumeLayout(False)
- Me.Panel5.PerformLayout()
- CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
- Me.工程合約試算表_tc.ResumeLayout(False)
- Me.工程合約試算表_tc.PerformLayout()
- CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.空間3.ResumeLayout(False)
- Me.空間3.PerformLayout()
- Me.TabControl3.ResumeLayout(False)
- Me.TabPage1.ResumeLayout(False)
- Me.TabPage1.PerformLayout()
- CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage2.ResumeLayout(False)
- Me.TabPage2.PerformLayout()
- Me.Panel2.ResumeLayout(False)
- Me.Panel2.PerformLayout()
- CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabControl2.ResumeLayout(False)
- Me.TabPage5.ResumeLayout(False)
- CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage6.ResumeLayout(False)
- CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage7.ResumeLayout(False)
- CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage8.ResumeLayout(False)
- CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage9.ResumeLayout(False)
- CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.建立合約資料_tc.ResumeLayout(False)
- Me.建立合約資料_tc.PerformLayout()
- Me.TabControl1.ResumeLayout(False)
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents Label20 As Label
- Friend WithEvents 合約編號3_tb As TextBox
- Friend WithEvents 合約編號2_tb As TextBox
- Friend WithEvents 明細選項_bt As TextBox
- Friend WithEvents 項目流水_tb As TextBox
- Friend WithEvents 選擇項3_tb As TextBox
- Friend WithEvents 連動編號_tb As TextBox
- Friend WithEvents PictureBox2 As PictureBox
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents 合約改版_bt As Button
- Friend WithEvents 工程期_ch As ComboBox
- Friend WithEvents Label19 As Label
- Friend WithEvents Label15 As Label
- Friend WithEvents 選擇項2_tb As TextBox
- Friend WithEvents DGV位置2 As NumericUpDown
- Friend WithEvents DGV位置1 As NumericUpDown
- Friend WithEvents 明細表流水_tb As TextBox
- Friend WithEvents 總表流水_tb As TextBox
- Friend WithEvents Y_2_tb As TextBox
- Friend WithEvents Y_3_tb As TextBox
- Friend WithEvents 係數合約號_tb As TextBox
- Friend WithEvents Label42 As Label
- Friend WithEvents Label379 As Label
- Friend WithEvents 最末頁_cb As ComboBox
- Friend WithEvents NUD1 As NumericUpDown
- Friend WithEvents Label43 As Label
- Friend WithEvents 合約編號1_tb As TextBox
- Friend WithEvents 合約編號_cb As ComboBox
- Friend WithEvents Label397 As Label
- Friend WithEvents 金額6_und As NumericUpDown
- Friend WithEvents Label5 As Label
- Friend WithEvents 工程款6_nud As NumericUpDown
- Friend WithEvents 合約種類_tb As TextBox
- Friend WithEvents 語言_dgv As DataGridView
- Friend WithEvents NUD2 As NumericUpDown
- Friend WithEvents 係數流水號_tb As TextBox
- Friend WithEvents 群組編碼_cb As ComboBox
- Friend WithEvents X_2_tb As TextBox
- Friend WithEvents X_3_tb As TextBox
- Friend WithEvents 存檔比較_dgv As DataGridView
- Friend WithEvents 範例文本_dgv As DataGridView
- Friend WithEvents 群組碼_tb As TextBox
- Friend WithEvents 表號_tb As TextBox
- Friend WithEvents 表頭_tb As TextBox
- Friend WithEvents 報價總表_dgv As DataGridView
- Friend WithEvents Panel1 As Panel
- Friend WithEvents 試算控制表_dgv As DataGridView
- Friend WithEvents 最高扣款_bt As TextBox
- Friend WithEvents 工程合約報價明細_tc As TabPage
- Friend WithEvents 詳細資料2_ch As CheckBox
- Friend WithEvents 報價係數_dgv As DataGridView
- Friend WithEvents 報價單立約日期_dtp As DateTimePicker
- Friend WithEvents Label27 As Label
- Friend WithEvents Label26 As Label
- Friend WithEvents 報價單合約編號_tb As TextBox
- Friend WithEvents 報價工程名稱_英_tb As TextBox
- Friend WithEvents 報價工程名稱_中_tb As TextBox
- Friend WithEvents Label9 As Label
- Friend WithEvents Label8 As Label
- Friend WithEvents 報價單客戶名稱_cb As ComboBox
- Friend WithEvents Label6 As Label
- Friend WithEvents 報價明細表_dgv As DataGridView
- Friend WithEvents Panel5 As Panel
- Friend WithEvents Label22 As Label
- Friend WithEvents Label33 As Label
- Friend WithEvents 工資_ch As CheckBox
- Friend WithEvents 料號_tb As TextBox
- Friend WithEvents 單位2_tb As TextBox
- Friend WithEvents Label32 As Label
- Friend WithEvents 申請數_lb As Label
- Friend WithEvents ITEM3_cb As ComboBox
- Friend WithEvents 申請數_nud As NumericUpDown
- Friend WithEvents 利潤表_ch As CheckBox
- Friend WithEvents 材料_ch As CheckBox
- Friend WithEvents 物料圖1_pb As PictureBox
- Friend WithEvents Label372 As Label
- Friend WithEvents Label394 As Label
- Friend WithEvents 客戶名稱_tb As ComboBox
- Friend WithEvents Label396 As Label
- Friend WithEvents Label373 As Label
- Friend WithEvents NUD3 As NumericUpDown
- Friend WithEvents Label374 As Label
- Friend WithEvents 合約種類_cb As ComboBox
- Friend WithEvents Label375 As Label
- Friend WithEvents 逾期_bt As TextBox
- Friend WithEvents 存檔_bt As Button
- Friend WithEvents 使用計算機_ch As CheckBox
- Friend WithEvents 直接輸入_ch As CheckBox
- Friend WithEvents 材料加入1_bt As Button
- Friend WithEvents 工程名稱_中_tb As TextBox
- Friend WithEvents Label395 As Label
- Friend WithEvents 客戶地址_tb As TextBox
- Friend WithEvents Label393 As Label
- Friend WithEvents 金額5_und As NumericUpDown
- Friend WithEvents 係數_nud As NumericUpDown
- Friend WithEvents Label380 As Label
- Friend WithEvents 刪除1_bt As Button
- Friend WithEvents 工程地點_tb As TextBox
- Friend WithEvents Label406 As Label
- Friend WithEvents 金額4_und As NumericUpDown
- Friend WithEvents 逾期_英_bt As TextBox
- Friend WithEvents Label376 As Label
- Friend WithEvents 工期_nud As NumericUpDown
- Friend WithEvents 金額3_und As NumericUpDown
- Friend WithEvents 最高扣款_英_bt As TextBox
- Friend WithEvents Label414 As Label
- Friend WithEvents Label391 As Label
- Friend WithEvents 金額2_und As NumericUpDown
- Friend WithEvents Label403 As Label
- Friend WithEvents 工程合約試算表_tc As TabPage
- Friend WithEvents 詳細資料3_ch As CheckBox
- Friend WithEvents Label4 As Label
- Friend WithEvents 修改樓層_迴圈_bt As Button
- Friend WithEvents 新增物件_bt As Button
- Friend WithEvents 料號_lb As Label
- Friend WithEvents 樓層_迴路_cb As ComboBox
- Friend WithEvents 料號1_tb As TextBox
- Friend WithEvents Label3 As Label
- Friend WithEvents 修改試算表名稱_bt As Button
- Friend WithEvents 新增試算表_bt As Button
- Friend WithEvents Label1 As Label
- Friend WithEvents 試算表_cb As ComboBox
- Friend WithEvents 試算表_dgv As DataGridView
- Friend WithEvents 物料圖_pb As PictureBox
- Friend WithEvents 選擇公司_cb As ComboBox
- Friend WithEvents 立約日期_dtp As DateTimePicker
- Friend WithEvents 負責人_B_cb As ComboBox
- Friend WithEvents 金額1_und As NumericUpDown
- Friend WithEvents Label407 As Label
- Friend WithEvents Label410 As Label
- Friend WithEvents 工程款5_nud As NumericUpDown
- Friend WithEvents Label408 As Label
- Friend WithEvents Label377 As Label
- Friend WithEvents Label405 As Label
- Friend WithEvents 工程款4_nud As NumericUpDown
- Friend WithEvents 減價_bt As TextBox
- Friend WithEvents 頁數_bt As TextBox
- Friend WithEvents Label409 As Label
- Friend WithEvents Label399 As Label
- Friend WithEvents 負責人_A_cb As ComboBox
- Friend WithEvents 工程名稱_英_tb As TextBox
- Friend WithEvents 工程款3_nud As NumericUpDown
- Friend WithEvents Label404 As Label
- Friend WithEvents Label413 As Label
- Friend WithEvents Label412 As Label
- Friend WithEvents Label400 As Label
- Friend WithEvents 我司地址_tb As TextBox
- Friend WithEvents 工程款1_nud As NumericUpDown
- Friend WithEvents 放行_bt As Button
- Friend WithEvents ProgressBar1 As ProgressBar
- Friend WithEvents 存檔_tb As Button
- Friend WithEvents 合約停止_ch As CheckBox
- Friend WithEvents 列印成EXCEL_bt As Button
- Friend WithEvents 縮放2_bt As Button
- Friend WithEvents 合約_dgv As DataGridView
- Friend WithEvents 錨點2 As TextBox
- Friend WithEvents 縮放1_bt As Button
- Friend WithEvents 查詢_bt As Button
- Friend WithEvents 關鍵字搜尋_tb As TextBox
- Friend WithEvents Label53 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents 工材分離_ch As CheckBox
- Friend WithEvents 空間3 As Panel
- Friend WithEvents 報價說明_tb As TextBox
- Friend WithEvents Panel2 As Panel
- Friend WithEvents Label378 As Label
- Friend WithEvents 廠區_中文_tb As TextBox
- Friend WithEvents 工程款2_nud As NumericUpDown
- Friend WithEvents Label28 As Label
- Friend WithEvents Label382 As Label
- Friend WithEvents 稅額顯示_lb As Label
- Friend WithEvents CH2 As CheckBox
- Friend WithEvents CH1 As CheckBox
- Friend WithEvents Label402 As Label
- Friend WithEvents Label392 As Label
- Friend WithEvents Label381 As Label
- Friend WithEvents Label386 As Label
- Friend WithEvents Label21 As Label
- Friend WithEvents TabControl2 As TabControl
- Friend WithEvents TabPage5 As TabPage
- Friend WithEvents 第1期_dgv As DataGridView
- Friend WithEvents TabPage6 As TabPage
- Friend WithEvents 第2期_dgv As DataGridView
- Friend WithEvents TabPage7 As TabPage
- Friend WithEvents 第3期_dgv As DataGridView
- Friend WithEvents TabPage8 As TabPage
- Friend WithEvents 第4期_dgv As DataGridView
- Friend WithEvents TabPage9 As TabPage
- Friend WithEvents 第5期_dgv As DataGridView
- Friend WithEvents Label388 As Label
- Friend WithEvents Label387 As Label
- Friend WithEvents Label390 As Label
- Friend WithEvents Label389 As Label
- Friend WithEvents Label411 As Label
- Friend WithEvents Label29 As Label
- Friend WithEvents Label35 As Label
- Friend WithEvents Label34 As Label
- Friend WithEvents 建立合約資料_tc As TabPage
- Friend WithEvents 合約編號清單_bt As Button
- Friend WithEvents 工程期1_ch As ComboBox
- Friend WithEvents Label40 As Label
- Friend WithEvents 合約編號1_cb As ComboBox
- Friend WithEvents Label2 As Label
- Friend WithEvents 合約編號_tb As TextBox
- Friend WithEvents TabControl1 As TabControl
- Friend WithEvents Label41 As Label
- Friend WithEvents 印尼盾_ch As CheckBox
- Friend WithEvents 人民幣_ch As CheckBox
- Friend WithEvents 美金_ch As CheckBox
- Friend WithEvents 台幣_ch As CheckBox
- Friend WithEvents 歸零數_tb As TextBox
- Friend WithEvents 利潤比4_tb As TextBox
- Friend WithEvents Label71 As Label
- Friend WithEvents Label70 As Label
- Friend WithEvents Label69 As Label
- Friend WithEvents Label68 As Label
- Friend WithEvents Label67 As Label
- Friend WithEvents Label64 As Label
- Friend WithEvents Label63 As Label
- Friend WithEvents 利潤比3_tb As TextBox
- Friend WithEvents Label60 As Label
- Friend WithEvents 總報價_tb As TextBox
- Friend WithEvents 總成本_tb As TextBox
- Friend WithEvents Label58 As Label
- Friend WithEvents Label59 As Label
- Friend WithEvents 利潤比2_tb As TextBox
- Friend WithEvents Label57 As Label
- Friend WithEvents 利潤比1_tb As TextBox
- Friend WithEvents 預估利潤_tb As TextBox
- Friend WithEvents 預估材料總報價_tb As TextBox
- Friend WithEvents 預估工資總報價_tb As TextBox
- Friend WithEvents 預估材料總成本_tb As TextBox
- Friend WithEvents Label54 As Label
- Friend WithEvents 預估工資總成本_tb As TextBox
- Friend WithEvents Label55 As Label
- Friend WithEvents Label65 As Label
- Friend WithEvents Label62 As Label
- Friend WithEvents Label66 As Label
- Friend WithEvents Label61 As Label
- Friend WithEvents TabControl3 As TabControl
- Friend WithEvents TabPage1 As TabPage
- Friend WithEvents 折價計算_bt As Button
- Friend WithEvents Label83 As Label
- Friend WithEvents 甲方_cb As ComboBox
- Friend WithEvents 未折價前_tb As TextBox
- Friend WithEvents Label82 As Label
- Friend WithEvents 歸零位數_nud As NumericUpDown
- Friend WithEvents Label81 As Label
- Friend WithEvents 稅後歸零_ch As CheckBox
- Friend WithEvents 稅前歸零_ch As CheckBox
- Friend WithEvents Label80 As Label
- Friend WithEvents 折讓比例_nud As NumericUpDown
- Friend WithEvents Label79 As Label
- Friend WithEvents 報價小計_tb As TextBox
- Friend WithEvents Label39 As Label
- Friend WithEvents TabPage2 As TabPage
- End Class
|