説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

合約報價單.Designer.vb 356KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class 合約報價單
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(合約報價單))
  23. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle10 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  38. Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  39. Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  40. Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  41. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  42. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  43. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  44. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  45. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  46. Dim DataGridViewCellStyle11 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  47. Dim DataGridViewCellStyle12 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  48. Dim DataGridViewCellStyle13 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  49. Dim DataGridViewCellStyle14 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  50. Me.視窗4_pl = New System.Windows.Forms.Panel()
  51. Me.Panel6 = New System.Windows.Forms.Panel()
  52. Me.轉移_ch = New System.Windows.Forms.CheckBox()
  53. Me.改版_ch = New System.Windows.Forms.CheckBox()
  54. Me.複製轉移_bt = New System.Windows.Forms.Button()
  55. Me.Label48 = New System.Windows.Forms.Label()
  56. Me.合約編號3_n_tb = New System.Windows.Forms.TextBox()
  57. Me.合約編號2_n_tb = New System.Windows.Forms.TextBox()
  58. Me.合約編號1_n_tb = New System.Windows.Forms.TextBox()
  59. Me.合約編號_n_cb = New System.Windows.Forms.ComboBox()
  60. Me.Label46 = New System.Windows.Forms.Label()
  61. Me.合約編號3_o_tb = New System.Windows.Forms.TextBox()
  62. Me.合約編號2_o_tb = New System.Windows.Forms.TextBox()
  63. Me.合約編號1_o_tb = New System.Windows.Forms.TextBox()
  64. Me.合約編號_o_cb = New System.Windows.Forms.ComboBox()
  65. Me.Label47 = New System.Windows.Forms.Label()
  66. Me.新建_ch = New System.Windows.Forms.CheckBox()
  67. Me.Label72 = New System.Windows.Forms.Label()
  68. Me.Label56 = New System.Windows.Forms.Label()
  69. Me.CanceL4_bt = New System.Windows.Forms.Button()
  70. Me.錨點1 = New System.Windows.Forms.TextBox()
  71. Me.空間2 = New System.Windows.Forms.Panel()
  72. Me.物料_ch = New System.Windows.Forms.CheckBox()
  73. Me.Label41 = New System.Windows.Forms.Label()
  74. Me.合約編號清單_bt = New System.Windows.Forms.Button()
  75. Me.工程期1_ch = New System.Windows.Forms.ComboBox()
  76. Me.Label40 = New System.Windows.Forms.Label()
  77. Me.縮放_bt = New System.Windows.Forms.Button()
  78. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  79. Me.Label2 = New System.Windows.Forms.Label()
  80. Me.合約編號_tb = New System.Windows.Forms.TextBox()
  81. Me.TabControl1 = New System.Windows.Forms.TabControl()
  82. Me.建立合約資料_tc = New System.Windows.Forms.TabPage()
  83. Me.印尼盾_ch = New System.Windows.Forms.CheckBox()
  84. Me.人民幣_ch = New System.Windows.Forms.CheckBox()
  85. Me.美金_ch = New System.Windows.Forms.CheckBox()
  86. Me.台幣_ch = New System.Windows.Forms.CheckBox()
  87. Me.發送_bt = New System.Windows.Forms.Button()
  88. Me.查閱文件_bt = New System.Windows.Forms.Button()
  89. Me.列印成EXCEL_bt = New System.Windows.Forms.Button()
  90. Me.縮放2_bt = New System.Windows.Forms.Button()
  91. Me.合約_dgv = New System.Windows.Forms.DataGridView()
  92. Me.總表範例_bt = New System.Windows.Forms.Button()
  93. Me.合約改版_bt = New System.Windows.Forms.Button()
  94. Me.新增資料1_bt = New System.Windows.Forms.Button()
  95. Me.排序1_bt = New System.Windows.Forms.Button()
  96. Me.總表選擇刪除_bt = New System.Windows.Forms.Button()
  97. Me.總表編輯_bt = New System.Windows.Forms.Button()
  98. Me.報價總表存檔_bt = New System.Windows.Forms.Button()
  99. Me.錨點2 = New System.Windows.Forms.TextBox()
  100. Me.縮放1_bt = New System.Windows.Forms.Button()
  101. Me.查詢_bt = New System.Windows.Forms.Button()
  102. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  103. Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
  104. Me.刪除合約_bt = New System.Windows.Forms.Button()
  105. Me.存檔_tb = New System.Windows.Forms.Button()
  106. Me.合約停止_ch = New System.Windows.Forms.CheckBox()
  107. Me.Label53 = New System.Windows.Forms.Label()
  108. Me.Label7 = New System.Windows.Forms.Label()
  109. Me.工材分離_ch = New System.Windows.Forms.CheckBox()
  110. Me.視窗2_pl = New System.Windows.Forms.Panel()
  111. Me.Panel3 = New System.Windows.Forms.Panel()
  112. Me.Label44 = New System.Windows.Forms.Label()
  113. Me.報價明細表1_dgv = New System.Windows.Forms.DataGridView()
  114. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  115. Me.等於_bt = New System.Windows.Forms.Button()
  116. Me.NUD_03 = New System.Windows.Forms.NumericUpDown()
  117. Me.清除_bt = New System.Windows.Forms.Button()
  118. Me.NUD_01 = New System.Windows.Forms.NumericUpDown()
  119. Me.小數點_bt = New System.Windows.Forms.Button()
  120. Me.倒退_bt = New System.Windows.Forms.Button()
  121. Me.計算1_ch = New System.Windows.Forms.ComboBox()
  122. Me.b0_bt = New System.Windows.Forms.Button()
  123. Me.b9_bt = New System.Windows.Forms.Button()
  124. Me.NUD_02 = New System.Windows.Forms.NumericUpDown()
  125. Me.b8_bt = New System.Windows.Forms.Button()
  126. Me.b7_bt = New System.Windows.Forms.Button()
  127. Me.b6_bt = New System.Windows.Forms.Button()
  128. Me.b5_bt = New System.Windows.Forms.Button()
  129. Me.b4_bt = New System.Windows.Forms.Button()
  130. Me.b3_bt = New System.Windows.Forms.Button()
  131. Me.b2_bt = New System.Windows.Forms.Button()
  132. Me.b1_bt = New System.Windows.Forms.Button()
  133. Me.除_bt = New System.Windows.Forms.Button()
  134. Me.乘_bt = New System.Windows.Forms.Button()
  135. Me.減_bt = New System.Windows.Forms.Button()
  136. Me.加_bt = New System.Windows.Forms.Button()
  137. Me.選擇_lb = New System.Windows.Forms.Label()
  138. Me.鍵盤鎖定1_ch = New System.Windows.Forms.CheckBox()
  139. Me.座標_lb = New System.Windows.Forms.Label()
  140. Me.結果_tb = New System.Windows.Forms.TextBox()
  141. Me.文字資料輸入1_bt = New System.Windows.Forms.Button()
  142. Me.計算式_tb = New System.Windows.Forms.TextBox()
  143. Me.Label24 = New System.Windows.Forms.Label()
  144. Me.數值1_tb = New System.Windows.Forms.TextBox()
  145. Me.數值2_tb = New System.Windows.Forms.TextBox()
  146. Me.選擇項_tb = New System.Windows.Forms.TextBox()
  147. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  148. Me.數量_tb = New System.Windows.Forms.TextBox()
  149. Me.Label45 = New System.Windows.Forms.Label()
  150. Me.Label31 = New System.Windows.Forms.Label()
  151. Me.合計項_cb = New System.Windows.Forms.ComboBox()
  152. Me.Label30 = New System.Windows.Forms.Label()
  153. Me.單位_tb = New System.Windows.Forms.TextBox()
  154. Me.備註_tb = New System.Windows.Forms.TextBox()
  155. Me.內容_tb = New System.Windows.Forms.TextBox()
  156. Me.數字1_ch = New System.Windows.Forms.CheckBox()
  157. Me.中文小寫1_ch = New System.Windows.Forms.CheckBox()
  158. Me.中文大寫1_ch = New System.Windows.Forms.CheckBox()
  159. Me.ITEM1_cb = New System.Windows.Forms.ComboBox()
  160. Me.Label25 = New System.Windows.Forms.Label()
  161. Me.Label23 = New System.Windows.Forms.Label()
  162. Me.Label16 = New System.Windows.Forms.Label()
  163. Me.CanceL2_bt = New System.Windows.Forms.Button()
  164. Me.空間3 = New System.Windows.Forms.Panel()
  165. Me.歸零數_tb = New System.Windows.Forms.TextBox()
  166. Me.Label76 = New System.Windows.Forms.Label()
  167. Me.利潤比4_tb = New System.Windows.Forms.TextBox()
  168. Me.Label71 = New System.Windows.Forms.Label()
  169. Me.Label70 = New System.Windows.Forms.Label()
  170. Me.Label69 = New System.Windows.Forms.Label()
  171. Me.Label68 = New System.Windows.Forms.Label()
  172. Me.Label67 = New System.Windows.Forms.Label()
  173. Me.Label64 = New System.Windows.Forms.Label()
  174. Me.Label63 = New System.Windows.Forms.Label()
  175. Me.利潤比3_tb = New System.Windows.Forms.TextBox()
  176. Me.Label60 = New System.Windows.Forms.Label()
  177. Me.總報價_tb = New System.Windows.Forms.TextBox()
  178. Me.總成本_tb = New System.Windows.Forms.TextBox()
  179. Me.Label58 = New System.Windows.Forms.Label()
  180. Me.Label59 = New System.Windows.Forms.Label()
  181. Me.利潤比2_tb = New System.Windows.Forms.TextBox()
  182. Me.Label57 = New System.Windows.Forms.Label()
  183. Me.利潤比1_tb = New System.Windows.Forms.TextBox()
  184. Me.預估利潤_tb = New System.Windows.Forms.TextBox()
  185. Me.預估材料總報價_tb = New System.Windows.Forms.TextBox()
  186. Me.Panel2 = New System.Windows.Forms.Panel()
  187. Me.Label42 = New System.Windows.Forms.Label()
  188. Me.Label379 = New System.Windows.Forms.Label()
  189. Me.工程期_ch = New System.Windows.Forms.ComboBox()
  190. Me.Label19 = New System.Windows.Forms.Label()
  191. Me.Label15 = New System.Windows.Forms.Label()
  192. Me.最末頁_cb = New System.Windows.Forms.ComboBox()
  193. Me.Label20 = New System.Windows.Forms.Label()
  194. Me.合約編號3_tb = New System.Windows.Forms.TextBox()
  195. Me.合約編號2_tb = New System.Windows.Forms.TextBox()
  196. Me.明細選項_bt = New System.Windows.Forms.TextBox()
  197. Me.合約編號1_tb = New System.Windows.Forms.TextBox()
  198. Me.刪除資料_bt = New System.Windows.Forms.Button()
  199. Me.合約編號_cb = New System.Windows.Forms.ComboBox()
  200. Me.新增資料_bt = New System.Windows.Forms.Button()
  201. Me.自動讀取_bt = New System.Windows.Forms.Button()
  202. Me.Label397 = New System.Windows.Forms.Label()
  203. Me.手動輸入_bt = New System.Windows.Forms.Button()
  204. Me.金額6_und = New System.Windows.Forms.NumericUpDown()
  205. Me.Label5 = New System.Windows.Forms.Label()
  206. Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
  207. Me.最高扣款_bt = New System.Windows.Forms.TextBox()
  208. Me.合約種類_tb = New System.Windows.Forms.TextBox()
  209. Me.NUD2 = New System.Windows.Forms.NumericUpDown()
  210. Me.NUD1 = New System.Windows.Forms.NumericUpDown()
  211. Me.Label372 = New System.Windows.Forms.Label()
  212. Me.Label394 = New System.Windows.Forms.Label()
  213. Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
  214. Me.Label396 = New System.Windows.Forms.Label()
  215. Me.Label373 = New System.Windows.Forms.Label()
  216. Me.NUD3 = New System.Windows.Forms.NumericUpDown()
  217. Me.Label374 = New System.Windows.Forms.Label()
  218. Me.合約種類_cb = New System.Windows.Forms.ComboBox()
  219. Me.Label375 = New System.Windows.Forms.Label()
  220. Me.逾期_bt = New System.Windows.Forms.TextBox()
  221. Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
  222. Me.Label395 = New System.Windows.Forms.Label()
  223. Me.客戶地址_tb = New System.Windows.Forms.TextBox()
  224. Me.Label393 = New System.Windows.Forms.Label()
  225. Me.金額5_und = New System.Windows.Forms.NumericUpDown()
  226. Me.Label380 = New System.Windows.Forms.Label()
  227. Me.工程地點_tb = New System.Windows.Forms.TextBox()
  228. Me.Label406 = New System.Windows.Forms.Label()
  229. Me.金額4_und = New System.Windows.Forms.NumericUpDown()
  230. Me.逾期_英_bt = New System.Windows.Forms.TextBox()
  231. Me.Label376 = New System.Windows.Forms.Label()
  232. Me.工期_nud = New System.Windows.Forms.NumericUpDown()
  233. Me.金額3_und = New System.Windows.Forms.NumericUpDown()
  234. Me.最高扣款_英_bt = New System.Windows.Forms.TextBox()
  235. Me.Label414 = New System.Windows.Forms.Label()
  236. Me.Label391 = New System.Windows.Forms.Label()
  237. Me.金額2_und = New System.Windows.Forms.NumericUpDown()
  238. Me.Label403 = New System.Windows.Forms.Label()
  239. Me.選擇公司_cb = New System.Windows.Forms.ComboBox()
  240. Me.負責人_B_cb = New System.Windows.Forms.ComboBox()
  241. Me.金額1_und = New System.Windows.Forms.NumericUpDown()
  242. Me.Label407 = New System.Windows.Forms.Label()
  243. Me.立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  244. Me.Label410 = New System.Windows.Forms.Label()
  245. Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
  246. Me.Label408 = New System.Windows.Forms.Label()
  247. Me.Label377 = New System.Windows.Forms.Label()
  248. Me.Label405 = New System.Windows.Forms.Label()
  249. Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
  250. Me.減價_bt = New System.Windows.Forms.TextBox()
  251. Me.頁數_bt = New System.Windows.Forms.TextBox()
  252. Me.Label409 = New System.Windows.Forms.Label()
  253. Me.Label399 = New System.Windows.Forms.Label()
  254. Me.負責人_A_cb = New System.Windows.Forms.ComboBox()
  255. Me.我司地址_tb = New System.Windows.Forms.TextBox()
  256. Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
  257. Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
  258. Me.Label404 = New System.Windows.Forms.Label()
  259. Me.Label413 = New System.Windows.Forms.Label()
  260. Me.Label412 = New System.Windows.Forms.Label()
  261. Me.Label400 = New System.Windows.Forms.Label()
  262. Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
  263. Me.Label378 = New System.Windows.Forms.Label()
  264. Me.廠區_中文_tb = New System.Windows.Forms.TextBox()
  265. Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
  266. Me.Label28 = New System.Windows.Forms.Label()
  267. Me.Label382 = New System.Windows.Forms.Label()
  268. Me.稅額顯示_lb = New System.Windows.Forms.Label()
  269. Me.CH2 = New System.Windows.Forms.CheckBox()
  270. Me.CH1 = New System.Windows.Forms.CheckBox()
  271. Me.Label402 = New System.Windows.Forms.Label()
  272. Me.Label392 = New System.Windows.Forms.Label()
  273. Me.Label381 = New System.Windows.Forms.Label()
  274. Me.Label386 = New System.Windows.Forms.Label()
  275. Me.Label21 = New System.Windows.Forms.Label()
  276. Me.TabControl2 = New System.Windows.Forms.TabControl()
  277. Me.TabPage5 = New System.Windows.Forms.TabPage()
  278. Me.第1期_dgv = New System.Windows.Forms.DataGridView()
  279. Me.TabPage6 = New System.Windows.Forms.TabPage()
  280. Me.第2期_dgv = New System.Windows.Forms.DataGridView()
  281. Me.TabPage7 = New System.Windows.Forms.TabPage()
  282. Me.第3期_dgv = New System.Windows.Forms.DataGridView()
  283. Me.TabPage8 = New System.Windows.Forms.TabPage()
  284. Me.第4期_dgv = New System.Windows.Forms.DataGridView()
  285. Me.TabPage9 = New System.Windows.Forms.TabPage()
  286. Me.第5期_dgv = New System.Windows.Forms.DataGridView()
  287. Me.Label388 = New System.Windows.Forms.Label()
  288. Me.Label387 = New System.Windows.Forms.Label()
  289. Me.Label390 = New System.Windows.Forms.Label()
  290. Me.Label389 = New System.Windows.Forms.Label()
  291. Me.Label411 = New System.Windows.Forms.Label()
  292. Me.Label29 = New System.Windows.Forms.Label()
  293. Me.Label35 = New System.Windows.Forms.Label()
  294. Me.Label34 = New System.Windows.Forms.Label()
  295. Me.預估工資總報價_tb = New System.Windows.Forms.TextBox()
  296. Me.預估材料總成本_tb = New System.Windows.Forms.TextBox()
  297. Me.Label54 = New System.Windows.Forms.Label()
  298. Me.預估工資總成本_tb = New System.Windows.Forms.TextBox()
  299. Me.Label55 = New System.Windows.Forms.Label()
  300. Me.Label65 = New System.Windows.Forms.Label()
  301. Me.Label62 = New System.Windows.Forms.Label()
  302. Me.Label66 = New System.Windows.Forms.Label()
  303. Me.Label61 = New System.Windows.Forms.Label()
  304. Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
  305. Me.彙總存檔_bt = New System.Windows.Forms.Button()
  306. Me.TabControl3 = New System.Windows.Forms.TabControl()
  307. Me.TabPage1 = New System.Windows.Forms.TabPage()
  308. Me.折價計算_bt = New System.Windows.Forms.Button()
  309. Me.Label83 = New System.Windows.Forms.Label()
  310. Me.甲方_cb = New System.Windows.Forms.ComboBox()
  311. Me.未折價前_tb = New System.Windows.Forms.TextBox()
  312. Me.Label82 = New System.Windows.Forms.Label()
  313. Me.歸零位數_nud = New System.Windows.Forms.NumericUpDown()
  314. Me.Label81 = New System.Windows.Forms.Label()
  315. Me.稅後歸零_ch = New System.Windows.Forms.CheckBox()
  316. Me.稅前歸零_ch = New System.Windows.Forms.CheckBox()
  317. Me.Label80 = New System.Windows.Forms.Label()
  318. Me.折讓比例_nud = New System.Windows.Forms.NumericUpDown()
  319. Me.Label79 = New System.Windows.Forms.Label()
  320. Me.報價小計_tb = New System.Windows.Forms.TextBox()
  321. Me.Label39 = New System.Windows.Forms.Label()
  322. Me.TabPage2 = New System.Windows.Forms.TabPage()
  323. Me.報價說明_tb = New System.Windows.Forms.TextBox()
  324. Me.工程合約報價明細_tc = New System.Windows.Forms.TabPage()
  325. Me.詳細資料2_ch = New System.Windows.Forms.CheckBox()
  326. Me.啟用批量選擇_ch = New System.Windows.Forms.CheckBox()
  327. Me.視窗3_pl = New System.Windows.Forms.Panel()
  328. Me.Panel4 = New System.Windows.Forms.Panel()
  329. Me.報價係數1_dgv = New System.Windows.Forms.DataGridView()
  330. Me.座標1_lb = New System.Windows.Forms.Label()
  331. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  332. Me.鍵盤鎖定2_ch = New System.Windows.Forms.CheckBox()
  333. Me.等於1_bt = New System.Windows.Forms.Button()
  334. Me.NUD_06 = New System.Windows.Forms.NumericUpDown()
  335. Me.清除1_bt = New System.Windows.Forms.Button()
  336. Me.NUD_04 = New System.Windows.Forms.NumericUpDown()
  337. Me.小數點1_bt = New System.Windows.Forms.Button()
  338. Me.倒退1_bt = New System.Windows.Forms.Button()
  339. Me.計算2_ch = New System.Windows.Forms.ComboBox()
  340. Me.A0_bt = New System.Windows.Forms.Button()
  341. Me.A9_bt = New System.Windows.Forms.Button()
  342. Me.NUD_05 = New System.Windows.Forms.NumericUpDown()
  343. Me.A8_bt = New System.Windows.Forms.Button()
  344. Me.A7_bt = New System.Windows.Forms.Button()
  345. Me.A6_bt = New System.Windows.Forms.Button()
  346. Me.選擇1_lb = New System.Windows.Forms.Label()
  347. Me.A5_bt = New System.Windows.Forms.Button()
  348. Me.A4_bt = New System.Windows.Forms.Button()
  349. Me.A3_bt = New System.Windows.Forms.Button()
  350. Me.A2_bt = New System.Windows.Forms.Button()
  351. Me.A1_bt = New System.Windows.Forms.Button()
  352. Me.除1_bt = New System.Windows.Forms.Button()
  353. Me.乘1_bt = New System.Windows.Forms.Button()
  354. Me.減1_bt = New System.Windows.Forms.Button()
  355. Me.加1_bt = New System.Windows.Forms.Button()
  356. Me.文字資料輸入2_bt = New System.Windows.Forms.Button()
  357. Me.Label13 = New System.Windows.Forms.Label()
  358. Me.選擇項1_tb = New System.Windows.Forms.TextBox()
  359. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  360. Me.Label14 = New System.Windows.Forms.Label()
  361. Me.合計項1_cb = New System.Windows.Forms.ComboBox()
  362. Me.單位1_tb = New System.Windows.Forms.TextBox()
  363. Me.備註1_tb = New System.Windows.Forms.TextBox()
  364. Me.內容1_tb = New System.Windows.Forms.TextBox()
  365. Me.數字2_ch = New System.Windows.Forms.CheckBox()
  366. Me.中文小寫2_ch = New System.Windows.Forms.CheckBox()
  367. Me.中文大寫2_ch = New System.Windows.Forms.CheckBox()
  368. Me.ITEM2_cb = New System.Windows.Forms.ComboBox()
  369. Me.Label18 = New System.Windows.Forms.Label()
  370. Me.Label17 = New System.Windows.Forms.Label()
  371. Me.結果1_tb = New System.Windows.Forms.TextBox()
  372. Me.計算式1_tb = New System.Windows.Forms.TextBox()
  373. Me.數值3_tb = New System.Windows.Forms.TextBox()
  374. Me.數值4_tb = New System.Windows.Forms.TextBox()
  375. Me.Label36 = New System.Windows.Forms.Label()
  376. Me.Label38 = New System.Windows.Forms.Label()
  377. Me.CanceL3_bt = New System.Windows.Forms.Button()
  378. Me.視窗1_pl = New System.Windows.Forms.Panel()
  379. Me.物料群組_Panel = New System.Windows.Forms.Panel()
  380. Me.複製係數範本_tb = New System.Windows.Forms.Button()
  381. Me.係數項目新增_bt = New System.Windows.Forms.Button()
  382. Me.係數項目刪除_bt = New System.Windows.Forms.Button()
  383. Me.係數項目修改_bt = New System.Windows.Forms.Button()
  384. Me.係數單位_cb = New System.Windows.Forms.ComboBox()
  385. Me.Label10 = New System.Windows.Forms.Label()
  386. Me.Label12 = New System.Windows.Forms.Label()
  387. Me.係數項目_cb = New System.Windows.Forms.ComboBox()
  388. Me.Label11 = New System.Windows.Forms.Label()
  389. Me.係數_nup = New System.Windows.Forms.NumericUpDown()
  390. Me.Cancel1_bt = New System.Windows.Forms.Button()
  391. Me.合約_lb = New System.Windows.Forms.Label()
  392. Me.Label37 = New System.Windows.Forms.Label()
  393. Me.報價係數_dgv = New System.Windows.Forms.DataGridView()
  394. Me.報價單立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  395. Me.Label27 = New System.Windows.Forms.Label()
  396. Me.Label26 = New System.Windows.Forms.Label()
  397. Me.報價單合約編號_tb = New System.Windows.Forms.TextBox()
  398. Me.報價工程名稱_英_tb = New System.Windows.Forms.TextBox()
  399. Me.報價工程名稱_中_tb = New System.Windows.Forms.TextBox()
  400. Me.Label9 = New System.Windows.Forms.Label()
  401. Me.Label8 = New System.Windows.Forms.Label()
  402. Me.報價單客戶名稱_cb = New System.Windows.Forms.ComboBox()
  403. Me.Label6 = New System.Windows.Forms.Label()
  404. Me.報價明細表_dgv = New System.Windows.Forms.DataGridView()
  405. Me.Panel5 = New System.Windows.Forms.Panel()
  406. Me.Label75 = New System.Windows.Forms.Label()
  407. Me.Label22 = New System.Windows.Forms.Label()
  408. Me.Label33 = New System.Windows.Forms.Label()
  409. Me.工資_ch = New System.Windows.Forms.CheckBox()
  410. Me.料號_tb = New System.Windows.Forms.TextBox()
  411. Me.單位2_tb = New System.Windows.Forms.TextBox()
  412. Me.Label32 = New System.Windows.Forms.Label()
  413. Me.申請數_lb = New System.Windows.Forms.Label()
  414. Me.ITEM3_cb = New System.Windows.Forms.ComboBox()
  415. Me.申請數_nud = New System.Windows.Forms.NumericUpDown()
  416. Me.利潤表_ch = New System.Windows.Forms.CheckBox()
  417. Me.材料_ch = New System.Windows.Forms.CheckBox()
  418. Me.係數範本_tb = New System.Windows.Forms.Button()
  419. Me.編輯係數_bt = New System.Windows.Forms.Button()
  420. Me.規格顯示修改_bt = New System.Windows.Forms.Button()
  421. Me.修改明細表上的材料指定_bt = New System.Windows.Forms.Button()
  422. Me.選擇材料新增到明細表_bt = New System.Windows.Forms.Button()
  423. Me.新增資料2_bt = New System.Windows.Forms.Button()
  424. Me.總表選擇刪除1_bt = New System.Windows.Forms.Button()
  425. Me.明細表編輯_bt = New System.Windows.Forms.Button()
  426. Me.報價明細表存檔_bt = New System.Windows.Forms.Button()
  427. Me.排序2_bt = New System.Windows.Forms.Button()
  428. Me.物料圖1_pb = New System.Windows.Forms.PictureBox()
  429. Me.工程合約試算表_tc = New System.Windows.Forms.TabPage()
  430. Me.詳細資料3_ch = New System.Windows.Forms.CheckBox()
  431. Me.Label4 = New System.Windows.Forms.Label()
  432. Me.刪除1_bt = New System.Windows.Forms.Button()
  433. Me.係數_nud = New System.Windows.Forms.NumericUpDown()
  434. Me.存檔_bt = New System.Windows.Forms.Button()
  435. Me.使用計算機_ch = New System.Windows.Forms.CheckBox()
  436. Me.直接輸入_ch = New System.Windows.Forms.CheckBox()
  437. Me.材料加入1_bt = New System.Windows.Forms.Button()
  438. Me.修改樓層_迴圈_bt = New System.Windows.Forms.Button()
  439. Me.新增物件_bt = New System.Windows.Forms.Button()
  440. Me.料號_lb = New System.Windows.Forms.Label()
  441. Me.樓層_迴路_cb = New System.Windows.Forms.ComboBox()
  442. Me.料號1_tb = New System.Windows.Forms.TextBox()
  443. Me.Label3 = New System.Windows.Forms.Label()
  444. Me.修改試算表名稱_bt = New System.Windows.Forms.Button()
  445. Me.新增試算表_bt = New System.Windows.Forms.Button()
  446. Me.Label1 = New System.Windows.Forms.Label()
  447. Me.試算表_cb = New System.Windows.Forms.ComboBox()
  448. Me.試算表_dgv = New System.Windows.Forms.DataGridView()
  449. Me.物料圖_pb = New System.Windows.Forms.PictureBox()
  450. Me.空間1 = New System.Windows.Forms.Panel()
  451. Me.BOM_p = New System.Windows.Forms.Panel()
  452. Me.詳細資料1_ch = New System.Windows.Forms.CheckBox()
  453. Me.Label73 = New System.Windows.Forms.Label()
  454. Me.BOM新增到明細表_bt = New System.Windows.Forms.Button()
  455. Me.中文小寫3_ch = New System.Windows.Forms.CheckBox()
  456. Me.Label52 = New System.Windows.Forms.Label()
  457. Me.Label51 = New System.Windows.Forms.Label()
  458. Me.主項目_tb = New System.Windows.Forms.TextBox()
  459. Me.BOM表明細_dgv = New System.Windows.Forms.DataGridView()
  460. Me.中文大寫3_ch = New System.Windows.Forms.CheckBox()
  461. Me.ITEM4_cb = New System.Windows.Forms.ComboBox()
  462. Me.Panel1 = New System.Windows.Forms.Panel()
  463. Me.主管_dgv = New System.Windows.Forms.DataGridView()
  464. Me.圖庫清單_dgv = New System.Windows.Forms.DataGridView()
  465. Me.項目流水_tb = New System.Windows.Forms.TextBox()
  466. Me.選擇項3_tb = New System.Windows.Forms.TextBox()
  467. Me.連動編號_tb = New System.Windows.Forms.TextBox()
  468. Me.PictureBox2 = New System.Windows.Forms.PictureBox()
  469. Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  470. Me.選擇項2_tb = New System.Windows.Forms.TextBox()
  471. Me.DGV位置2 = New System.Windows.Forms.NumericUpDown()
  472. Me.DGV位置1 = New System.Windows.Forms.NumericUpDown()
  473. Me.明細表流水_tb = New System.Windows.Forms.TextBox()
  474. Me.總表流水_tb = New System.Windows.Forms.TextBox()
  475. Me.Y_2_tb = New System.Windows.Forms.TextBox()
  476. Me.Y_3_tb = New System.Windows.Forms.TextBox()
  477. Me.係數合約號_tb = New System.Windows.Forms.TextBox()
  478. Me.Label43 = New System.Windows.Forms.Label()
  479. Me.係數流水號_tb = New System.Windows.Forms.TextBox()
  480. Me.群組編碼_cb = New System.Windows.Forms.ComboBox()
  481. Me.X_2_tb = New System.Windows.Forms.TextBox()
  482. Me.語言_dgv = New System.Windows.Forms.DataGridView()
  483. Me.X_3_tb = New System.Windows.Forms.TextBox()
  484. Me.存檔比較_dgv = New System.Windows.Forms.DataGridView()
  485. Me.範例文本_dgv = New System.Windows.Forms.DataGridView()
  486. Me.群組碼_tb = New System.Windows.Forms.TextBox()
  487. Me.表號_tb = New System.Windows.Forms.TextBox()
  488. Me.表頭_tb = New System.Windows.Forms.TextBox()
  489. Me.試算控制表_dgv = New System.Windows.Forms.DataGridView()
  490. Me.BOM表控制_dgv = New System.Windows.Forms.DataGridView()
  491. Me.合約_p = New System.Windows.Forms.Panel()
  492. Me.全部取消_bt = New System.Windows.Forms.Button()
  493. Me.全部選擇_bt = New System.Windows.Forms.Button()
  494. Me.詳細資料_ch = New System.Windows.Forms.CheckBox()
  495. Me.Label77 = New System.Windows.Forms.Label()
  496. Me.合約編號2_cb = New System.Windows.Forms.ComboBox()
  497. Me.合約編號_1_tb = New System.Windows.Forms.TextBox()
  498. Me.Label78 = New System.Windows.Forms.Label()
  499. Me.關鍵字搜尋1_tb = New System.Windows.Forms.TextBox()
  500. Me.查詢1_bt = New System.Windows.Forms.Button()
  501. Me.選取資料新增到明細表_bt = New System.Windows.Forms.Button()
  502. Me.報價明細表2_dgv = New System.Windows.Forms.DataGridView()
  503. Me.合約1_dgv = New System.Windows.Forms.DataGridView()
  504. Me.Label74 = New System.Windows.Forms.Label()
  505. Me.物料_p = New System.Windows.Forms.Panel()
  506. Me.帶上歷史單價_ch = New System.Windows.Forms.CheckBox()
  507. Me.群組編碼_lb = New System.Windows.Forms.Label()
  508. Me.Label50 = New System.Windows.Forms.Label()
  509. Me.歷史單價_tb = New System.Windows.Forms.TextBox()
  510. Me.Label49 = New System.Windows.Forms.Label()
  511. Me.物料規格_dgv = New System.Windows.Forms.DataGridView()
  512. Me.最後採購日_tb = New System.Windows.Forms.TextBox()
  513. Me.大間距_ch = New System.Windows.Forms.CheckBox()
  514. Me.新群組1_cb = New System.Windows.Forms.ComboBox()
  515. Me.搜尋_bt = New System.Windows.Forms.Button()
  516. Me.中間距_ch = New System.Windows.Forms.CheckBox()
  517. Me.小間距_ch = New System.Windows.Forms.CheckBox()
  518. Me.物料清單_dgv = New System.Windows.Forms.DataGridView()
  519. Me.合約_ch = New System.Windows.Forms.CheckBox()
  520. Me.BOM_ch = New System.Windows.Forms.CheckBox()
  521. Me.視窗4_pl.SuspendLayout()
  522. Me.Panel6.SuspendLayout()
  523. Me.空間2.SuspendLayout()
  524. Me.TabControl1.SuspendLayout()
  525. Me.建立合約資料_tc.SuspendLayout()
  526. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  527. Me.視窗2_pl.SuspendLayout()
  528. Me.Panel3.SuspendLayout()
  529. CType(Me.報價明細表1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  530. Me.GroupBox1.SuspendLayout()
  531. CType(Me.NUD_03, System.ComponentModel.ISupportInitialize).BeginInit()
  532. CType(Me.NUD_01, System.ComponentModel.ISupportInitialize).BeginInit()
  533. CType(Me.NUD_02, System.ComponentModel.ISupportInitialize).BeginInit()
  534. Me.GroupBox2.SuspendLayout()
  535. Me.空間3.SuspendLayout()
  536. Me.Panel2.SuspendLayout()
  537. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
  538. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  539. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  540. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  541. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  542. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
  543. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
  544. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  545. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
  546. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
  547. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
  548. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  549. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  550. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  551. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  552. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  553. Me.TabControl2.SuspendLayout()
  554. Me.TabPage5.SuspendLayout()
  555. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  556. Me.TabPage6.SuspendLayout()
  557. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  558. Me.TabPage7.SuspendLayout()
  559. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  560. Me.TabPage8.SuspendLayout()
  561. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  562. Me.TabPage9.SuspendLayout()
  563. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  564. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  565. Me.TabControl3.SuspendLayout()
  566. Me.TabPage1.SuspendLayout()
  567. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  568. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  569. Me.TabPage2.SuspendLayout()
  570. Me.工程合約報價明細_tc.SuspendLayout()
  571. Me.視窗3_pl.SuspendLayout()
  572. Me.Panel4.SuspendLayout()
  573. CType(Me.報價係數1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  574. Me.GroupBox4.SuspendLayout()
  575. CType(Me.NUD_06, System.ComponentModel.ISupportInitialize).BeginInit()
  576. CType(Me.NUD_04, System.ComponentModel.ISupportInitialize).BeginInit()
  577. CType(Me.NUD_05, System.ComponentModel.ISupportInitialize).BeginInit()
  578. Me.GroupBox3.SuspendLayout()
  579. Me.視窗1_pl.SuspendLayout()
  580. Me.物料群組_Panel.SuspendLayout()
  581. CType(Me.係數_nup, System.ComponentModel.ISupportInitialize).BeginInit()
  582. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  583. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  584. Me.Panel5.SuspendLayout()
  585. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  586. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  587. Me.工程合約試算表_tc.SuspendLayout()
  588. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  589. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  590. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  591. Me.空間1.SuspendLayout()
  592. Me.BOM_p.SuspendLayout()
  593. CType(Me.BOM表明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  594. Me.Panel1.SuspendLayout()
  595. CType(Me.主管_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  596. CType(Me.圖庫清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  597. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
  598. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  599. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).BeginInit()
  600. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).BeginInit()
  601. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  602. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  603. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  604. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  605. CType(Me.BOM表控制_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  606. Me.合約_p.SuspendLayout()
  607. CType(Me.報價明細表2_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  608. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  609. Me.物料_p.SuspendLayout()
  610. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  611. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  612. Me.SuspendLayout()
  613. '
  614. '視窗4_pl
  615. '
  616. Me.視窗4_pl.BackColor = System.Drawing.Color.White
  617. Me.視窗4_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  618. Me.視窗4_pl.Controls.Add(Me.Panel6)
  619. Me.視窗4_pl.Controls.Add(Me.Label56)
  620. Me.視窗4_pl.Controls.Add(Me.CanceL4_bt)
  621. Me.視窗4_pl.Location = New System.Drawing.Point(892, 535)
  622. Me.視窗4_pl.Name = "視窗4_pl"
  623. Me.視窗4_pl.Size = New System.Drawing.Size(332, 216)
  624. Me.視窗4_pl.TabIndex = 1425
  625. '
  626. 'Panel6
  627. '
  628. Me.Panel6.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  629. Or System.Windows.Forms.AnchorStyles.Left) _
  630. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  631. Me.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  632. Me.Panel6.Controls.Add(Me.轉移_ch)
  633. Me.Panel6.Controls.Add(Me.改版_ch)
  634. Me.Panel6.Controls.Add(Me.複製轉移_bt)
  635. Me.Panel6.Controls.Add(Me.Label48)
  636. Me.Panel6.Controls.Add(Me.合約編號3_n_tb)
  637. Me.Panel6.Controls.Add(Me.合約編號2_n_tb)
  638. Me.Panel6.Controls.Add(Me.合約編號1_n_tb)
  639. Me.Panel6.Controls.Add(Me.合約編號_n_cb)
  640. Me.Panel6.Controls.Add(Me.Label46)
  641. Me.Panel6.Controls.Add(Me.合約編號3_o_tb)
  642. Me.Panel6.Controls.Add(Me.合約編號2_o_tb)
  643. Me.Panel6.Controls.Add(Me.合約編號1_o_tb)
  644. Me.Panel6.Controls.Add(Me.合約編號_o_cb)
  645. Me.Panel6.Controls.Add(Me.Label47)
  646. Me.Panel6.Controls.Add(Me.新建_ch)
  647. Me.Panel6.Controls.Add(Me.Label72)
  648. Me.Panel6.Location = New System.Drawing.Point(3, 28)
  649. Me.Panel6.Name = "Panel6"
  650. Me.Panel6.Size = New System.Drawing.Size(325, 184)
  651. Me.Panel6.TabIndex = 1367
  652. '
  653. '轉移_ch
  654. '
  655. Me.轉移_ch.AutoSize = True
  656. Me.轉移_ch.Location = New System.Drawing.Point(5, 47)
  657. Me.轉移_ch.Name = "轉移_ch"
  658. Me.轉移_ch.Size = New System.Drawing.Size(193, 20)
  659. Me.轉移_ch.TabIndex = 1368
  660. Me.轉移_ch.Text = "舊合約改版 [不保留舊報價資料]"
  661. Me.轉移_ch.UseVisualStyleBackColor = True
  662. '
  663. '改版_ch
  664. '
  665. Me.改版_ch.AutoSize = True
  666. Me.改版_ch.Location = New System.Drawing.Point(5, 25)
  667. Me.改版_ch.Name = "改版_ch"
  668. Me.改版_ch.Size = New System.Drawing.Size(313, 20)
  669. Me.改版_ch.TabIndex = 1366
  670. Me.改版_ch.Text = "舊合約改版 [保留舊報價資料,附屬資料轉到新合約號]"
  671. Me.改版_ch.UseVisualStyleBackColor = True
  672. '
  673. '複製轉移_bt
  674. '
  675. Me.複製轉移_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  676. Me.複製轉移_bt.ForeColor = System.Drawing.Color.Blue
  677. Me.複製轉移_bt.Location = New System.Drawing.Point(5, 143)
  678. Me.複製轉移_bt.Name = "複製轉移_bt"
  679. Me.複製轉移_bt.Size = New System.Drawing.Size(311, 34)
  680. Me.複製轉移_bt.TabIndex = 1364
  681. Me.複製轉移_bt.Text = "開始進行合約報價複製"
  682. Me.複製轉移_bt.UseVisualStyleBackColor = True
  683. '
  684. 'Label48
  685. '
  686. Me.Label48.AutoSize = True
  687. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  688. Me.Label48.Location = New System.Drawing.Point(1, 120)
  689. Me.Label48.Name = "Label48"
  690. Me.Label48.Size = New System.Drawing.Size(99, 19)
  691. Me.Label48.TabIndex = 1051
  692. Me.Label48.Text = "新版合約編號"
  693. Me.Label48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  694. '
  695. '合約編號3_n_tb
  696. '
  697. Me.合約編號3_n_tb.Location = New System.Drawing.Point(281, 118)
  698. Me.合約編號3_n_tb.Name = "合約編號3_n_tb"
  699. Me.合約編號3_n_tb.Size = New System.Drawing.Size(35, 23)
  700. Me.合約編號3_n_tb.TabIndex = 1055
  701. '
  702. '合約編號2_n_tb
  703. '
  704. Me.合約編號2_n_tb.Enabled = False
  705. Me.合約編號2_n_tb.Location = New System.Drawing.Point(215, 118)
  706. Me.合約編號2_n_tb.MaxLength = 6
  707. Me.合約編號2_n_tb.Name = "合約編號2_n_tb"
  708. Me.合約編號2_n_tb.Size = New System.Drawing.Size(65, 23)
  709. Me.合約編號2_n_tb.TabIndex = 1054
  710. '
  711. '合約編號1_n_tb
  712. '
  713. Me.合約編號1_n_tb.Enabled = False
  714. Me.合約編號1_n_tb.Location = New System.Drawing.Point(164, 118)
  715. Me.合約編號1_n_tb.Name = "合約編號1_n_tb"
  716. Me.合約編號1_n_tb.Size = New System.Drawing.Size(50, 23)
  717. Me.合約編號1_n_tb.TabIndex = 1053
  718. '
  719. '合約編號_n_cb
  720. '
  721. Me.合約編號_n_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  722. Me.合約編號_n_cb.Enabled = False
  723. Me.合約編號_n_cb.ForeColor = System.Drawing.Color.Blue
  724. Me.合約編號_n_cb.FormattingEnabled = True
  725. Me.合約編號_n_cb.Items.AddRange(New Object() {"", "GCM", "ICS"})
  726. Me.合約編號_n_cb.Location = New System.Drawing.Point(100, 117)
  727. Me.合約編號_n_cb.Name = "合約編號_n_cb"
  728. Me.合約編號_n_cb.Size = New System.Drawing.Size(62, 24)
  729. Me.合約編號_n_cb.TabIndex = 1052
  730. '
  731. 'Label46
  732. '
  733. Me.Label46.AutoSize = True
  734. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  735. Me.Label46.Location = New System.Drawing.Point(1, 95)
  736. Me.Label46.Name = "Label46"
  737. Me.Label46.Size = New System.Drawing.Size(99, 19)
  738. Me.Label46.TabIndex = 1045
  739. Me.Label46.Text = "舊版合約編號"
  740. Me.Label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  741. '
  742. '合約編號3_o_tb
  743. '
  744. Me.合約編號3_o_tb.Enabled = False
  745. Me.合約編號3_o_tb.Location = New System.Drawing.Point(281, 93)
  746. Me.合約編號3_o_tb.Name = "合約編號3_o_tb"
  747. Me.合約編號3_o_tb.Size = New System.Drawing.Size(35, 23)
  748. Me.合約編號3_o_tb.TabIndex = 1049
  749. '
  750. '合約編號2_o_tb
  751. '
  752. Me.合約編號2_o_tb.Enabled = False
  753. Me.合約編號2_o_tb.Location = New System.Drawing.Point(215, 93)
  754. Me.合約編號2_o_tb.MaxLength = 6
  755. Me.合約編號2_o_tb.Name = "合約編號2_o_tb"
  756. Me.合約編號2_o_tb.Size = New System.Drawing.Size(65, 23)
  757. Me.合約編號2_o_tb.TabIndex = 1048
  758. '
  759. '合約編號1_o_tb
  760. '
  761. Me.合約編號1_o_tb.Enabled = False
  762. Me.合約編號1_o_tb.Location = New System.Drawing.Point(164, 93)
  763. Me.合約編號1_o_tb.Name = "合約編號1_o_tb"
  764. Me.合約編號1_o_tb.Size = New System.Drawing.Size(50, 23)
  765. Me.合約編號1_o_tb.TabIndex = 1047
  766. '
  767. '合約編號_o_cb
  768. '
  769. Me.合約編號_o_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  770. Me.合約編號_o_cb.Enabled = False
  771. Me.合約編號_o_cb.ForeColor = System.Drawing.Color.Blue
  772. Me.合約編號_o_cb.FormattingEnabled = True
  773. Me.合約編號_o_cb.Items.AddRange(New Object() {"", "GCM", "ICS"})
  774. Me.合約編號_o_cb.Location = New System.Drawing.Point(100, 92)
  775. Me.合約編號_o_cb.Name = "合約編號_o_cb"
  776. Me.合約編號_o_cb.Size = New System.Drawing.Size(62, 24)
  777. Me.合約編號_o_cb.TabIndex = 1046
  778. '
  779. 'Label47
  780. '
  781. Me.Label47.AutoSize = True
  782. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  783. Me.Label47.Location = New System.Drawing.Point(99, 78)
  784. Me.Label47.Name = "Label47"
  785. Me.Label47.Size = New System.Drawing.Size(220, 16)
  786. Me.Label47.TabIndex = 1050
  787. Me.Label47.Text = "乙方 甲方 立約日期 序號 "
  788. Me.Label47.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  789. '
  790. '新建_ch
  791. '
  792. Me.新建_ch.AutoSize = True
  793. Me.新建_ch.Location = New System.Drawing.Point(5, 3)
  794. Me.新建_ch.Name = "新建_ch"
  795. Me.新建_ch.Size = New System.Drawing.Size(279, 20)
  796. Me.新建_ch.TabIndex = 1365
  797. Me.新建_ch.Text = "複製舊報價單來 [建立新的報價單] 與 [合約編號]"
  798. Me.新建_ch.UseVisualStyleBackColor = True
  799. '
  800. 'Label72
  801. '
  802. Me.Label72.AutoSize = True
  803. Me.Label72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  804. Me.Label72.Location = New System.Drawing.Point(0, 60)
  805. Me.Label72.Name = "Label72"
  806. Me.Label72.Size = New System.Drawing.Size(322, 16)
  807. Me.Label72.TabIndex = 1367
  808. Me.Label72.Text = "_______________________________________________________________"
  809. Me.Label72.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  810. '
  811. 'Label56
  812. '
  813. Me.Label56.AutoSize = True
  814. Me.Label56.Location = New System.Drawing.Point(5, 7)
  815. Me.Label56.Name = "Label56"
  816. Me.Label56.Size = New System.Drawing.Size(103, 16)
  817. Me.Label56.TabIndex = 1375
  818. Me.Label56.Text = "合約編號改版確認"
  819. '
  820. 'CanceL4_bt
  821. '
  822. Me.CanceL4_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  823. Me.CanceL4_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  824. Me.CanceL4_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  825. Me.CanceL4_bt.ForeColor = System.Drawing.Color.Black
  826. Me.CanceL4_bt.Location = New System.Drawing.Point(300, 2)
  827. Me.CanceL4_bt.Name = "CanceL4_bt"
  828. Me.CanceL4_bt.Size = New System.Drawing.Size(26, 26)
  829. Me.CanceL4_bt.TabIndex = 1374
  830. Me.CanceL4_bt.Text = "X"
  831. Me.CanceL4_bt.UseVisualStyleBackColor = False
  832. '
  833. '錨點1
  834. '
  835. Me.錨點1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  836. Me.錨點1.Location = New System.Drawing.Point(492, 1039)
  837. Me.錨點1.Name = "錨點1"
  838. Me.錨點1.Size = New System.Drawing.Size(25, 23)
  839. Me.錨點1.TabIndex = 1424
  840. Me.錨點1.Visible = False
  841. '
  842. '空間2
  843. '
  844. Me.空間2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  845. Or System.Windows.Forms.AnchorStyles.Left) _
  846. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  847. Me.空間2.BackColor = System.Drawing.Color.White
  848. Me.空間2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  849. Me.空間2.Controls.Add(Me.物料_ch)
  850. Me.空間2.Controls.Add(Me.Label41)
  851. Me.空間2.Controls.Add(Me.合約編號清單_bt)
  852. Me.空間2.Controls.Add(Me.工程期1_ch)
  853. Me.空間2.Controls.Add(Me.Label40)
  854. Me.空間2.Controls.Add(Me.縮放_bt)
  855. Me.空間2.Controls.Add(Me.合約編號1_cb)
  856. Me.空間2.Controls.Add(Me.Label2)
  857. Me.空間2.Controls.Add(Me.合約編號_tb)
  858. Me.空間2.Controls.Add(Me.TabControl1)
  859. Me.空間2.Location = New System.Drawing.Point(492, 0)
  860. Me.空間2.Name = "空間2"
  861. Me.空間2.Size = New System.Drawing.Size(1421, 1039)
  862. Me.空間2.TabIndex = 1423
  863. '
  864. '物料_ch
  865. '
  866. Me.物料_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  867. Me.物料_ch.AutoSize = True
  868. Me.物料_ch.BackColor = System.Drawing.SystemColors.Control
  869. Me.物料_ch.BackgroundImage = CType(resources.GetObject("物料_ch.BackgroundImage"), System.Drawing.Image)
  870. Me.物料_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  871. Me.物料_ch.Location = New System.Drawing.Point(1068, 4)
  872. Me.物料_ch.Name = "物料_ch"
  873. Me.物料_ch.Size = New System.Drawing.Size(59, 20)
  874. Me.物料_ch.TabIndex = 1410
  875. Me.物料_ch.Text = " "
  876. Me.物料_ch.UseVisualStyleBackColor = False
  877. '
  878. 'Label41
  879. '
  880. Me.Label41.AutoSize = True
  881. Me.Label41.BackColor = System.Drawing.SystemColors.Control
  882. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  883. Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  884. Me.Label41.Location = New System.Drawing.Point(418, 7)
  885. Me.Label41.Name = "Label41"
  886. Me.Label41.Size = New System.Drawing.Size(55, 16)
  887. Me.Label41.TabIndex = 1409
  888. Me.Label41.Text = "工程期數"
  889. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  890. '
  891. '合約編號清單_bt
  892. '
  893. Me.合約編號清單_bt.BackColor = System.Drawing.SystemColors.Control
  894. Me.合約編號清單_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  895. Me.合約編號清單_bt.Location = New System.Drawing.Point(553, 2)
  896. Me.合約編號清單_bt.Name = "合約編號清單_bt"
  897. Me.合約編號清單_bt.Size = New System.Drawing.Size(90, 26)
  898. Me.合約編號清單_bt.TabIndex = 1362
  899. Me.合約編號清單_bt.Text = "合約編號清單"
  900. Me.合約編號清單_bt.UseVisualStyleBackColor = False
  901. '
  902. '工程期1_ch
  903. '
  904. Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  905. Me.工程期1_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  906. Me.工程期1_ch.FormattingEnabled = True
  907. Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  908. Me.工程期1_ch.Location = New System.Drawing.Point(475, 3)
  909. Me.工程期1_ch.Name = "工程期1_ch"
  910. Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
  911. Me.工程期1_ch.TabIndex = 1408
  912. '
  913. 'Label40
  914. '
  915. Me.Label40.AutoSize = True
  916. Me.Label40.BackColor = System.Drawing.SystemColors.Control
  917. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  918. Me.Label40.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  919. Me.Label40.Location = New System.Drawing.Point(307, 7)
  920. Me.Label40.Name = "Label40"
  921. Me.Label40.Size = New System.Drawing.Size(31, 16)
  922. Me.Label40.TabIndex = 1407
  923. Me.Label40.Text = "甲方"
  924. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  925. '
  926. '縮放_bt
  927. '
  928. Me.縮放_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  929. Me.縮放_bt.BackColor = System.Drawing.SystemColors.Control
  930. Me.縮放_bt.Location = New System.Drawing.Point(972, 1)
  931. Me.縮放_bt.Name = "縮放_bt"
  932. Me.縮放_bt.Size = New System.Drawing.Size(90, 26)
  933. Me.縮放_bt.TabIndex = 1361
  934. Me.縮放_bt.Text = "物料選擇清單"
  935. Me.縮放_bt.UseVisualStyleBackColor = False
  936. '
  937. '合約編號1_cb
  938. '
  939. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  940. Me.合約編號1_cb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  941. Me.合約編號1_cb.FormattingEnabled = True
  942. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  943. Me.合約編號1_cb.Location = New System.Drawing.Point(339, 3)
  944. Me.合約編號1_cb.Name = "合約編號1_cb"
  945. Me.合約編號1_cb.Size = New System.Drawing.Size(74, 24)
  946. Me.合約編號1_cb.TabIndex = 1406
  947. '
  948. 'Label2
  949. '
  950. Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  951. Me.Label2.AutoSize = True
  952. Me.Label2.BackColor = System.Drawing.SystemColors.Control
  953. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  954. Me.Label2.Location = New System.Drawing.Point(1234, 6)
  955. Me.Label2.Name = "Label2"
  956. Me.Label2.Size = New System.Drawing.Size(55, 16)
  957. Me.Label2.TabIndex = 1049
  958. Me.Label2.Text = "合約編號"
  959. Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  960. '
  961. '合約編號_tb
  962. '
  963. Me.合約編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  964. Me.合約編號_tb.Enabled = False
  965. Me.合約編號_tb.Location = New System.Drawing.Point(1290, 2)
  966. Me.合約編號_tb.Name = "合約編號_tb"
  967. Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
  968. Me.合約編號_tb.TabIndex = 1048
  969. '
  970. 'TabControl1
  971. '
  972. Me.TabControl1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  973. Or System.Windows.Forms.AnchorStyles.Left) _
  974. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  975. Me.TabControl1.Appearance = System.Windows.Forms.TabAppearance.Buttons
  976. Me.TabControl1.Controls.Add(Me.建立合約資料_tc)
  977. Me.TabControl1.Controls.Add(Me.工程合約報價明細_tc)
  978. Me.TabControl1.Controls.Add(Me.工程合約試算表_tc)
  979. Me.TabControl1.Location = New System.Drawing.Point(0, 1)
  980. Me.TabControl1.Multiline = True
  981. Me.TabControl1.Name = "TabControl1"
  982. Me.TabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No
  983. Me.TabControl1.SelectedIndex = 0
  984. Me.TabControl1.Size = New System.Drawing.Size(1421, 1038)
  985. Me.TabControl1.TabIndex = 1047
  986. '
  987. '建立合約資料_tc
  988. '
  989. Me.建立合約資料_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  990. Me.建立合約資料_tc.Controls.Add(Me.印尼盾_ch)
  991. Me.建立合約資料_tc.Controls.Add(Me.人民幣_ch)
  992. Me.建立合約資料_tc.Controls.Add(Me.美金_ch)
  993. Me.建立合約資料_tc.Controls.Add(Me.台幣_ch)
  994. Me.建立合約資料_tc.Controls.Add(Me.發送_bt)
  995. Me.建立合約資料_tc.Controls.Add(Me.查閱文件_bt)
  996. Me.建立合約資料_tc.Controls.Add(Me.列印成EXCEL_bt)
  997. Me.建立合約資料_tc.Controls.Add(Me.縮放2_bt)
  998. Me.建立合約資料_tc.Controls.Add(Me.合約_dgv)
  999. Me.建立合約資料_tc.Controls.Add(Me.總表範例_bt)
  1000. Me.建立合約資料_tc.Controls.Add(Me.合約改版_bt)
  1001. Me.建立合約資料_tc.Controls.Add(Me.新增資料1_bt)
  1002. Me.建立合約資料_tc.Controls.Add(Me.排序1_bt)
  1003. Me.建立合約資料_tc.Controls.Add(Me.總表選擇刪除_bt)
  1004. Me.建立合約資料_tc.Controls.Add(Me.總表編輯_bt)
  1005. Me.建立合約資料_tc.Controls.Add(Me.報價總表存檔_bt)
  1006. Me.建立合約資料_tc.Controls.Add(Me.錨點2)
  1007. Me.建立合約資料_tc.Controls.Add(Me.縮放1_bt)
  1008. Me.建立合約資料_tc.Controls.Add(Me.查詢_bt)
  1009. Me.建立合約資料_tc.Controls.Add(Me.ProgressBar1)
  1010. Me.建立合約資料_tc.Controls.Add(Me.關鍵字搜尋_tb)
  1011. Me.建立合約資料_tc.Controls.Add(Me.刪除合約_bt)
  1012. Me.建立合約資料_tc.Controls.Add(Me.存檔_tb)
  1013. Me.建立合約資料_tc.Controls.Add(Me.合約停止_ch)
  1014. Me.建立合約資料_tc.Controls.Add(Me.Label53)
  1015. Me.建立合約資料_tc.Controls.Add(Me.Label7)
  1016. Me.建立合約資料_tc.Controls.Add(Me.工材分離_ch)
  1017. Me.建立合約資料_tc.Controls.Add(Me.視窗2_pl)
  1018. Me.建立合約資料_tc.Controls.Add(Me.空間3)
  1019. Me.建立合約資料_tc.Location = New System.Drawing.Point(4, 28)
  1020. Me.建立合約資料_tc.Name = "建立合約資料_tc"
  1021. Me.建立合約資料_tc.Padding = New System.Windows.Forms.Padding(3)
  1022. Me.建立合約資料_tc.Size = New System.Drawing.Size(1413, 1006)
  1023. Me.建立合約資料_tc.TabIndex = 3
  1024. Me.建立合約資料_tc.Text = "建立合約資料"
  1025. Me.建立合約資料_tc.UseVisualStyleBackColor = True
  1026. '
  1027. '印尼盾_ch
  1028. '
  1029. Me.印尼盾_ch.AutoSize = True
  1030. Me.印尼盾_ch.Location = New System.Drawing.Point(852, 21)
  1031. Me.印尼盾_ch.Name = "印尼盾_ch"
  1032. Me.印尼盾_ch.Size = New System.Drawing.Size(62, 20)
  1033. Me.印尼盾_ch.TabIndex = 1681
  1034. Me.印尼盾_ch.Text = "印尼盾"
  1035. Me.印尼盾_ch.UseVisualStyleBackColor = True
  1036. '
  1037. '人民幣_ch
  1038. '
  1039. Me.人民幣_ch.AutoSize = True
  1040. Me.人民幣_ch.Location = New System.Drawing.Point(852, 2)
  1041. Me.人民幣_ch.Name = "人民幣_ch"
  1042. Me.人民幣_ch.Size = New System.Drawing.Size(62, 20)
  1043. Me.人民幣_ch.TabIndex = 1680
  1044. Me.人民幣_ch.Text = "人民幣"
  1045. Me.人民幣_ch.UseVisualStyleBackColor = True
  1046. '
  1047. '美金_ch
  1048. '
  1049. Me.美金_ch.AutoSize = True
  1050. Me.美金_ch.Location = New System.Drawing.Point(804, 2)
  1051. Me.美金_ch.Name = "美金_ch"
  1052. Me.美金_ch.Size = New System.Drawing.Size(50, 20)
  1053. Me.美金_ch.TabIndex = 1679
  1054. Me.美金_ch.Text = "美金"
  1055. Me.美金_ch.UseVisualStyleBackColor = True
  1056. '
  1057. '台幣_ch
  1058. '
  1059. Me.台幣_ch.AutoSize = True
  1060. Me.台幣_ch.Checked = True
  1061. Me.台幣_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1062. Me.台幣_ch.Location = New System.Drawing.Point(804, 21)
  1063. Me.台幣_ch.Name = "台幣_ch"
  1064. Me.台幣_ch.Size = New System.Drawing.Size(50, 20)
  1065. Me.台幣_ch.TabIndex = 1678
  1066. Me.台幣_ch.Text = "台幣"
  1067. Me.台幣_ch.UseVisualStyleBackColor = True
  1068. '
  1069. '發送_bt
  1070. '
  1071. Me.發送_bt.BackgroundImage = CType(resources.GetObject("發送_bt.BackgroundImage"), System.Drawing.Image)
  1072. Me.發送_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1073. Me.發送_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1074. Me.發送_bt.ForeColor = System.Drawing.Color.Red
  1075. Me.發送_bt.Location = New System.Drawing.Point(756, 1)
  1076. Me.發送_bt.Name = "發送_bt"
  1077. Me.發送_bt.Size = New System.Drawing.Size(40, 40)
  1078. Me.發送_bt.TabIndex = 1677
  1079. Me.發送_bt.UseVisualStyleBackColor = True
  1080. '
  1081. '查閱文件_bt
  1082. '
  1083. Me.查閱文件_bt.BackgroundImage = CType(resources.GetObject("查閱文件_bt.BackgroundImage"), System.Drawing.Image)
  1084. Me.查閱文件_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1085. Me.查閱文件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1086. Me.查閱文件_bt.ForeColor = System.Drawing.Color.Green
  1087. Me.查閱文件_bt.Location = New System.Drawing.Point(317, 1)
  1088. Me.查閱文件_bt.Name = "查閱文件_bt"
  1089. Me.查閱文件_bt.Size = New System.Drawing.Size(40, 40)
  1090. Me.查閱文件_bt.TabIndex = 1676
  1091. Me.查閱文件_bt.UseVisualStyleBackColor = True
  1092. '
  1093. '列印成EXCEL_bt
  1094. '
  1095. Me.列印成EXCEL_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1096. Me.列印成EXCEL_bt.BackColor = System.Drawing.SystemColors.Control
  1097. Me.列印成EXCEL_bt.BackgroundImage = CType(resources.GetObject("列印成EXCEL_bt.BackgroundImage"), System.Drawing.Image)
  1098. Me.列印成EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1099. Me.列印成EXCEL_bt.ForeColor = System.Drawing.Color.Green
  1100. Me.列印成EXCEL_bt.Location = New System.Drawing.Point(1327, 1)
  1101. Me.列印成EXCEL_bt.Name = "列印成EXCEL_bt"
  1102. Me.列印成EXCEL_bt.Size = New System.Drawing.Size(40, 40)
  1103. Me.列印成EXCEL_bt.TabIndex = 1414
  1104. Me.列印成EXCEL_bt.UseVisualStyleBackColor = False
  1105. '
  1106. '縮放2_bt
  1107. '
  1108. Me.縮放2_bt.BackgroundImage = CType(resources.GetObject("縮放2_bt.BackgroundImage"), System.Drawing.Image)
  1109. Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1110. Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1111. Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
  1112. Me.縮放2_bt.Location = New System.Drawing.Point(50, 1)
  1113. Me.縮放2_bt.Name = "縮放2_bt"
  1114. Me.縮放2_bt.Size = New System.Drawing.Size(40, 40)
  1115. Me.縮放2_bt.TabIndex = 1674
  1116. Me.縮放2_bt.UseVisualStyleBackColor = True
  1117. '
  1118. '合約_dgv
  1119. '
  1120. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1121. Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  1122. Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1123. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1124. Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1125. Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
  1126. Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1127. Me.合約_dgv.Location = New System.Drawing.Point(-1, 42)
  1128. Me.合約_dgv.Name = "合約_dgv"
  1129. Me.合約_dgv.RowHeadersWidth = 5
  1130. Me.合約_dgv.RowTemplate.Height = 24
  1131. Me.合約_dgv.Size = New System.Drawing.Size(147, 954)
  1132. Me.合約_dgv.TabIndex = 1043
  1133. '
  1134. '總表範例_bt
  1135. '
  1136. Me.總表範例_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1137. Me.總表範例_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1138. Me.總表範例_bt.ForeColor = System.Drawing.Color.Green
  1139. Me.總表範例_bt.Location = New System.Drawing.Point(1366, 1)
  1140. Me.總表範例_bt.Name = "總表範例_bt"
  1141. Me.總表範例_bt.Size = New System.Drawing.Size(40, 40)
  1142. Me.總表範例_bt.TabIndex = 1366
  1143. Me.總表範例_bt.Text = "總表範例"
  1144. Me.總表範例_bt.UseVisualStyleBackColor = True
  1145. '
  1146. '合約改版_bt
  1147. '
  1148. Me.合約改版_bt.BackgroundImage = CType(resources.GetObject("合約改版_bt.BackgroundImage"), System.Drawing.Image)
  1149. Me.合約改版_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1150. Me.合約改版_bt.Location = New System.Drawing.Point(397, 1)
  1151. Me.合約改版_bt.Name = "合約改版_bt"
  1152. Me.合約改版_bt.Size = New System.Drawing.Size(100, 40)
  1153. Me.合約改版_bt.TabIndex = 1366
  1154. Me.合約改版_bt.UseVisualStyleBackColor = True
  1155. '
  1156. '新增資料1_bt
  1157. '
  1158. Me.新增資料1_bt.BackgroundImage = CType(resources.GetObject("新增資料1_bt.BackgroundImage"), System.Drawing.Image)
  1159. Me.新增資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1160. Me.新增資料1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1161. Me.新增資料1_bt.ForeColor = System.Drawing.Color.Blue
  1162. Me.新增資料1_bt.Location = New System.Drawing.Point(969, 1)
  1163. Me.新增資料1_bt.Name = "新增資料1_bt"
  1164. Me.新增資料1_bt.Size = New System.Drawing.Size(40, 40)
  1165. Me.新增資料1_bt.TabIndex = 1363
  1166. Me.新增資料1_bt.UseVisualStyleBackColor = True
  1167. '
  1168. '排序1_bt
  1169. '
  1170. Me.排序1_bt.BackgroundImage = CType(resources.GetObject("排序1_bt.BackgroundImage"), System.Drawing.Image)
  1171. Me.排序1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1172. Me.排序1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1173. Me.排序1_bt.ForeColor = System.Drawing.Color.Green
  1174. Me.排序1_bt.Location = New System.Drawing.Point(930, 1)
  1175. Me.排序1_bt.Name = "排序1_bt"
  1176. Me.排序1_bt.Size = New System.Drawing.Size(40, 40)
  1177. Me.排序1_bt.TabIndex = 1364
  1178. Me.排序1_bt.UseVisualStyleBackColor = True
  1179. '
  1180. '總表選擇刪除_bt
  1181. '
  1182. Me.總表選擇刪除_bt.BackgroundImage = CType(resources.GetObject("總表選擇刪除_bt.BackgroundImage"), System.Drawing.Image)
  1183. Me.總表選擇刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1184. Me.總表選擇刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1185. Me.總表選擇刪除_bt.ForeColor = System.Drawing.Color.Red
  1186. Me.總表選擇刪除_bt.Location = New System.Drawing.Point(1086, 1)
  1187. Me.總表選擇刪除_bt.Name = "總表選擇刪除_bt"
  1188. Me.總表選擇刪除_bt.Size = New System.Drawing.Size(40, 40)
  1189. Me.總表選擇刪除_bt.TabIndex = 1365
  1190. Me.總表選擇刪除_bt.UseVisualStyleBackColor = True
  1191. '
  1192. '總表編輯_bt
  1193. '
  1194. Me.總表編輯_bt.BackgroundImage = CType(resources.GetObject("總表編輯_bt.BackgroundImage"), System.Drawing.Image)
  1195. Me.總表編輯_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1196. Me.總表編輯_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1197. Me.總表編輯_bt.ForeColor = System.Drawing.Color.Green
  1198. Me.總表編輯_bt.Location = New System.Drawing.Point(1008, 1)
  1199. Me.總表編輯_bt.Name = "總表編輯_bt"
  1200. Me.總表編輯_bt.Size = New System.Drawing.Size(40, 40)
  1201. Me.總表編輯_bt.TabIndex = 1365
  1202. Me.總表編輯_bt.UseVisualStyleBackColor = True
  1203. '
  1204. '報價總表存檔_bt
  1205. '
  1206. Me.報價總表存檔_bt.BackgroundImage = CType(resources.GetObject("報價總表存檔_bt.BackgroundImage"), System.Drawing.Image)
  1207. Me.報價總表存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1208. Me.報價總表存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1209. Me.報價總表存檔_bt.ForeColor = System.Drawing.Color.DarkGreen
  1210. Me.報價總表存檔_bt.Location = New System.Drawing.Point(1047, 1)
  1211. Me.報價總表存檔_bt.Name = "報價總表存檔_bt"
  1212. Me.報價總表存檔_bt.Size = New System.Drawing.Size(40, 40)
  1213. Me.報價總表存檔_bt.TabIndex = 1364
  1214. Me.報價總表存檔_bt.UseVisualStyleBackColor = True
  1215. '
  1216. '錨點2
  1217. '
  1218. Me.錨點2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1219. Me.錨點2.Location = New System.Drawing.Point(145, 1002)
  1220. Me.錨點2.Name = "錨點2"
  1221. Me.錨點2.Size = New System.Drawing.Size(25, 23)
  1222. Me.錨點2.TabIndex = 1363
  1223. Me.錨點2.Visible = False
  1224. '
  1225. '縮放1_bt
  1226. '
  1227. Me.縮放1_bt.Location = New System.Drawing.Point(1, 1)
  1228. Me.縮放1_bt.Name = "縮放1_bt"
  1229. Me.縮放1_bt.Size = New System.Drawing.Size(50, 40)
  1230. Me.縮放1_bt.TabIndex = 1362
  1231. Me.縮放1_bt.Text = "合約清單"
  1232. Me.縮放1_bt.UseVisualStyleBackColor = True
  1233. '
  1234. '查詢_bt
  1235. '
  1236. Me.查詢_bt.BackgroundImage = CType(resources.GetObject("查詢_bt.BackgroundImage"), System.Drawing.Image)
  1237. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1238. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1239. Me.查詢_bt.Location = New System.Drawing.Point(195, 1)
  1240. Me.查詢_bt.Name = "查詢_bt"
  1241. Me.查詢_bt.Size = New System.Drawing.Size(40, 40)
  1242. Me.查詢_bt.TabIndex = 1046
  1243. Me.查詢_bt.UseVisualStyleBackColor = True
  1244. '
  1245. 'ProgressBar1
  1246. '
  1247. Me.ProgressBar1.Location = New System.Drawing.Point(237, 20)
  1248. Me.ProgressBar1.Maximum = 10000
  1249. Me.ProgressBar1.Name = "ProgressBar1"
  1250. Me.ProgressBar1.Size = New System.Drawing.Size(78, 20)
  1251. Me.ProgressBar1.TabIndex = 1150
  1252. '
  1253. '關鍵字搜尋_tb
  1254. '
  1255. Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(91, 16)
  1256. Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
  1257. Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(104, 23)
  1258. Me.關鍵字搜尋_tb.TabIndex = 1044
  1259. '
  1260. '刪除合約_bt
  1261. '
  1262. Me.刪除合約_bt.BackgroundImage = CType(resources.GetObject("刪除合約_bt.BackgroundImage"), System.Drawing.Image)
  1263. Me.刪除合約_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1264. Me.刪除合約_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1265. Me.刪除合約_bt.ForeColor = System.Drawing.Color.Red
  1266. Me.刪除合約_bt.Location = New System.Drawing.Point(498, 1)
  1267. Me.刪除合約_bt.Name = "刪除合約_bt"
  1268. Me.刪除合約_bt.Size = New System.Drawing.Size(40, 40)
  1269. Me.刪除合約_bt.TabIndex = 1148
  1270. Me.刪除合約_bt.UseVisualStyleBackColor = True
  1271. '
  1272. '存檔_tb
  1273. '
  1274. Me.存檔_tb.BackgroundImage = CType(resources.GetObject("存檔_tb.BackgroundImage"), System.Drawing.Image)
  1275. Me.存檔_tb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1276. Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1277. Me.存檔_tb.ForeColor = System.Drawing.Color.Green
  1278. Me.存檔_tb.Location = New System.Drawing.Point(357, 1)
  1279. Me.存檔_tb.Name = "存檔_tb"
  1280. Me.存檔_tb.Size = New System.Drawing.Size(40, 40)
  1281. Me.存檔_tb.TabIndex = 1141
  1282. Me.存檔_tb.UseVisualStyleBackColor = True
  1283. '
  1284. '合約停止_ch
  1285. '
  1286. Me.合約停止_ch.AutoSize = True
  1287. Me.合約停止_ch.BackColor = System.Drawing.SystemColors.Control
  1288. Me.合約停止_ch.Location = New System.Drawing.Point(241, 2)
  1289. Me.合約停止_ch.Name = "合約停止_ch"
  1290. Me.合約停止_ch.Size = New System.Drawing.Size(74, 20)
  1291. Me.合約停止_ch.TabIndex = 1415
  1292. Me.合約停止_ch.Text = "合約停止"
  1293. Me.合約停止_ch.UseVisualStyleBackColor = False
  1294. '
  1295. 'Label53
  1296. '
  1297. Me.Label53.AutoSize = True
  1298. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1299. Me.Label53.ForeColor = System.Drawing.Color.Red
  1300. Me.Label53.Location = New System.Drawing.Point(1125, 5)
  1301. Me.Label53.Name = "Label53"
  1302. Me.Label53.Size = New System.Drawing.Size(127, 32)
  1303. Me.Label53.TabIndex = 1675
  1304. Me.Label53.Text = "連點兩下就可將明細連" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "動帶入總表選定的位置"
  1305. Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1306. '
  1307. 'Label7
  1308. '
  1309. Me.Label7.AutoSize = True
  1310. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1311. Me.Label7.Location = New System.Drawing.Point(90, 2)
  1312. Me.Label7.Name = "Label7"
  1313. Me.Label7.Size = New System.Drawing.Size(67, 16)
  1314. Me.Label7.TabIndex = 1045
  1315. Me.Label7.Text = "合約號搜尋"
  1316. Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1317. '
  1318. '工材分離_ch
  1319. '
  1320. Me.工材分離_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1321. Me.工材分離_ch.AutoSize = True
  1322. Me.工材分離_ch.BackColor = System.Drawing.SystemColors.Control
  1323. Me.工材分離_ch.ForeColor = System.Drawing.Color.Green
  1324. Me.工材分離_ch.Location = New System.Drawing.Point(1256, 3)
  1325. Me.工材分離_ch.Name = "工材分離_ch"
  1326. Me.工材分離_ch.Size = New System.Drawing.Size(74, 36)
  1327. Me.工材分離_ch.TabIndex = 1414
  1328. Me.工材分離_ch.Text = "工資材料" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "分離格式"
  1329. Me.工材分離_ch.UseVisualStyleBackColor = False
  1330. '
  1331. '視窗2_pl
  1332. '
  1333. Me.視窗2_pl.BackColor = System.Drawing.Color.White
  1334. Me.視窗2_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1335. Me.視窗2_pl.Controls.Add(Me.Panel3)
  1336. Me.視窗2_pl.Controls.Add(Me.Label16)
  1337. Me.視窗2_pl.Controls.Add(Me.CanceL2_bt)
  1338. Me.視窗2_pl.Location = New System.Drawing.Point(610, 150)
  1339. Me.視窗2_pl.Name = "視窗2_pl"
  1340. Me.視窗2_pl.Size = New System.Drawing.Size(709, 479)
  1341. Me.視窗2_pl.TabIndex = 1402
  1342. '
  1343. 'Panel3
  1344. '
  1345. Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1346. Or System.Windows.Forms.AnchorStyles.Left) _
  1347. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1348. Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1349. Me.Panel3.Controls.Add(Me.Label44)
  1350. Me.Panel3.Controls.Add(Me.報價明細表1_dgv)
  1351. Me.Panel3.Controls.Add(Me.GroupBox1)
  1352. Me.Panel3.Controls.Add(Me.座標_lb)
  1353. Me.Panel3.Controls.Add(Me.結果_tb)
  1354. Me.Panel3.Controls.Add(Me.文字資料輸入1_bt)
  1355. Me.Panel3.Controls.Add(Me.計算式_tb)
  1356. Me.Panel3.Controls.Add(Me.Label24)
  1357. Me.Panel3.Controls.Add(Me.數值1_tb)
  1358. Me.Panel3.Controls.Add(Me.數值2_tb)
  1359. Me.Panel3.Controls.Add(Me.選擇項_tb)
  1360. Me.Panel3.Controls.Add(Me.GroupBox2)
  1361. Me.Panel3.Controls.Add(Me.Label23)
  1362. Me.Panel3.Location = New System.Drawing.Point(3, 28)
  1363. Me.Panel3.Name = "Panel3"
  1364. Me.Panel3.Size = New System.Drawing.Size(702, 447)
  1365. Me.Panel3.TabIndex = 1367
  1366. '
  1367. 'Label44
  1368. '
  1369. Me.Label44.AutoSize = True
  1370. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1371. Me.Label44.ForeColor = System.Drawing.Color.Red
  1372. Me.Label44.Location = New System.Drawing.Point(324, 3)
  1373. Me.Label44.Name = "Label44"
  1374. Me.Label44.Size = New System.Drawing.Size(247, 16)
  1375. Me.Label44.TabIndex = 1386
  1376. Me.Label44.Text = "連點兩下就可將明細連動帶入總表選定的位置"
  1377. Me.Label44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1378. '
  1379. '報價明細表1_dgv
  1380. '
  1381. Me.報價明細表1_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1382. Or System.Windows.Forms.AnchorStyles.Left) _
  1383. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1384. Me.報價明細表1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1385. Me.報價明細表1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1386. Me.報價明細表1_dgv.Location = New System.Drawing.Point(320, 22)
  1387. Me.報價明細表1_dgv.Name = "報價明細表1_dgv"
  1388. Me.報價明細表1_dgv.RowHeadersWidth = 5
  1389. Me.報價明細表1_dgv.RowTemplate.Height = 24
  1390. Me.報價明細表1_dgv.Size = New System.Drawing.Size(376, 417)
  1391. Me.報價明細表1_dgv.TabIndex = 1385
  1392. '
  1393. 'GroupBox1
  1394. '
  1395. Me.GroupBox1.Controls.Add(Me.等於_bt)
  1396. Me.GroupBox1.Controls.Add(Me.NUD_03)
  1397. Me.GroupBox1.Controls.Add(Me.清除_bt)
  1398. Me.GroupBox1.Controls.Add(Me.NUD_01)
  1399. Me.GroupBox1.Controls.Add(Me.小數點_bt)
  1400. Me.GroupBox1.Controls.Add(Me.倒退_bt)
  1401. Me.GroupBox1.Controls.Add(Me.計算1_ch)
  1402. Me.GroupBox1.Controls.Add(Me.b0_bt)
  1403. Me.GroupBox1.Controls.Add(Me.b9_bt)
  1404. Me.GroupBox1.Controls.Add(Me.NUD_02)
  1405. Me.GroupBox1.Controls.Add(Me.b8_bt)
  1406. Me.GroupBox1.Controls.Add(Me.b7_bt)
  1407. Me.GroupBox1.Controls.Add(Me.b6_bt)
  1408. Me.GroupBox1.Controls.Add(Me.b5_bt)
  1409. Me.GroupBox1.Controls.Add(Me.b4_bt)
  1410. Me.GroupBox1.Controls.Add(Me.b3_bt)
  1411. Me.GroupBox1.Controls.Add(Me.b2_bt)
  1412. Me.GroupBox1.Controls.Add(Me.b1_bt)
  1413. Me.GroupBox1.Controls.Add(Me.除_bt)
  1414. Me.GroupBox1.Controls.Add(Me.乘_bt)
  1415. Me.GroupBox1.Controls.Add(Me.減_bt)
  1416. Me.GroupBox1.Controls.Add(Me.加_bt)
  1417. Me.GroupBox1.Controls.Add(Me.選擇_lb)
  1418. Me.GroupBox1.Controls.Add(Me.鍵盤鎖定1_ch)
  1419. Me.GroupBox1.ForeColor = System.Drawing.Color.Green
  1420. Me.GroupBox1.Location = New System.Drawing.Point(3, 197)
  1421. Me.GroupBox1.Name = "GroupBox1"
  1422. Me.GroupBox1.Size = New System.Drawing.Size(315, 245)
  1423. Me.GroupBox1.TabIndex = 1379
  1424. Me.GroupBox1.TabStop = False
  1425. Me.GroupBox1.Text = "數值計算"
  1426. '
  1427. '等於_bt
  1428. '
  1429. Me.等於_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1430. Me.等於_bt.Location = New System.Drawing.Point(245, 154)
  1431. Me.等於_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1432. Me.等於_bt.Name = "等於_bt"
  1433. Me.等於_bt.Size = New System.Drawing.Size(66, 72)
  1434. Me.等於_bt.TabIndex = 1401
  1435. Me.等於_bt.Text = "="
  1436. Me.等於_bt.UseVisualStyleBackColor = True
  1437. '
  1438. 'NUD_03
  1439. '
  1440. Me.NUD_03.Location = New System.Drawing.Point(4, 59)
  1441. Me.NUD_03.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1442. Me.NUD_03.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1443. Me.NUD_03.Name = "NUD_03"
  1444. Me.NUD_03.Size = New System.Drawing.Size(306, 23)
  1445. Me.NUD_03.TabIndex = 1092
  1446. Me.NUD_03.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1447. Me.NUD_03.ThousandsSeparator = True
  1448. '
  1449. '清除_bt
  1450. '
  1451. Me.清除_bt.DialogResult = System.Windows.Forms.DialogResult.Cancel
  1452. Me.清除_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1453. Me.清除_bt.Location = New System.Drawing.Point(119, 190)
  1454. Me.清除_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1455. Me.清除_bt.Name = "清除_bt"
  1456. Me.清除_bt.Size = New System.Drawing.Size(58, 36)
  1457. Me.清除_bt.TabIndex = 1400
  1458. Me.清除_bt.Text = "AC"
  1459. Me.清除_bt.UseVisualStyleBackColor = True
  1460. '
  1461. 'NUD_01
  1462. '
  1463. Me.NUD_01.DecimalPlaces = 2
  1464. Me.NUD_01.Location = New System.Drawing.Point(4, 34)
  1465. Me.NUD_01.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1466. Me.NUD_01.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1467. Me.NUD_01.Name = "NUD_01"
  1468. Me.NUD_01.Size = New System.Drawing.Size(132, 23)
  1469. Me.NUD_01.TabIndex = 1087
  1470. Me.NUD_01.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1471. Me.NUD_01.ThousandsSeparator = True
  1472. '
  1473. '小數點_bt
  1474. '
  1475. Me.小數點_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1476. Me.小數點_bt.Location = New System.Drawing.Point(60, 190)
  1477. Me.小數點_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1478. Me.小數點_bt.Name = "小數點_bt"
  1479. Me.小數點_bt.Size = New System.Drawing.Size(58, 36)
  1480. Me.小數點_bt.TabIndex = 1399
  1481. Me.小數點_bt.Text = "."
  1482. Me.小數點_bt.UseVisualStyleBackColor = True
  1483. '
  1484. '倒退_bt
  1485. '
  1486. Me.倒退_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1487. Me.倒退_bt.Location = New System.Drawing.Point(245, 82)
  1488. Me.倒退_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1489. Me.倒退_bt.Name = "倒退_bt"
  1490. Me.倒退_bt.Size = New System.Drawing.Size(66, 72)
  1491. Me.倒退_bt.TabIndex = 1398
  1492. Me.倒退_bt.Text = "➨"
  1493. Me.倒退_bt.UseVisualStyleBackColor = True
  1494. '
  1495. '計算1_ch
  1496. '
  1497. Me.計算1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  1498. Me.計算1_ch.ForeColor = System.Drawing.Color.Blue
  1499. Me.計算1_ch.FormattingEnabled = True
  1500. Me.計算1_ch.Items.AddRange(New Object() {"", "+", "-", "X", "/"})
  1501. Me.計算1_ch.Location = New System.Drawing.Point(140, 34)
  1502. Me.計算1_ch.Name = "計算1_ch"
  1503. Me.計算1_ch.Size = New System.Drawing.Size(33, 24)
  1504. Me.計算1_ch.TabIndex = 1089
  1505. '
  1506. 'b0_bt
  1507. '
  1508. Me.b0_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1509. Me.b0_bt.Location = New System.Drawing.Point(2, 190)
  1510. Me.b0_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1511. Me.b0_bt.Name = "b0_bt"
  1512. Me.b0_bt.Size = New System.Drawing.Size(58, 36)
  1513. Me.b0_bt.TabIndex = 1397
  1514. Me.b0_bt.Text = "0"
  1515. Me.b0_bt.UseVisualStyleBackColor = True
  1516. '
  1517. 'b9_bt
  1518. '
  1519. Me.b9_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1520. Me.b9_bt.Location = New System.Drawing.Point(118, 82)
  1521. Me.b9_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1522. Me.b9_bt.Name = "b9_bt"
  1523. Me.b9_bt.Size = New System.Drawing.Size(58, 36)
  1524. Me.b9_bt.TabIndex = 1396
  1525. Me.b9_bt.Text = "9"
  1526. Me.b9_bt.UseVisualStyleBackColor = True
  1527. '
  1528. 'NUD_02
  1529. '
  1530. Me.NUD_02.DecimalPlaces = 2
  1531. Me.NUD_02.Location = New System.Drawing.Point(177, 34)
  1532. Me.NUD_02.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1533. Me.NUD_02.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1534. Me.NUD_02.Name = "NUD_02"
  1535. Me.NUD_02.Size = New System.Drawing.Size(132, 23)
  1536. Me.NUD_02.TabIndex = 1090
  1537. Me.NUD_02.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1538. Me.NUD_02.ThousandsSeparator = True
  1539. '
  1540. 'b8_bt
  1541. '
  1542. Me.b8_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1543. Me.b8_bt.Location = New System.Drawing.Point(60, 82)
  1544. Me.b8_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1545. Me.b8_bt.Name = "b8_bt"
  1546. Me.b8_bt.Size = New System.Drawing.Size(58, 36)
  1547. Me.b8_bt.TabIndex = 1395
  1548. Me.b8_bt.Text = "8"
  1549. Me.b8_bt.UseVisualStyleBackColor = True
  1550. '
  1551. 'b7_bt
  1552. '
  1553. Me.b7_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1554. Me.b7_bt.Location = New System.Drawing.Point(2, 82)
  1555. Me.b7_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1556. Me.b7_bt.Name = "b7_bt"
  1557. Me.b7_bt.Size = New System.Drawing.Size(58, 36)
  1558. Me.b7_bt.TabIndex = 1394
  1559. Me.b7_bt.Text = "7"
  1560. Me.b7_bt.UseVisualStyleBackColor = True
  1561. '
  1562. 'b6_bt
  1563. '
  1564. Me.b6_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1565. Me.b6_bt.Location = New System.Drawing.Point(118, 118)
  1566. Me.b6_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1567. Me.b6_bt.Name = "b6_bt"
  1568. Me.b6_bt.Size = New System.Drawing.Size(58, 36)
  1569. Me.b6_bt.TabIndex = 1393
  1570. Me.b6_bt.Text = "6"
  1571. Me.b6_bt.UseVisualStyleBackColor = True
  1572. '
  1573. 'b5_bt
  1574. '
  1575. Me.b5_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1576. Me.b5_bt.Location = New System.Drawing.Point(60, 118)
  1577. Me.b5_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1578. Me.b5_bt.Name = "b5_bt"
  1579. Me.b5_bt.Size = New System.Drawing.Size(58, 36)
  1580. Me.b5_bt.TabIndex = 1392
  1581. Me.b5_bt.Text = "5"
  1582. Me.b5_bt.UseVisualStyleBackColor = True
  1583. '
  1584. 'b4_bt
  1585. '
  1586. Me.b4_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1587. Me.b4_bt.Location = New System.Drawing.Point(2, 118)
  1588. Me.b4_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1589. Me.b4_bt.Name = "b4_bt"
  1590. Me.b4_bt.Size = New System.Drawing.Size(58, 36)
  1591. Me.b4_bt.TabIndex = 1391
  1592. Me.b4_bt.Text = "4"
  1593. Me.b4_bt.UseVisualStyleBackColor = True
  1594. '
  1595. 'b3_bt
  1596. '
  1597. Me.b3_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1598. Me.b3_bt.Location = New System.Drawing.Point(118, 154)
  1599. Me.b3_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1600. Me.b3_bt.Name = "b3_bt"
  1601. Me.b3_bt.Size = New System.Drawing.Size(58, 36)
  1602. Me.b3_bt.TabIndex = 1390
  1603. Me.b3_bt.Text = "3"
  1604. Me.b3_bt.UseVisualStyleBackColor = True
  1605. '
  1606. 'b2_bt
  1607. '
  1608. Me.b2_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1609. Me.b2_bt.Location = New System.Drawing.Point(60, 154)
  1610. Me.b2_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1611. Me.b2_bt.Name = "b2_bt"
  1612. Me.b2_bt.Size = New System.Drawing.Size(58, 36)
  1613. Me.b2_bt.TabIndex = 1389
  1614. Me.b2_bt.Text = "2"
  1615. Me.b2_bt.UseVisualStyleBackColor = True
  1616. '
  1617. 'b1_bt
  1618. '
  1619. Me.b1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1620. Me.b1_bt.Location = New System.Drawing.Point(2, 154)
  1621. Me.b1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1622. Me.b1_bt.Name = "b1_bt"
  1623. Me.b1_bt.Size = New System.Drawing.Size(58, 36)
  1624. Me.b1_bt.TabIndex = 1388
  1625. Me.b1_bt.Text = "1"
  1626. Me.b1_bt.UseVisualStyleBackColor = True
  1627. '
  1628. '除_bt
  1629. '
  1630. Me.除_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1631. Me.除_bt.Location = New System.Drawing.Point(179, 118)
  1632. Me.除_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1633. Me.除_bt.Name = "除_bt"
  1634. Me.除_bt.Size = New System.Drawing.Size(66, 36)
  1635. Me.除_bt.TabIndex = 1387
  1636. Me.除_bt.Text = "/"
  1637. Me.除_bt.UseVisualStyleBackColor = True
  1638. '
  1639. '乘_bt
  1640. '
  1641. Me.乘_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1642. Me.乘_bt.Location = New System.Drawing.Point(179, 82)
  1643. Me.乘_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1644. Me.乘_bt.Name = "乘_bt"
  1645. Me.乘_bt.Size = New System.Drawing.Size(66, 36)
  1646. Me.乘_bt.TabIndex = 1386
  1647. Me.乘_bt.Text = "X"
  1648. Me.乘_bt.UseVisualStyleBackColor = True
  1649. '
  1650. '減_bt
  1651. '
  1652. Me.減_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1653. Me.減_bt.Location = New System.Drawing.Point(179, 190)
  1654. Me.減_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1655. Me.減_bt.Name = "減_bt"
  1656. Me.減_bt.Size = New System.Drawing.Size(66, 36)
  1657. Me.減_bt.TabIndex = 1385
  1658. Me.減_bt.Text = "-"
  1659. Me.減_bt.UseVisualStyleBackColor = True
  1660. '
  1661. '加_bt
  1662. '
  1663. Me.加_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1664. Me.加_bt.Location = New System.Drawing.Point(179, 154)
  1665. Me.加_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1666. Me.加_bt.Name = "加_bt"
  1667. Me.加_bt.Size = New System.Drawing.Size(66, 36)
  1668. Me.加_bt.TabIndex = 1384
  1669. Me.加_bt.Text = "+"
  1670. Me.加_bt.UseVisualStyleBackColor = True
  1671. '
  1672. '選擇_lb
  1673. '
  1674. Me.選擇_lb.AutoSize = True
  1675. Me.選擇_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1676. Me.選擇_lb.ForeColor = System.Drawing.Color.Red
  1677. Me.選擇_lb.Location = New System.Drawing.Point(35, 226)
  1678. Me.選擇_lb.Name = "選擇_lb"
  1679. Me.選擇_lb.Size = New System.Drawing.Size(235, 16)
  1680. Me.選擇_lb.TabIndex = 1373
  1681. Me.選擇_lb.Text = "在總表要帶入的位置連點兩下就可帶入結果"
  1682. Me.選擇_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1683. '
  1684. '鍵盤鎖定1_ch
  1685. '
  1686. Me.鍵盤鎖定1_ch.AutoSize = True
  1687. Me.鍵盤鎖定1_ch.Location = New System.Drawing.Point(7, 16)
  1688. Me.鍵盤鎖定1_ch.Name = "鍵盤鎖定1_ch"
  1689. Me.鍵盤鎖定1_ch.Size = New System.Drawing.Size(194, 20)
  1690. Me.鍵盤鎖定1_ch.TabIndex = 1402
  1691. Me.鍵盤鎖定1_ch.Text = "鍵盤鎖定 (用鍵盤F1可快速切換)"
  1692. Me.鍵盤鎖定1_ch.UseVisualStyleBackColor = True
  1693. '
  1694. '座標_lb
  1695. '
  1696. Me.座標_lb.AutoSize = True
  1697. Me.座標_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1698. Me.座標_lb.ForeColor = System.Drawing.Color.Green
  1699. Me.座標_lb.Location = New System.Drawing.Point(170, 7)
  1700. Me.座標_lb.Name = "座標_lb"
  1701. Me.座標_lb.Size = New System.Drawing.Size(55, 16)
  1702. Me.座標_lb.TabIndex = 1378
  1703. Me.座標_lb.Text = "讀取資料"
  1704. Me.座標_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1705. '
  1706. '結果_tb
  1707. '
  1708. Me.結果_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1709. Me.結果_tb.Location = New System.Drawing.Point(246, 352)
  1710. Me.結果_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1711. Me.結果_tb.Name = "結果_tb"
  1712. Me.結果_tb.Size = New System.Drawing.Size(234, 23)
  1713. Me.結果_tb.TabIndex = 1355
  1714. Me.結果_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1715. Me.結果_tb.Visible = False
  1716. '
  1717. '文字資料輸入1_bt
  1718. '
  1719. Me.文字資料輸入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1720. Me.文字資料輸入1_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1721. Me.文字資料輸入1_bt.Location = New System.Drawing.Point(228, 2)
  1722. Me.文字資料輸入1_bt.Name = "文字資料輸入1_bt"
  1723. Me.文字資料輸入1_bt.Size = New System.Drawing.Size(86, 26)
  1724. Me.文字資料輸入1_bt.TabIndex = 1383
  1725. Me.文字資料輸入1_bt.Text = "文字資料輸入"
  1726. Me.文字資料輸入1_bt.UseVisualStyleBackColor = True
  1727. '
  1728. '計算式_tb
  1729. '
  1730. Me.計算式_tb.Location = New System.Drawing.Point(91, 352)
  1731. Me.計算式_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1732. Me.計算式_tb.Name = "計算式_tb"
  1733. Me.計算式_tb.Size = New System.Drawing.Size(63, 23)
  1734. Me.計算式_tb.TabIndex = 1354
  1735. Me.計算式_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1736. Me.計算式_tb.Visible = False
  1737. '
  1738. 'Label24
  1739. '
  1740. Me.Label24.AutoSize = True
  1741. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1742. Me.Label24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1743. Me.Label24.Location = New System.Drawing.Point(7, 6)
  1744. Me.Label24.Name = "Label24"
  1745. Me.Label24.Size = New System.Drawing.Size(67, 16)
  1746. Me.Label24.TabIndex = 1382
  1747. Me.Label24.Text = "目前選擇項"
  1748. Me.Label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1749. '
  1750. '數值1_tb
  1751. '
  1752. Me.數值1_tb.Location = New System.Drawing.Point(7, 352)
  1753. Me.數值1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1754. Me.數值1_tb.Name = "數值1_tb"
  1755. Me.數值1_tb.Size = New System.Drawing.Size(80, 23)
  1756. Me.數值1_tb.TabIndex = 1353
  1757. Me.數值1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1758. Me.數值1_tb.Visible = False
  1759. '
  1760. '數值2_tb
  1761. '
  1762. Me.數值2_tb.Location = New System.Drawing.Point(160, 352)
  1763. Me.數值2_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1764. Me.數值2_tb.Name = "數值2_tb"
  1765. Me.數值2_tb.Size = New System.Drawing.Size(80, 23)
  1766. Me.數值2_tb.TabIndex = 1352
  1767. Me.數值2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1768. Me.數值2_tb.Visible = False
  1769. '
  1770. '選擇項_tb
  1771. '
  1772. Me.選擇項_tb.Enabled = False
  1773. Me.選擇項_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1774. Me.選擇項_tb.Location = New System.Drawing.Point(75, 3)
  1775. Me.選擇項_tb.Name = "選擇項_tb"
  1776. Me.選擇項_tb.Size = New System.Drawing.Size(35, 23)
  1777. Me.選擇項_tb.TabIndex = 1381
  1778. Me.選擇項_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1779. '
  1780. 'GroupBox2
  1781. '
  1782. Me.GroupBox2.Controls.Add(Me.數量_tb)
  1783. Me.GroupBox2.Controls.Add(Me.Label45)
  1784. Me.GroupBox2.Controls.Add(Me.Label31)
  1785. Me.GroupBox2.Controls.Add(Me.合計項_cb)
  1786. Me.GroupBox2.Controls.Add(Me.Label30)
  1787. Me.GroupBox2.Controls.Add(Me.單位_tb)
  1788. Me.GroupBox2.Controls.Add(Me.備註_tb)
  1789. Me.GroupBox2.Controls.Add(Me.內容_tb)
  1790. Me.GroupBox2.Controls.Add(Me.數字1_ch)
  1791. Me.GroupBox2.Controls.Add(Me.中文小寫1_ch)
  1792. Me.GroupBox2.Controls.Add(Me.中文大寫1_ch)
  1793. Me.GroupBox2.Controls.Add(Me.ITEM1_cb)
  1794. Me.GroupBox2.Controls.Add(Me.Label25)
  1795. Me.GroupBox2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1796. Me.GroupBox2.Location = New System.Drawing.Point(3, 27)
  1797. Me.GroupBox2.Name = "GroupBox2"
  1798. Me.GroupBox2.Size = New System.Drawing.Size(315, 166)
  1799. Me.GroupBox2.TabIndex = 1380
  1800. Me.GroupBox2.TabStop = False
  1801. Me.GroupBox2.Text = "文字輸入"
  1802. '
  1803. '數量_tb
  1804. '
  1805. Me.數量_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1806. Me.數量_tb.Location = New System.Drawing.Point(263, 136)
  1807. Me.數量_tb.Name = "數量_tb"
  1808. Me.數量_tb.Size = New System.Drawing.Size(48, 23)
  1809. Me.數量_tb.TabIndex = 1396
  1810. Me.數量_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1811. '
  1812. 'Label45
  1813. '
  1814. Me.Label45.AutoSize = True
  1815. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1816. Me.Label45.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1817. Me.Label45.Location = New System.Drawing.Point(225, 139)
  1818. Me.Label45.Name = "Label45"
  1819. Me.Label45.Size = New System.Drawing.Size(31, 16)
  1820. Me.Label45.TabIndex = 1397
  1821. Me.Label45.Text = "數量"
  1822. Me.Label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1823. '
  1824. 'Label31
  1825. '
  1826. Me.Label31.AutoSize = True
  1827. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1828. Me.Label31.Location = New System.Drawing.Point(7, 140)
  1829. Me.Label31.Name = "Label31"
  1830. Me.Label31.Size = New System.Drawing.Size(43, 16)
  1831. Me.Label31.TabIndex = 1393
  1832. Me.Label31.Text = "合計項"
  1833. Me.Label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1834. '
  1835. '合計項_cb
  1836. '
  1837. Me.合計項_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1838. Me.合計項_cb.ForeColor = System.Drawing.Color.Blue
  1839. Me.合計項_cb.FormattingEnabled = True
  1840. Me.合計項_cb.Items.AddRange(New Object() {"", "折讓 Discount", "合 計 Total", "管理費 0%", "管理費 1%", "管理費 2%", "管理費 3%", "管理費 4%", "管理費 5%", "管理費 6%", "管理費 7%", "管理費 8%", "管理費 9%", "管理費 10%", "稅金 0% Tax", "稅金 5% Tax", "稅金 10% Tax", "稅金 11% Tax", "總計 Grand Total"})
  1841. Me.合計項_cb.Location = New System.Drawing.Point(52, 136)
  1842. Me.合計項_cb.Name = "合計項_cb"
  1843. Me.合計項_cb.Size = New System.Drawing.Size(171, 24)
  1844. Me.合計項_cb.TabIndex = 1392
  1845. '
  1846. 'Label30
  1847. '
  1848. Me.Label30.AutoSize = True
  1849. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1850. Me.Label30.Location = New System.Drawing.Point(7, 94)
  1851. Me.Label30.Name = "Label30"
  1852. Me.Label30.Size = New System.Drawing.Size(36, 16)
  1853. Me.Label30.TabIndex = 1391
  1854. Me.Label30.Text = "UNIT"
  1855. Me.Label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1856. '
  1857. '單位_tb
  1858. '
  1859. Me.單位_tb.Location = New System.Drawing.Point(7, 111)
  1860. Me.單位_tb.Name = "單位_tb"
  1861. Me.單位_tb.Size = New System.Drawing.Size(78, 23)
  1862. Me.單位_tb.TabIndex = 1390
  1863. Me.單位_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1864. '
  1865. '備註_tb
  1866. '
  1867. Me.備註_tb.Location = New System.Drawing.Point(87, 95)
  1868. Me.備註_tb.Multiline = True
  1869. Me.備註_tb.Name = "備註_tb"
  1870. Me.備註_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1871. Me.備註_tb.Size = New System.Drawing.Size(223, 39)
  1872. Me.備註_tb.TabIndex = 1389
  1873. '
  1874. '內容_tb
  1875. '
  1876. Me.內容_tb.Location = New System.Drawing.Point(6, 40)
  1877. Me.內容_tb.Multiline = True
  1878. Me.內容_tb.Name = "內容_tb"
  1879. Me.內容_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1880. Me.內容_tb.Size = New System.Drawing.Size(305, 52)
  1881. Me.內容_tb.TabIndex = 1388
  1882. '
  1883. '數字1_ch
  1884. '
  1885. Me.數字1_ch.AutoSize = True
  1886. Me.數字1_ch.Location = New System.Drawing.Point(263, 17)
  1887. Me.數字1_ch.Name = "數字1_ch"
  1888. Me.數字1_ch.Size = New System.Drawing.Size(50, 20)
  1889. Me.數字1_ch.TabIndex = 1387
  1890. Me.數字1_ch.Text = "數字"
  1891. Me.數字1_ch.UseVisualStyleBackColor = True
  1892. '
  1893. '中文小寫1_ch
  1894. '
  1895. Me.中文小寫1_ch.AutoSize = True
  1896. Me.中文小寫1_ch.Location = New System.Drawing.Point(182, 17)
  1897. Me.中文小寫1_ch.Name = "中文小寫1_ch"
  1898. Me.中文小寫1_ch.Size = New System.Drawing.Size(74, 20)
  1899. Me.中文小寫1_ch.TabIndex = 1386
  1900. Me.中文小寫1_ch.Text = "中文小寫"
  1901. Me.中文小寫1_ch.UseVisualStyleBackColor = True
  1902. '
  1903. '中文大寫1_ch
  1904. '
  1905. Me.中文大寫1_ch.AutoSize = True
  1906. Me.中文大寫1_ch.Checked = True
  1907. Me.中文大寫1_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1908. Me.中文大寫1_ch.Location = New System.Drawing.Point(101, 17)
  1909. Me.中文大寫1_ch.Name = "中文大寫1_ch"
  1910. Me.中文大寫1_ch.Size = New System.Drawing.Size(74, 20)
  1911. Me.中文大寫1_ch.TabIndex = 1385
  1912. Me.中文大寫1_ch.Text = "中文大寫"
  1913. Me.中文大寫1_ch.UseVisualStyleBackColor = True
  1914. '
  1915. 'ITEM1_cb
  1916. '
  1917. Me.ITEM1_cb.ForeColor = System.Drawing.Color.Blue
  1918. Me.ITEM1_cb.FormattingEnabled = True
  1919. Me.ITEM1_cb.Location = New System.Drawing.Point(44, 15)
  1920. Me.ITEM1_cb.Name = "ITEM1_cb"
  1921. Me.ITEM1_cb.Size = New System.Drawing.Size(51, 24)
  1922. Me.ITEM1_cb.TabIndex = 1384
  1923. '
  1924. 'Label25
  1925. '
  1926. Me.Label25.AutoSize = True
  1927. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1928. Me.Label25.Location = New System.Drawing.Point(7, 19)
  1929. Me.Label25.Name = "Label25"
  1930. Me.Label25.Size = New System.Drawing.Size(36, 16)
  1931. Me.Label25.TabIndex = 1383
  1932. Me.Label25.Text = "ITEM"
  1933. Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1934. '
  1935. 'Label23
  1936. '
  1937. Me.Label23.AutoSize = True
  1938. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1939. Me.Label23.ForeColor = System.Drawing.Color.Green
  1940. Me.Label23.Location = New System.Drawing.Point(111, 7)
  1941. Me.Label23.Name = "Label23"
  1942. Me.Label23.Size = New System.Drawing.Size(64, 16)
  1943. Me.Label23.TabIndex = 1377
  1944. Me.Label23.Text = "目前選擇 : "
  1945. Me.Label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1946. '
  1947. 'Label16
  1948. '
  1949. Me.Label16.AutoSize = True
  1950. Me.Label16.Location = New System.Drawing.Point(5, 7)
  1951. Me.Label16.Name = "Label16"
  1952. Me.Label16.Size = New System.Drawing.Size(55, 16)
  1953. Me.Label16.TabIndex = 1375
  1954. Me.Label16.Text = "總表編輯"
  1955. '
  1956. 'CanceL2_bt
  1957. '
  1958. Me.CanceL2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1959. Me.CanceL2_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  1960. Me.CanceL2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1961. Me.CanceL2_bt.ForeColor = System.Drawing.Color.Black
  1962. Me.CanceL2_bt.Location = New System.Drawing.Point(677, 2)
  1963. Me.CanceL2_bt.Name = "CanceL2_bt"
  1964. Me.CanceL2_bt.Size = New System.Drawing.Size(26, 26)
  1965. Me.CanceL2_bt.TabIndex = 1374
  1966. Me.CanceL2_bt.Text = "X"
  1967. Me.CanceL2_bt.UseVisualStyleBackColor = False
  1968. '
  1969. '空間3
  1970. '
  1971. Me.空間3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1972. Or System.Windows.Forms.AnchorStyles.Left) _
  1973. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1974. Me.空間3.AutoScroll = True
  1975. Me.空間3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1976. Me.空間3.Controls.Add(Me.歸零數_tb)
  1977. Me.空間3.Controls.Add(Me.Label76)
  1978. Me.空間3.Controls.Add(Me.利潤比4_tb)
  1979. Me.空間3.Controls.Add(Me.Label71)
  1980. Me.空間3.Controls.Add(Me.Label70)
  1981. Me.空間3.Controls.Add(Me.Label69)
  1982. Me.空間3.Controls.Add(Me.Label68)
  1983. Me.空間3.Controls.Add(Me.Label67)
  1984. Me.空間3.Controls.Add(Me.Label64)
  1985. Me.空間3.Controls.Add(Me.Label63)
  1986. Me.空間3.Controls.Add(Me.利潤比3_tb)
  1987. Me.空間3.Controls.Add(Me.Label60)
  1988. Me.空間3.Controls.Add(Me.總報價_tb)
  1989. Me.空間3.Controls.Add(Me.總成本_tb)
  1990. Me.空間3.Controls.Add(Me.Label58)
  1991. Me.空間3.Controls.Add(Me.Label59)
  1992. Me.空間3.Controls.Add(Me.利潤比2_tb)
  1993. Me.空間3.Controls.Add(Me.Label57)
  1994. Me.空間3.Controls.Add(Me.利潤比1_tb)
  1995. Me.空間3.Controls.Add(Me.預估利潤_tb)
  1996. Me.空間3.Controls.Add(Me.預估材料總報價_tb)
  1997. Me.空間3.Controls.Add(Me.Panel2)
  1998. Me.空間3.Controls.Add(Me.預估工資總報價_tb)
  1999. Me.空間3.Controls.Add(Me.預估材料總成本_tb)
  2000. Me.空間3.Controls.Add(Me.Label54)
  2001. Me.空間3.Controls.Add(Me.預估工資總成本_tb)
  2002. Me.空間3.Controls.Add(Me.Label55)
  2003. Me.空間3.Controls.Add(Me.Label65)
  2004. Me.空間3.Controls.Add(Me.Label62)
  2005. Me.空間3.Controls.Add(Me.Label66)
  2006. Me.空間3.Controls.Add(Me.Label61)
  2007. Me.空間3.Controls.Add(Me.報價總表_dgv)
  2008. Me.空間3.Controls.Add(Me.彙總存檔_bt)
  2009. Me.空間3.Controls.Add(Me.TabControl3)
  2010. Me.空間3.Location = New System.Drawing.Point(145, 42)
  2011. Me.空間3.Name = "空間3"
  2012. Me.空間3.Size = New System.Drawing.Size(1264, 954)
  2013. Me.空間3.TabIndex = 1353
  2014. '
  2015. '歸零數_tb
  2016. '
  2017. Me.歸零數_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2018. Me.歸零數_tb.Location = New System.Drawing.Point(721, 850)
  2019. Me.歸零數_tb.Name = "歸零數_tb"
  2020. Me.歸零數_tb.Size = New System.Drawing.Size(47, 16)
  2021. Me.歸零數_tb.TabIndex = 1723
  2022. '
  2023. 'Label76
  2024. '
  2025. Me.Label76.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2026. Me.Label76.AutoSize = True
  2027. Me.Label76.ForeColor = System.Drawing.Color.Red
  2028. Me.Label76.Location = New System.Drawing.Point(856, 853)
  2029. Me.Label76.Name = "Label76"
  2030. Me.Label76.Size = New System.Drawing.Size(285, 16)
  2031. Me.Label76.TabIndex = 1677
  2032. Me.Label76.Text = "請注意 : 表中的 * 與 @ 為系統供自計算所需請勿刪除"
  2033. '
  2034. '利潤比4_tb
  2035. '
  2036. Me.利潤比4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2037. Me.利潤比4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2038. Me.利潤比4_tb.Location = New System.Drawing.Point(1205, 934)
  2039. Me.利潤比4_tb.Name = "利潤比4_tb"
  2040. Me.利潤比4_tb.Size = New System.Drawing.Size(47, 16)
  2041. Me.利潤比4_tb.TabIndex = 1702
  2042. Me.利潤比4_tb.Text = "100%"
  2043. Me.利潤比4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2044. '
  2045. 'Label71
  2046. '
  2047. Me.Label71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2048. Me.Label71.AutoSize = True
  2049. Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2050. Me.Label71.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2051. Me.Label71.Location = New System.Drawing.Point(1101, 935)
  2052. Me.Label71.Name = "Label71"
  2053. Me.Label71.Size = New System.Drawing.Size(105, 16)
  2054. Me.Label71.TabIndex = 1703
  2055. Me.Label71.Text = "利 潤 比 (含折讓) :"
  2056. Me.Label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2057. '
  2058. 'Label70
  2059. '
  2060. Me.Label70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2061. Me.Label70.AutoSize = True
  2062. Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2063. Me.Label70.Location = New System.Drawing.Point(917, 934)
  2064. Me.Label70.Name = "Label70"
  2065. Me.Label70.Size = New System.Drawing.Size(26, 16)
  2066. Me.Label70.TabIndex = 1701
  2067. Me.Label70.Text = ") = "
  2068. Me.Label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2069. '
  2070. 'Label69
  2071. '
  2072. Me.Label69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2073. Me.Label69.AutoSize = True
  2074. Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2075. Me.Label69.ForeColor = System.Drawing.Color.Red
  2076. Me.Label69.Location = New System.Drawing.Point(856, 935)
  2077. Me.Label69.Name = "Label69"
  2078. Me.Label69.Size = New System.Drawing.Size(55, 16)
  2079. Me.Label69.TabIndex = 1700
  2080. Me.Label69.Text = "折讓金額"
  2081. Me.Label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2082. '
  2083. 'Label68
  2084. '
  2085. Me.Label68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2086. Me.Label68.AutoSize = True
  2087. Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2088. Me.Label68.Location = New System.Drawing.Point(838, 933)
  2089. Me.Label68.Name = "Label68"
  2090. Me.Label68.Size = New System.Drawing.Size(12, 16)
  2091. Me.Label68.TabIndex = 1699
  2092. Me.Label68.Text = "-"
  2093. Me.Label68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2094. '
  2095. 'Label67
  2096. '
  2097. Me.Label67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2098. Me.Label67.AutoSize = True
  2099. Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2100. Me.Label67.ForeColor = System.Drawing.Color.Green
  2101. Me.Label67.Location = New System.Drawing.Point(718, 934)
  2102. Me.Label67.Name = "Label67"
  2103. Me.Label67.Size = New System.Drawing.Size(43, 16)
  2104. Me.Label67.TabIndex = 1698
  2105. Me.Label67.Text = "總報價"
  2106. Me.Label67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2107. '
  2108. 'Label64
  2109. '
  2110. Me.Label64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2111. Me.Label64.AutoSize = True
  2112. Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2113. Me.Label64.Location = New System.Drawing.Point(763, 933)
  2114. Me.Label64.Name = "Label64"
  2115. Me.Label64.Size = New System.Drawing.Size(19, 16)
  2116. Me.Label64.TabIndex = 1697
  2117. Me.Label64.Text = "- ("
  2118. Me.Label64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2119. '
  2120. 'Label63
  2121. '
  2122. Me.Label63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2123. Me.Label63.AutoSize = True
  2124. Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2125. Me.Label63.ForeColor = System.Drawing.Color.Red
  2126. Me.Label63.Location = New System.Drawing.Point(786, 934)
  2127. Me.Label63.Name = "Label63"
  2128. Me.Label63.Size = New System.Drawing.Size(46, 16)
  2129. Me.Label63.TabIndex = 1696
  2130. Me.Label63.Text = "總成本 "
  2131. Me.Label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2132. '
  2133. '利潤比3_tb
  2134. '
  2135. Me.利潤比3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2136. Me.利潤比3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2137. Me.利潤比3_tb.Location = New System.Drawing.Point(1205, 915)
  2138. Me.利潤比3_tb.Name = "利潤比3_tb"
  2139. Me.利潤比3_tb.Size = New System.Drawing.Size(47, 16)
  2140. Me.利潤比3_tb.TabIndex = 1694
  2141. Me.利潤比3_tb.Text = "100%"
  2142. Me.利潤比3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2143. '
  2144. 'Label60
  2145. '
  2146. Me.Label60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2147. Me.Label60.AutoSize = True
  2148. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2149. Me.Label60.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2150. Me.Label60.Location = New System.Drawing.Point(1101, 916)
  2151. Me.Label60.Name = "Label60"
  2152. Me.Label60.Size = New System.Drawing.Size(105, 16)
  2153. Me.Label60.TabIndex = 1695
  2154. Me.Label60.Text = "利潤比(不含折讓) :"
  2155. Me.Label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2156. '
  2157. '總報價_tb
  2158. '
  2159. Me.總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2160. Me.總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2161. Me.總報價_tb.Location = New System.Drawing.Point(1006, 915)
  2162. Me.總報價_tb.Name = "總報價_tb"
  2163. Me.總報價_tb.Size = New System.Drawing.Size(90, 16)
  2164. Me.總報價_tb.TabIndex = 1691
  2165. Me.總報價_tb.Text = "99,999,999,999"
  2166. Me.總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2167. '
  2168. '總成本_tb
  2169. '
  2170. Me.總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2171. Me.總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2172. Me.總成本_tb.Location = New System.Drawing.Point(812, 915)
  2173. Me.總成本_tb.Name = "總成本_tb"
  2174. Me.總成本_tb.Size = New System.Drawing.Size(90, 16)
  2175. Me.總成本_tb.TabIndex = 1690
  2176. Me.總成本_tb.Text = "99,999,999,999"
  2177. Me.總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2178. '
  2179. 'Label58
  2180. '
  2181. Me.Label58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2182. Me.Label58.AutoSize = True
  2183. Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2184. Me.Label58.ForeColor = System.Drawing.Color.Red
  2185. Me.Label58.Location = New System.Drawing.Point(716, 914)
  2186. Me.Label58.Name = "Label58"
  2187. Me.Label58.Size = New System.Drawing.Size(97, 16)
  2188. Me.Label58.TabIndex = 1692
  2189. Me.Label58.Text = "總 成 本 :"
  2190. Me.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2191. '
  2192. 'Label59
  2193. '
  2194. Me.Label59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2195. Me.Label59.AutoSize = True
  2196. Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2197. Me.Label59.ForeColor = System.Drawing.Color.Green
  2198. Me.Label59.Location = New System.Drawing.Point(911, 914)
  2199. Me.Label59.Name = "Label59"
  2200. Me.Label59.Size = New System.Drawing.Size(97, 16)
  2201. Me.Label59.TabIndex = 1693
  2202. Me.Label59.Text = "總 報 價 :"
  2203. Me.Label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2204. '
  2205. '利潤比2_tb
  2206. '
  2207. Me.利潤比2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2208. Me.利潤比2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2209. Me.利潤比2_tb.Location = New System.Drawing.Point(1206, 895)
  2210. Me.利潤比2_tb.Name = "利潤比2_tb"
  2211. Me.利潤比2_tb.Size = New System.Drawing.Size(47, 16)
  2212. Me.利潤比2_tb.TabIndex = 1688
  2213. Me.利潤比2_tb.Text = "100%"
  2214. Me.利潤比2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2215. '
  2216. 'Label57
  2217. '
  2218. Me.Label57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2219. Me.Label57.AutoSize = True
  2220. Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2221. Me.Label57.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2222. Me.Label57.Location = New System.Drawing.Point(1102, 896)
  2223. Me.Label57.Name = "Label57"
  2224. Me.Label57.Size = New System.Drawing.Size(103, 16)
  2225. Me.Label57.TabIndex = 1689
  2226. Me.Label57.Text = "利 潤 比 :"
  2227. Me.Label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2228. '
  2229. '利潤比1_tb
  2230. '
  2231. Me.利潤比1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2232. Me.利潤比1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2233. Me.利潤比1_tb.Location = New System.Drawing.Point(1205, 876)
  2234. Me.利潤比1_tb.Name = "利潤比1_tb"
  2235. Me.利潤比1_tb.Size = New System.Drawing.Size(47, 16)
  2236. Me.利潤比1_tb.TabIndex = 1412
  2237. Me.利潤比1_tb.Text = "100%"
  2238. Me.利潤比1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2239. '
  2240. '預估利潤_tb
  2241. '
  2242. Me.預估利潤_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2243. Me.預估利潤_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2244. Me.預估利潤_tb.Location = New System.Drawing.Point(1006, 935)
  2245. Me.預估利潤_tb.Name = "預估利潤_tb"
  2246. Me.預估利潤_tb.Size = New System.Drawing.Size(90, 16)
  2247. Me.預估利潤_tb.TabIndex = 1411
  2248. Me.預估利潤_tb.Text = "99,999,999,999"
  2249. Me.預估利潤_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2250. '
  2251. '預估材料總報價_tb
  2252. '
  2253. Me.預估材料總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2254. Me.預估材料總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2255. Me.預估材料總報價_tb.Location = New System.Drawing.Point(1006, 895)
  2256. Me.預估材料總報價_tb.Name = "預估材料總報價_tb"
  2257. Me.預估材料總報價_tb.Size = New System.Drawing.Size(90, 16)
  2258. Me.預估材料總報價_tb.TabIndex = 1410
  2259. Me.預估材料總報價_tb.Text = "99,999,999,999"
  2260. Me.預估材料總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2261. '
  2262. 'Panel2
  2263. '
  2264. Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2265. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2266. Me.Panel2.AutoScroll = True
  2267. Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2268. Me.Panel2.Controls.Add(Me.Label42)
  2269. Me.Panel2.Controls.Add(Me.Label379)
  2270. Me.Panel2.Controls.Add(Me.工程期_ch)
  2271. Me.Panel2.Controls.Add(Me.Label19)
  2272. Me.Panel2.Controls.Add(Me.Label15)
  2273. Me.Panel2.Controls.Add(Me.最末頁_cb)
  2274. Me.Panel2.Controls.Add(Me.Label20)
  2275. Me.Panel2.Controls.Add(Me.合約編號3_tb)
  2276. Me.Panel2.Controls.Add(Me.合約編號2_tb)
  2277. Me.Panel2.Controls.Add(Me.明細選項_bt)
  2278. Me.Panel2.Controls.Add(Me.合約編號1_tb)
  2279. Me.Panel2.Controls.Add(Me.刪除資料_bt)
  2280. Me.Panel2.Controls.Add(Me.合約編號_cb)
  2281. Me.Panel2.Controls.Add(Me.新增資料_bt)
  2282. Me.Panel2.Controls.Add(Me.自動讀取_bt)
  2283. Me.Panel2.Controls.Add(Me.Label397)
  2284. Me.Panel2.Controls.Add(Me.手動輸入_bt)
  2285. Me.Panel2.Controls.Add(Me.金額6_und)
  2286. Me.Panel2.Controls.Add(Me.Label5)
  2287. Me.Panel2.Controls.Add(Me.工程款6_nud)
  2288. Me.Panel2.Controls.Add(Me.最高扣款_bt)
  2289. Me.Panel2.Controls.Add(Me.合約種類_tb)
  2290. Me.Panel2.Controls.Add(Me.NUD2)
  2291. Me.Panel2.Controls.Add(Me.NUD1)
  2292. Me.Panel2.Controls.Add(Me.Label372)
  2293. Me.Panel2.Controls.Add(Me.Label394)
  2294. Me.Panel2.Controls.Add(Me.客戶名稱_tb)
  2295. Me.Panel2.Controls.Add(Me.Label396)
  2296. Me.Panel2.Controls.Add(Me.Label373)
  2297. Me.Panel2.Controls.Add(Me.NUD3)
  2298. Me.Panel2.Controls.Add(Me.Label374)
  2299. Me.Panel2.Controls.Add(Me.合約種類_cb)
  2300. Me.Panel2.Controls.Add(Me.Label375)
  2301. Me.Panel2.Controls.Add(Me.逾期_bt)
  2302. Me.Panel2.Controls.Add(Me.工程名稱_中_tb)
  2303. Me.Panel2.Controls.Add(Me.Label395)
  2304. Me.Panel2.Controls.Add(Me.客戶地址_tb)
  2305. Me.Panel2.Controls.Add(Me.Label393)
  2306. Me.Panel2.Controls.Add(Me.金額5_und)
  2307. Me.Panel2.Controls.Add(Me.Label380)
  2308. Me.Panel2.Controls.Add(Me.工程地點_tb)
  2309. Me.Panel2.Controls.Add(Me.Label406)
  2310. Me.Panel2.Controls.Add(Me.金額4_und)
  2311. Me.Panel2.Controls.Add(Me.逾期_英_bt)
  2312. Me.Panel2.Controls.Add(Me.Label376)
  2313. Me.Panel2.Controls.Add(Me.工期_nud)
  2314. Me.Panel2.Controls.Add(Me.金額3_und)
  2315. Me.Panel2.Controls.Add(Me.最高扣款_英_bt)
  2316. Me.Panel2.Controls.Add(Me.Label414)
  2317. Me.Panel2.Controls.Add(Me.Label391)
  2318. Me.Panel2.Controls.Add(Me.金額2_und)
  2319. Me.Panel2.Controls.Add(Me.Label403)
  2320. Me.Panel2.Controls.Add(Me.選擇公司_cb)
  2321. Me.Panel2.Controls.Add(Me.負責人_B_cb)
  2322. Me.Panel2.Controls.Add(Me.金額1_und)
  2323. Me.Panel2.Controls.Add(Me.Label407)
  2324. Me.Panel2.Controls.Add(Me.立約日期_dtp)
  2325. Me.Panel2.Controls.Add(Me.Label410)
  2326. Me.Panel2.Controls.Add(Me.工程款5_nud)
  2327. Me.Panel2.Controls.Add(Me.Label408)
  2328. Me.Panel2.Controls.Add(Me.Label377)
  2329. Me.Panel2.Controls.Add(Me.Label405)
  2330. Me.Panel2.Controls.Add(Me.工程款4_nud)
  2331. Me.Panel2.Controls.Add(Me.減價_bt)
  2332. Me.Panel2.Controls.Add(Me.頁數_bt)
  2333. Me.Panel2.Controls.Add(Me.Label409)
  2334. Me.Panel2.Controls.Add(Me.Label399)
  2335. Me.Panel2.Controls.Add(Me.負責人_A_cb)
  2336. Me.Panel2.Controls.Add(Me.我司地址_tb)
  2337. Me.Panel2.Controls.Add(Me.工程名稱_英_tb)
  2338. Me.Panel2.Controls.Add(Me.工程款3_nud)
  2339. Me.Panel2.Controls.Add(Me.Label404)
  2340. Me.Panel2.Controls.Add(Me.Label413)
  2341. Me.Panel2.Controls.Add(Me.Label412)
  2342. Me.Panel2.Controls.Add(Me.Label400)
  2343. Me.Panel2.Controls.Add(Me.工程款1_nud)
  2344. Me.Panel2.Controls.Add(Me.Label378)
  2345. Me.Panel2.Controls.Add(Me.廠區_中文_tb)
  2346. Me.Panel2.Controls.Add(Me.工程款2_nud)
  2347. Me.Panel2.Controls.Add(Me.Label28)
  2348. Me.Panel2.Controls.Add(Me.Label382)
  2349. Me.Panel2.Controls.Add(Me.稅額顯示_lb)
  2350. Me.Panel2.Controls.Add(Me.CH2)
  2351. Me.Panel2.Controls.Add(Me.CH1)
  2352. Me.Panel2.Controls.Add(Me.Label402)
  2353. Me.Panel2.Controls.Add(Me.Label392)
  2354. Me.Panel2.Controls.Add(Me.Label381)
  2355. Me.Panel2.Controls.Add(Me.Label386)
  2356. Me.Panel2.Controls.Add(Me.Label21)
  2357. Me.Panel2.Controls.Add(Me.TabControl2)
  2358. Me.Panel2.Controls.Add(Me.Label388)
  2359. Me.Panel2.Controls.Add(Me.Label387)
  2360. Me.Panel2.Controls.Add(Me.Label390)
  2361. Me.Panel2.Controls.Add(Me.Label389)
  2362. Me.Panel2.Controls.Add(Me.Label411)
  2363. Me.Panel2.Controls.Add(Me.Label29)
  2364. Me.Panel2.Controls.Add(Me.Label35)
  2365. Me.Panel2.Controls.Add(Me.Label34)
  2366. Me.Panel2.Location = New System.Drawing.Point(-1, -1)
  2367. Me.Panel2.Name = "Panel2"
  2368. Me.Panel2.Size = New System.Drawing.Size(713, 954)
  2369. Me.Panel2.TabIndex = 1408
  2370. '
  2371. 'Label42
  2372. '
  2373. Me.Label42.AutoSize = True
  2374. Me.Label42.ForeColor = System.Drawing.Color.Green
  2375. Me.Label42.Location = New System.Drawing.Point(6, 772)
  2376. Me.Label42.Name = "Label42"
  2377. Me.Label42.Size = New System.Drawing.Size(478, 16)
  2378. Me.Label42.TabIndex = 1406
  2379. Me.Label42.Text = "如遇有拆除困難,經A方同意在不影響結構安全下應由B方出具保證切結書,得減價收受。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2380. '
  2381. 'Label379
  2382. '
  2383. Me.Label379.AutoSize = True
  2384. Me.Label379.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2385. Me.Label379.Location = New System.Drawing.Point(-1, 3)
  2386. Me.Label379.Name = "Label379"
  2387. Me.Label379.Size = New System.Drawing.Size(39, 38)
  2388. Me.Label379.TabIndex = 1037
  2389. Me.Label379.Text = "合約" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "編號"
  2390. Me.Label379.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2391. '
  2392. '工程期_ch
  2393. '
  2394. Me.工程期_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2395. Me.工程期_ch.ForeColor = System.Drawing.Color.Blue
  2396. Me.工程期_ch.FormattingEnabled = True
  2397. Me.工程期_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  2398. Me.工程期_ch.Location = New System.Drawing.Point(257, 17)
  2399. Me.工程期_ch.Name = "工程期_ch"
  2400. Me.工程期_ch.Size = New System.Drawing.Size(74, 24)
  2401. Me.工程期_ch.TabIndex = 1404
  2402. '
  2403. 'Label19
  2404. '
  2405. Me.Label19.AutoSize = True
  2406. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2407. Me.Label19.Location = New System.Drawing.Point(449, 475)
  2408. Me.Label19.Name = "Label19"
  2409. Me.Label19.Size = New System.Drawing.Size(235, 16)
  2410. Me.Label19.TabIndex = 1147
  2411. Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
  2412. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2413. '
  2414. 'Label15
  2415. '
  2416. Me.Label15.AutoSize = True
  2417. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2418. Me.Label15.Location = New System.Drawing.Point(333, 2)
  2419. Me.Label15.Name = "Label15"
  2420. Me.Label15.Size = New System.Drawing.Size(302, 16)
  2421. Me.Label15.TabIndex = 1403
  2422. Me.Label15.Text = "立約日期的格式為YYMMDD (年兩位,月兩位,日兩位)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2423. Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2424. '
  2425. '最末頁_cb
  2426. '
  2427. Me.最末頁_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2428. Me.最末頁_cb.ForeColor = System.Drawing.Color.Blue
  2429. Me.最末頁_cb.FormattingEnabled = True
  2430. Me.最末頁_cb.Items.AddRange(New Object() {"16", "17", "18", "19", "20"})
  2431. Me.最末頁_cb.Location = New System.Drawing.Point(604, 18)
  2432. Me.最末頁_cb.Name = "最末頁_cb"
  2433. Me.最末頁_cb.Size = New System.Drawing.Size(78, 24)
  2434. Me.最末頁_cb.TabIndex = 1352
  2435. '
  2436. 'Label20
  2437. '
  2438. Me.Label20.AutoSize = True
  2439. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2440. Me.Label20.Location = New System.Drawing.Point(523, 22)
  2441. Me.Label20.Name = "Label20"
  2442. Me.Label20.Size = New System.Drawing.Size(79, 16)
  2443. Me.Label20.TabIndex = 1351
  2444. Me.Label20.Text = "設定最末頁為"
  2445. Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2446. '
  2447. '合約編號3_tb
  2448. '
  2449. Me.合約編號3_tb.Location = New System.Drawing.Point(220, 18)
  2450. Me.合約編號3_tb.Name = "合約編號3_tb"
  2451. Me.合約編號3_tb.Size = New System.Drawing.Size(35, 23)
  2452. Me.合約編號3_tb.TabIndex = 1041
  2453. '
  2454. '合約編號2_tb
  2455. '
  2456. Me.合約編號2_tb.Location = New System.Drawing.Point(154, 18)
  2457. Me.合約編號2_tb.MaxLength = 6
  2458. Me.合約編號2_tb.Name = "合約編號2_tb"
  2459. Me.合約編號2_tb.Size = New System.Drawing.Size(65, 23)
  2460. Me.合約編號2_tb.TabIndex = 1040
  2461. '
  2462. '明細選項_bt
  2463. '
  2464. Me.明細選項_bt.Enabled = False
  2465. Me.明細選項_bt.Location = New System.Drawing.Point(254, 469)
  2466. Me.明細選項_bt.Name = "明細選項_bt"
  2467. Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
  2468. Me.明細選項_bt.TabIndex = 1145
  2469. '
  2470. '合約編號1_tb
  2471. '
  2472. Me.合約編號1_tb.Location = New System.Drawing.Point(103, 18)
  2473. Me.合約編號1_tb.Name = "合約編號1_tb"
  2474. Me.合約編號1_tb.Size = New System.Drawing.Size(50, 23)
  2475. Me.合約編號1_tb.TabIndex = 1039
  2476. '
  2477. '刪除資料_bt
  2478. '
  2479. Me.刪除資料_bt.ForeColor = System.Drawing.Color.Red
  2480. Me.刪除資料_bt.Location = New System.Drawing.Point(375, 467)
  2481. Me.刪除資料_bt.Name = "刪除資料_bt"
  2482. Me.刪除資料_bt.Size = New System.Drawing.Size(75, 26)
  2483. Me.刪除資料_bt.TabIndex = 1144
  2484. Me.刪除資料_bt.Text = "刪除資料"
  2485. Me.刪除資料_bt.UseVisualStyleBackColor = True
  2486. '
  2487. '合約編號_cb
  2488. '
  2489. Me.合約編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2490. Me.合約編號_cb.ForeColor = System.Drawing.Color.Blue
  2491. Me.合約編號_cb.FormattingEnabled = True
  2492. Me.合約編號_cb.Items.AddRange(New Object() {"GCM", "ICS"})
  2493. Me.合約編號_cb.Location = New System.Drawing.Point(39, 17)
  2494. Me.合約編號_cb.Name = "合約編號_cb"
  2495. Me.合約編號_cb.Size = New System.Drawing.Size(62, 24)
  2496. Me.合約編號_cb.TabIndex = 1038
  2497. '
  2498. '新增資料_bt
  2499. '
  2500. Me.新增資料_bt.ForeColor = System.Drawing.Color.Blue
  2501. Me.新增資料_bt.Location = New System.Drawing.Point(300, 467)
  2502. Me.新增資料_bt.Name = "新增資料_bt"
  2503. Me.新增資料_bt.Size = New System.Drawing.Size(75, 26)
  2504. Me.新增資料_bt.TabIndex = 1143
  2505. Me.新增資料_bt.Text = "新增資料"
  2506. Me.新增資料_bt.UseVisualStyleBackColor = True
  2507. '
  2508. '自動讀取_bt
  2509. '
  2510. Me.自動讀取_bt.Location = New System.Drawing.Point(333, 18)
  2511. Me.自動讀取_bt.Name = "自動讀取_bt"
  2512. Me.自動讀取_bt.Size = New System.Drawing.Size(81, 23)
  2513. Me.自動讀取_bt.TabIndex = 1042
  2514. Me.自動讀取_bt.Text = "自動讀取"
  2515. Me.自動讀取_bt.UseVisualStyleBackColor = True
  2516. '
  2517. 'Label397
  2518. '
  2519. Me.Label397.AutoSize = True
  2520. Me.Label397.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2521. Me.Label397.Location = New System.Drawing.Point(3, 45)
  2522. Me.Label397.Name = "Label397"
  2523. Me.Label397.Size = New System.Drawing.Size(74, 21)
  2524. Me.Label397.TabIndex = 1114
  2525. Me.Label397.Text = "工程合約"
  2526. Me.Label397.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2527. '
  2528. '手動輸入_bt
  2529. '
  2530. Me.手動輸入_bt.Location = New System.Drawing.Point(414, 18)
  2531. Me.手動輸入_bt.Name = "手動輸入_bt"
  2532. Me.手動輸入_bt.Size = New System.Drawing.Size(81, 23)
  2533. Me.手動輸入_bt.TabIndex = 1043
  2534. Me.手動輸入_bt.Text = "手動輸入"
  2535. Me.手動輸入_bt.UseVisualStyleBackColor = True
  2536. '
  2537. '金額6_und
  2538. '
  2539. Me.金額6_und.Enabled = False
  2540. Me.金額6_und.Location = New System.Drawing.Point(577, 440)
  2541. Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2542. Me.金額6_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2543. Me.金額6_und.Name = "金額6_und"
  2544. Me.金額6_und.Size = New System.Drawing.Size(105, 23)
  2545. Me.金額6_und.TabIndex = 1140
  2546. Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2547. Me.金額6_und.ThousandsSeparator = True
  2548. '
  2549. 'Label5
  2550. '
  2551. Me.Label5.AutoSize = True
  2552. Me.Label5.Location = New System.Drawing.Point(-2, 30)
  2553. Me.Label5.Name = "Label5"
  2554. Me.Label5.Size = New System.Drawing.Size(687, 16)
  2555. Me.Label5.TabIndex = 1151
  2556. Me.Label5.Text = "_________________________________________________________________________________" &
  2557. "_______________________________________________________"
  2558. '
  2559. '工程款6_nud
  2560. '
  2561. Me.工程款6_nud.Enabled = False
  2562. Me.工程款6_nud.Location = New System.Drawing.Point(536, 440)
  2563. Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
  2564. Me.工程款6_nud.Name = "工程款6_nud"
  2565. Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
  2566. Me.工程款6_nud.TabIndex = 1139
  2567. Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2568. Me.工程款6_nud.ThousandsSeparator = True
  2569. Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
  2570. '
  2571. '最高扣款_bt
  2572. '
  2573. Me.最高扣款_bt.Location = New System.Drawing.Point(536, 676)
  2574. Me.最高扣款_bt.Name = "最高扣款_bt"
  2575. Me.最高扣款_bt.Size = New System.Drawing.Size(147, 23)
  2576. Me.最高扣款_bt.TabIndex = 1109
  2577. Me.最高扣款_bt.Text = "5% (百分之五)"
  2578. Me.最高扣款_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2579. '
  2580. '合約種類_tb
  2581. '
  2582. Me.合約種類_tb.Location = New System.Drawing.Point(190, 68)
  2583. Me.合約種類_tb.Name = "合約種類_tb"
  2584. Me.合約種類_tb.Size = New System.Drawing.Size(494, 23)
  2585. Me.合約種類_tb.TabIndex = 1081
  2586. Me.合約種類_tb.Text = "MECHANICAL ELECTRICAL CONSTRUCTION CONTRACT"
  2587. '
  2588. 'NUD2
  2589. '
  2590. Me.NUD2.Enabled = False
  2591. Me.NUD2.Location = New System.Drawing.Point(359, 366)
  2592. Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2593. Me.NUD2.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2594. Me.NUD2.Name = "NUD2"
  2595. Me.NUD2.Size = New System.Drawing.Size(105, 23)
  2596. Me.NUD2.TabIndex = 1086
  2597. Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2598. Me.NUD2.ThousandsSeparator = True
  2599. '
  2600. 'NUD1
  2601. '
  2602. Me.NUD1.Enabled = False
  2603. Me.NUD1.Location = New System.Drawing.Point(132, 366)
  2604. Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2605. Me.NUD1.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2606. Me.NUD1.Name = "NUD1"
  2607. Me.NUD1.Size = New System.Drawing.Size(105, 23)
  2608. Me.NUD1.TabIndex = 1085
  2609. Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2610. Me.NUD1.ThousandsSeparator = True
  2611. '
  2612. 'Label372
  2613. '
  2614. Me.Label372.AutoSize = True
  2615. Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2616. Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2617. Me.Label372.Location = New System.Drawing.Point(1, 121)
  2618. Me.Label372.Name = "Label372"
  2619. Me.Label372.Size = New System.Drawing.Size(55, 16)
  2620. Me.Label372.TabIndex = 1065
  2621. Me.Label372.Text = "客戶名稱"
  2622. Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2623. '
  2624. 'Label394
  2625. '
  2626. Me.Label394.AutoSize = True
  2627. Me.Label394.ForeColor = System.Drawing.Color.Green
  2628. Me.Label394.Location = New System.Drawing.Point(450, 679)
  2629. Me.Label394.Name = "Label394"
  2630. Me.Label394.Size = New System.Drawing.Size(79, 16)
  2631. Me.Label394.TabIndex = 1108
  2632. Me.Label394.Text = ",最高扣罰至"
  2633. '
  2634. '客戶名稱_tb
  2635. '
  2636. Me.客戶名稱_tb.FormattingEnabled = True
  2637. Me.客戶名稱_tb.Location = New System.Drawing.Point(58, 118)
  2638. Me.客戶名稱_tb.Name = "客戶名稱_tb"
  2639. Me.客戶名稱_tb.Size = New System.Drawing.Size(369, 24)
  2640. Me.客戶名稱_tb.TabIndex = 1066
  2641. Me.客戶名稱_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  2642. '
  2643. 'Label396
  2644. '
  2645. Me.Label396.AutoSize = True
  2646. Me.Label396.ForeColor = System.Drawing.Color.Green
  2647. Me.Label396.Location = New System.Drawing.Point(4, 704)
  2648. Me.Label396.Name = "Label396"
  2649. Me.Label396.Size = New System.Drawing.Size(233, 16)
  2650. Me.Label396.TabIndex = 1110
  2651. Me.Label396.Text = "The penalty of the delay of the project is"
  2652. '
  2653. 'Label373
  2654. '
  2655. Me.Label373.AutoSize = True
  2656. Me.Label373.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2657. Me.Label373.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2658. Me.Label373.Location = New System.Drawing.Point(1, 146)
  2659. Me.Label373.Name = "Label373"
  2660. Me.Label373.Size = New System.Drawing.Size(55, 16)
  2661. Me.Label373.TabIndex = 1067
  2662. Me.Label373.Text = "工程地點"
  2663. Me.Label373.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2664. '
  2665. 'NUD3
  2666. '
  2667. Me.NUD3.Location = New System.Drawing.Point(578, 366)
  2668. Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2669. Me.NUD3.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2670. Me.NUD3.Name = "NUD3"
  2671. Me.NUD3.Size = New System.Drawing.Size(105, 23)
  2672. Me.NUD3.TabIndex = 1087
  2673. Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2674. Me.NUD3.ThousandsSeparator = True
  2675. '
  2676. 'Label374
  2677. '
  2678. Me.Label374.AutoSize = True
  2679. Me.Label374.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2680. Me.Label374.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2681. Me.Label374.Location = New System.Drawing.Point(1, 186)
  2682. Me.Label374.Name = "Label374"
  2683. Me.Label374.Size = New System.Drawing.Size(43, 16)
  2684. Me.Label374.TabIndex = 1068
  2685. Me.Label374.Text = "地 址"
  2686. Me.Label374.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2687. '
  2688. '合約種類_cb
  2689. '
  2690. Me.合約種類_cb.ForeColor = System.Drawing.Color.Black
  2691. Me.合約種類_cb.FormattingEnabled = True
  2692. Me.合約種類_cb.Items.AddRange(New Object() {"HX", "PGS"})
  2693. Me.合約種類_cb.Location = New System.Drawing.Point(58, 67)
  2694. Me.合約種類_cb.Name = "合約種類_cb"
  2695. Me.合約種類_cb.Size = New System.Drawing.Size(126, 24)
  2696. Me.合約種類_cb.TabIndex = 1080
  2697. Me.合約種類_cb.Text = "機電施工合約"
  2698. '
  2699. 'Label375
  2700. '
  2701. Me.Label375.AutoSize = True
  2702. Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2703. Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2704. Me.Label375.Location = New System.Drawing.Point(1, 228)
  2705. Me.Label375.Name = "Label375"
  2706. Me.Label375.Size = New System.Drawing.Size(87, 16)
  2707. Me.Label375.TabIndex = 1069
  2708. Me.Label375.Text = "工程名稱(中文)"
  2709. Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2710. '
  2711. '逾期_bt
  2712. '
  2713. Me.逾期_bt.Location = New System.Drawing.Point(320, 675)
  2714. Me.逾期_bt.Name = "逾期_bt"
  2715. Me.逾期_bt.Size = New System.Drawing.Size(126, 23)
  2716. Me.逾期_bt.TabIndex = 1107
  2717. Me.逾期_bt.Text = "0.0005% (萬分之五)"
  2718. Me.逾期_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2719. '
  2720. '工程名稱_中_tb
  2721. '
  2722. Me.工程名稱_中_tb.Location = New System.Drawing.Point(95, 225)
  2723. Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
  2724. Me.工程名稱_中_tb.Size = New System.Drawing.Size(588, 23)
  2725. Me.工程名稱_中_tb.TabIndex = 1070
  2726. Me.工程名稱_中_tb.Text = "JCS #B3分站高壓電力工程"
  2727. '
  2728. 'Label395
  2729. '
  2730. Me.Label395.AutoSize = True
  2731. Me.Label395.ForeColor = System.Drawing.Color.Green
  2732. Me.Label395.Location = New System.Drawing.Point(4, 729)
  2733. Me.Label395.Name = "Label395"
  2734. Me.Label395.Size = New System.Drawing.Size(358, 16)
  2735. Me.Label395.TabIndex = 1111
  2736. Me.Label395.Text = "per day from total contract price, the maximum penalty is until " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2737. '
  2738. '客戶地址_tb
  2739. '
  2740. Me.客戶地址_tb.Location = New System.Drawing.Point(58, 184)
  2741. Me.客戶地址_tb.Multiline = True
  2742. Me.客戶地址_tb.Name = "客戶地址_tb"
  2743. Me.客戶地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2744. Me.客戶地址_tb.Size = New System.Drawing.Size(625, 40)
  2745. Me.客戶地址_tb.TabIndex = 1071
  2746. Me.客戶地址_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL, KAB, MAJALENGKA JAWA BARAT, INDONESIA JAWA " &
  2747. "BARAT - 45456"
  2748. '
  2749. 'Label393
  2750. '
  2751. Me.Label393.AutoSize = True
  2752. Me.Label393.ForeColor = System.Drawing.Color.Green
  2753. Me.Label393.Location = New System.Drawing.Point(138, 679)
  2754. Me.Label393.Name = "Label393"
  2755. Me.Label393.Size = New System.Drawing.Size(175, 16)
  2756. Me.Label393.TabIndex = 1106
  2757. Me.Label393.Text = "總工期逾期以每日扣罰工程總價"
  2758. '
  2759. '金額5_und
  2760. '
  2761. Me.金額5_und.Enabled = False
  2762. Me.金額5_und.Location = New System.Drawing.Point(577, 416)
  2763. Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2764. Me.金額5_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2765. Me.金額5_und.Name = "金額5_und"
  2766. Me.金額5_und.Size = New System.Drawing.Size(105, 23)
  2767. Me.金額5_und.TabIndex = 1102
  2768. Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2769. Me.金額5_und.ThousandsSeparator = True
  2770. '
  2771. 'Label380
  2772. '
  2773. Me.Label380.AutoSize = True
  2774. Me.Label380.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2775. Me.Label380.Location = New System.Drawing.Point(0, 70)
  2776. Me.Label380.Name = "Label380"
  2777. Me.Label380.Size = New System.Drawing.Size(55, 16)
  2778. Me.Label380.TabIndex = 1079
  2779. Me.Label380.Text = "合約種類"
  2780. Me.Label380.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2781. '
  2782. '工程地點_tb
  2783. '
  2784. Me.工程地點_tb.Location = New System.Drawing.Point(58, 143)
  2785. Me.工程地點_tb.Multiline = True
  2786. Me.工程地點_tb.Name = "工程地點_tb"
  2787. Me.工程地點_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2788. Me.工程地點_tb.Size = New System.Drawing.Size(625, 40)
  2789. Me.工程地點_tb.TabIndex = 1072
  2790. Me.工程地點_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL KAB, MAJALENGKA JAWA BARAT, INDONESIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2791. '
  2792. 'Label406
  2793. '
  2794. Me.Label406.AutoSize = True
  2795. Me.Label406.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2796. Me.Label406.Location = New System.Drawing.Point(3, 95)
  2797. Me.Label406.Name = "Label406"
  2798. Me.Label406.Size = New System.Drawing.Size(154, 21)
  2799. Me.Label406.TabIndex = 1123
  2800. Me.Label406.Text = "第一條、履約和數量"
  2801. Me.Label406.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2802. '
  2803. '金額4_und
  2804. '
  2805. Me.金額4_und.Enabled = False
  2806. Me.金額4_und.Location = New System.Drawing.Point(348, 440)
  2807. Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2808. Me.金額4_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2809. Me.金額4_und.Name = "金額4_und"
  2810. Me.金額4_und.Size = New System.Drawing.Size(105, 23)
  2811. Me.金額4_und.TabIndex = 1101
  2812. Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2813. Me.金額4_und.ThousandsSeparator = True
  2814. '
  2815. '逾期_英_bt
  2816. '
  2817. Me.逾期_英_bt.Location = New System.Drawing.Point(244, 700)
  2818. Me.逾期_英_bt.Name = "逾期_英_bt"
  2819. Me.逾期_英_bt.Size = New System.Drawing.Size(439, 23)
  2820. Me.逾期_英_bt.TabIndex = 1112
  2821. Me.逾期_英_bt.Text = "0.0005% (null point null null null five percent)"
  2822. '
  2823. 'Label376
  2824. '
  2825. Me.Label376.AutoSize = True
  2826. Me.Label376.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2827. Me.Label376.ForeColor = System.Drawing.Color.Blue
  2828. Me.Label376.Location = New System.Drawing.Point(1, 277)
  2829. Me.Label376.Name = "Label376"
  2830. Me.Label376.Size = New System.Drawing.Size(55, 16)
  2831. Me.Label376.TabIndex = 1073
  2832. Me.Label376.Text = "公司名稱"
  2833. Me.Label376.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2834. '
  2835. '工期_nud
  2836. '
  2837. Me.工期_nud.Location = New System.Drawing.Point(79, 675)
  2838. Me.工期_nud.Maximum = New Decimal(New Integer() {1215752192, 23, 0, 0})
  2839. Me.工期_nud.Name = "工期_nud"
  2840. Me.工期_nud.Size = New System.Drawing.Size(53, 23)
  2841. Me.工期_nud.TabIndex = 1104
  2842. Me.工期_nud.ThousandsSeparator = True
  2843. Me.工期_nud.Value = New Decimal(New Integer() {180, 0, 0, 0})
  2844. '
  2845. '金額3_und
  2846. '
  2847. Me.金額3_und.Enabled = False
  2848. Me.金額3_und.Location = New System.Drawing.Point(348, 416)
  2849. Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2850. Me.金額3_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2851. Me.金額3_und.Name = "金額3_und"
  2852. Me.金額3_und.Size = New System.Drawing.Size(105, 23)
  2853. Me.金額3_und.TabIndex = 1100
  2854. Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2855. Me.金額3_und.ThousandsSeparator = True
  2856. '
  2857. '最高扣款_英_bt
  2858. '
  2859. Me.最高扣款_英_bt.Location = New System.Drawing.Point(369, 724)
  2860. Me.最高扣款_英_bt.Name = "最高扣款_英_bt"
  2861. Me.最高扣款_英_bt.Size = New System.Drawing.Size(314, 23)
  2862. Me.最高扣款_英_bt.TabIndex = 1113
  2863. Me.最高扣款_英_bt.Text = "5 (five)%. "
  2864. '
  2865. 'Label414
  2866. '
  2867. Me.Label414.AutoSize = True
  2868. Me.Label414.ForeColor = System.Drawing.Color.Green
  2869. Me.Label414.Location = New System.Drawing.Point(514, 839)
  2870. Me.Label414.Name = "Label414"
  2871. Me.Label414.Size = New System.Drawing.Size(55, 16)
  2872. Me.Label414.TabIndex = 1135
  2873. Me.Label414.Text = "立約日期" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2874. '
  2875. 'Label391
  2876. '
  2877. Me.Label391.AutoSize = True
  2878. Me.Label391.ForeColor = System.Drawing.Color.Green
  2879. Me.Label391.Location = New System.Drawing.Point(5, 678)
  2880. Me.Label391.Name = "Label391"
  2881. Me.Label391.Size = New System.Drawing.Size(67, 16)
  2882. Me.Label391.TabIndex = 1103
  2883. Me.Label391.Text = "需工期時間"
  2884. '
  2885. '金額2_und
  2886. '
  2887. Me.金額2_und.Enabled = False
  2888. Me.金額2_und.Location = New System.Drawing.Point(118, 440)
  2889. Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2890. Me.金額2_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2891. Me.金額2_und.Name = "金額2_und"
  2892. Me.金額2_und.Size = New System.Drawing.Size(105, 23)
  2893. Me.金額2_und.TabIndex = 1099
  2894. Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2895. Me.金額2_und.ThousandsSeparator = True
  2896. '
  2897. 'Label403
  2898. '
  2899. Me.Label403.AutoSize = True
  2900. Me.Label403.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2901. Me.Label403.Location = New System.Drawing.Point(4, 652)
  2902. Me.Label403.Name = "Label403"
  2903. Me.Label403.Size = New System.Drawing.Size(202, 21)
  2904. Me.Label403.TabIndex = 1118
  2905. Me.Label403.Text = "第四條、工期時間及擔保品"
  2906. Me.Label403.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2907. '
  2908. '選擇公司_cb
  2909. '
  2910. Me.選擇公司_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2911. Me.選擇公司_cb.ForeColor = System.Drawing.Color.Blue
  2912. Me.選擇公司_cb.FormattingEnabled = True
  2913. Me.選擇公司_cb.Items.AddRange(New Object() {"G.C.M. Smart Enterprise LTD.", "PT.Indonesia Cemerlang Sistem"})
  2914. Me.選擇公司_cb.Location = New System.Drawing.Point(57, 274)
  2915. Me.選擇公司_cb.Name = "選擇公司_cb"
  2916. Me.選擇公司_cb.Size = New System.Drawing.Size(369, 24)
  2917. Me.選擇公司_cb.TabIndex = 1074
  2918. '
  2919. '負責人_B_cb
  2920. '
  2921. Me.負責人_B_cb.FormattingEnabled = True
  2922. Me.負責人_B_cb.Location = New System.Drawing.Point(477, 274)
  2923. Me.負責人_B_cb.Name = "負責人_B_cb"
  2924. Me.負責人_B_cb.Size = New System.Drawing.Size(206, 24)
  2925. Me.負責人_B_cb.TabIndex = 1122
  2926. '
  2927. '金額1_und
  2928. '
  2929. Me.金額1_und.Enabled = False
  2930. Me.金額1_und.Location = New System.Drawing.Point(118, 416)
  2931. Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2932. Me.金額1_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2933. Me.金額1_und.Name = "金額1_und"
  2934. Me.金額1_und.Size = New System.Drawing.Size(105, 23)
  2935. Me.金額1_und.TabIndex = 1098
  2936. Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2937. Me.金額1_und.ThousandsSeparator = True
  2938. '
  2939. 'Label407
  2940. '
  2941. Me.Label407.AutoSize = True
  2942. Me.Label407.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2943. Me.Label407.Location = New System.Drawing.Point(4, 748)
  2944. Me.Label407.Name = "Label407"
  2945. Me.Label407.Size = New System.Drawing.Size(106, 21)
  2946. Me.Label407.TabIndex = 1124
  2947. Me.Label407.Text = "第八條、驗收"
  2948. Me.Label407.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2949. '
  2950. '立約日期_dtp
  2951. '
  2952. Me.立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  2953. Me.立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  2954. Me.立約日期_dtp.Location = New System.Drawing.Point(572, 835)
  2955. Me.立約日期_dtp.Name = "立約日期_dtp"
  2956. Me.立約日期_dtp.Size = New System.Drawing.Size(111, 23)
  2957. Me.立約日期_dtp.TabIndex = 1134
  2958. '
  2959. 'Label410
  2960. '
  2961. Me.Label410.AutoSize = True
  2962. Me.Label410.ForeColor = System.Drawing.Color.Green
  2963. Me.Label410.Location = New System.Drawing.Point(5, 792)
  2964. Me.Label410.Name = "Label410"
  2965. Me.Label410.Size = New System.Drawing.Size(151, 16)
  2966. Me.Label410.TabIndex = 1125
  2967. Me.Label410.Text = "減價收受以該工程項目乘以"
  2968. '
  2969. '工程款5_nud
  2970. '
  2971. Me.工程款5_nud.Location = New System.Drawing.Point(536, 416)
  2972. Me.工程款5_nud.Name = "工程款5_nud"
  2973. Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
  2974. Me.工程款5_nud.TabIndex = 1097
  2975. Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2976. Me.工程款5_nud.ThousandsSeparator = True
  2977. Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  2978. '
  2979. 'Label408
  2980. '
  2981. Me.Label408.AutoSize = True
  2982. Me.Label408.ForeColor = System.Drawing.Color.Green
  2983. Me.Label408.Location = New System.Drawing.Point(270, 792)
  2984. Me.Label408.Name = "Label408"
  2985. Me.Label408.Size = New System.Drawing.Size(43, 16)
  2986. Me.Label408.TabIndex = 1126
  2987. Me.Label408.Text = "計價。"
  2988. '
  2989. 'Label377
  2990. '
  2991. Me.Label377.AutoSize = True
  2992. Me.Label377.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2993. Me.Label377.ForeColor = System.Drawing.Color.Blue
  2994. Me.Label377.Location = New System.Drawing.Point(1, 301)
  2995. Me.Label377.Name = "Label377"
  2996. Me.Label377.Size = New System.Drawing.Size(43, 16)
  2997. Me.Label377.TabIndex = 1075
  2998. Me.Label377.Text = "地 址"
  2999. Me.Label377.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3000. '
  3001. 'Label405
  3002. '
  3003. Me.Label405.AutoSize = True
  3004. Me.Label405.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3005. Me.Label405.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3006. Me.Label405.Location = New System.Drawing.Point(432, 278)
  3007. Me.Label405.Name = "Label405"
  3008. Me.Label405.Size = New System.Drawing.Size(43, 16)
  3009. Me.Label405.TabIndex = 1121
  3010. Me.Label405.Text = "負責人"
  3011. Me.Label405.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3012. '
  3013. '工程款4_nud
  3014. '
  3015. Me.工程款4_nud.Location = New System.Drawing.Point(307, 440)
  3016. Me.工程款4_nud.Name = "工程款4_nud"
  3017. Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
  3018. Me.工程款4_nud.TabIndex = 1096
  3019. Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3020. Me.工程款4_nud.ThousandsSeparator = True
  3021. Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  3022. '
  3023. '減價_bt
  3024. '
  3025. Me.減價_bt.Location = New System.Drawing.Point(158, 789)
  3026. Me.減價_bt.Name = "減價_bt"
  3027. Me.減價_bt.Size = New System.Drawing.Size(106, 23)
  3028. Me.減價_bt.TabIndex = 1127
  3029. Me.減價_bt.Text = "60% (sixty) "
  3030. Me.減價_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  3031. '
  3032. '頁數_bt
  3033. '
  3034. Me.頁數_bt.Enabled = False
  3035. Me.頁數_bt.Location = New System.Drawing.Point(407, 835)
  3036. Me.頁數_bt.Name = "頁數_bt"
  3037. Me.頁數_bt.Size = New System.Drawing.Size(106, 23)
  3038. Me.頁數_bt.TabIndex = 1133
  3039. Me.頁數_bt.Text = "8 (twelve)"
  3040. Me.頁數_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  3041. '
  3042. 'Label409
  3043. '
  3044. Me.Label409.AutoSize = True
  3045. Me.Label409.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3046. Me.Label409.Location = New System.Drawing.Point(4, 812)
  3047. Me.Label409.Name = "Label409"
  3048. Me.Label409.Size = New System.Drawing.Size(154, 21)
  3049. Me.Label409.TabIndex = 1128
  3050. Me.Label409.Text = "第十一條、合約效力"
  3051. Me.Label409.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3052. '
  3053. 'Label399
  3054. '
  3055. Me.Label399.AutoSize = True
  3056. Me.Label399.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3057. Me.Label399.Location = New System.Drawing.Point(2, 341)
  3058. Me.Label399.Name = "Label399"
  3059. Me.Label399.Size = New System.Drawing.Size(186, 21)
  3060. Me.Label399.TabIndex = 1115
  3061. Me.Label399.Text = "第二條、工作範圍和總價"
  3062. Me.Label399.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3063. '
  3064. '負責人_A_cb
  3065. '
  3066. Me.負責人_A_cb.FormattingEnabled = True
  3067. Me.負責人_A_cb.Location = New System.Drawing.Point(478, 118)
  3068. Me.負責人_A_cb.Name = "負責人_A_cb"
  3069. Me.負責人_A_cb.Size = New System.Drawing.Size(206, 24)
  3070. Me.負責人_A_cb.TabIndex = 1120
  3071. '
  3072. '我司地址_tb
  3073. '
  3074. Me.我司地址_tb.Location = New System.Drawing.Point(57, 299)
  3075. Me.我司地址_tb.Multiline = True
  3076. Me.我司地址_tb.Name = "我司地址_tb"
  3077. Me.我司地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3078. Me.我司地址_tb.Size = New System.Drawing.Size(626, 40)
  3079. Me.我司地址_tb.TabIndex = 1076
  3080. Me.我司地址_tb.Text = "BLOK WESEL RT 004 RW 002 NO.88 DESA MEKARWARU KECAMATAN GANTAR KABUPATEN INDRAMAY" &
  3081. "U"
  3082. '
  3083. '工程名稱_英_tb
  3084. '
  3085. Me.工程名稱_英_tb.Location = New System.Drawing.Point(95, 249)
  3086. Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
  3087. Me.工程名稱_英_tb.Size = New System.Drawing.Size(588, 23)
  3088. Me.工程名稱_英_tb.TabIndex = 1078
  3089. Me.工程名稱_英_tb.Text = "JSC #B3 substation high voltage power engineering "
  3090. '
  3091. '工程款3_nud
  3092. '
  3093. Me.工程款3_nud.Location = New System.Drawing.Point(307, 416)
  3094. Me.工程款3_nud.Name = "工程款3_nud"
  3095. Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
  3096. Me.工程款3_nud.TabIndex = 1095
  3097. Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3098. Me.工程款3_nud.ThousandsSeparator = True
  3099. Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
  3100. '
  3101. 'Label404
  3102. '
  3103. Me.Label404.AutoSize = True
  3104. Me.Label404.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3105. Me.Label404.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3106. Me.Label404.Location = New System.Drawing.Point(433, 122)
  3107. Me.Label404.Name = "Label404"
  3108. Me.Label404.Size = New System.Drawing.Size(43, 16)
  3109. Me.Label404.TabIndex = 1119
  3110. Me.Label404.Text = "負責人"
  3111. Me.Label404.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3112. '
  3113. 'Label413
  3114. '
  3115. Me.Label413.AutoSize = True
  3116. Me.Label413.ForeColor = System.Drawing.Color.Green
  3117. Me.Label413.Location = New System.Drawing.Point(267, 837)
  3118. Me.Label413.Name = "Label413"
  3119. Me.Label413.Size = New System.Drawing.Size(133, 16)
  3120. Me.Label413.TabIndex = 1132
  3121. Me.Label413.Text = "的中英文合 約條款共 計"
  3122. '
  3123. 'Label412
  3124. '
  3125. Me.Label412.AutoSize = True
  3126. Me.Label412.ForeColor = System.Drawing.Color.Green
  3127. Me.Label412.Location = New System.Drawing.Point(3, 838)
  3128. Me.Label412.Name = "Label412"
  3129. Me.Label412.Size = New System.Drawing.Size(111, 16)
  3130. Me.Label412.TabIndex = 1130
  3131. Me.Label412.Text = "客戶工程廠區(中文)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  3132. '
  3133. 'Label400
  3134. '
  3135. Me.Label400.AutoSize = True
  3136. Me.Label400.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3137. Me.Label400.Location = New System.Drawing.Point(2, 391)
  3138. Me.Label400.Name = "Label400"
  3139. Me.Label400.Size = New System.Drawing.Size(218, 21)
  3140. Me.Label400.TabIndex = 1116
  3141. Me.Label400.Text = "第三條、合約金額和支付詳情"
  3142. Me.Label400.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3143. '
  3144. '工程款1_nud
  3145. '
  3146. Me.工程款1_nud.Location = New System.Drawing.Point(77, 416)
  3147. Me.工程款1_nud.Name = "工程款1_nud"
  3148. Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
  3149. Me.工程款1_nud.TabIndex = 1093
  3150. Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3151. Me.工程款1_nud.ThousandsSeparator = True
  3152. Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
  3153. '
  3154. 'Label378
  3155. '
  3156. Me.Label378.AutoSize = True
  3157. Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3158. Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3159. Me.Label378.Location = New System.Drawing.Point(1, 252)
  3160. Me.Label378.Name = "Label378"
  3161. Me.Label378.Size = New System.Drawing.Size(87, 16)
  3162. Me.Label378.TabIndex = 1077
  3163. Me.Label378.Text = "工程名稱(英文)"
  3164. Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3165. '
  3166. '廠區_中文_tb
  3167. '
  3168. Me.廠區_中文_tb.Location = New System.Drawing.Point(121, 835)
  3169. Me.廠區_中文_tb.Name = "廠區_中文_tb"
  3170. Me.廠區_中文_tb.Size = New System.Drawing.Size(140, 23)
  3171. Me.廠區_中文_tb.TabIndex = 1131
  3172. Me.廠區_中文_tb.Text = "印尼耐克鞋厂"
  3173. Me.廠區_中文_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  3174. '
  3175. '工程款2_nud
  3176. '
  3177. Me.工程款2_nud.Location = New System.Drawing.Point(77, 440)
  3178. Me.工程款2_nud.Name = "工程款2_nud"
  3179. Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
  3180. Me.工程款2_nud.TabIndex = 1094
  3181. Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3182. Me.工程款2_nud.ThousandsSeparator = True
  3183. Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
  3184. '
  3185. 'Label28
  3186. '
  3187. Me.Label28.AutoSize = True
  3188. Me.Label28.Location = New System.Drawing.Point(-2, 103)
  3189. Me.Label28.Name = "Label28"
  3190. Me.Label28.Size = New System.Drawing.Size(687, 16)
  3191. Me.Label28.TabIndex = 1353
  3192. Me.Label28.Text = "_________________________________________________________________________________" &
  3193. "_______________________________________________________"
  3194. '
  3195. 'Label382
  3196. '
  3197. Me.Label382.AutoSize = True
  3198. Me.Label382.Location = New System.Drawing.Point(-2, 351)
  3199. Me.Label382.Name = "Label382"
  3200. Me.Label382.Size = New System.Drawing.Size(687, 16)
  3201. Me.Label382.TabIndex = 1083
  3202. Me.Label382.Text = "_________________________________________________________________________________" &
  3203. "_______________________________________________________"
  3204. '
  3205. '稅額顯示_lb
  3206. '
  3207. Me.稅額顯示_lb.AutoSize = True
  3208. Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
  3209. Me.稅額顯示_lb.Location = New System.Drawing.Point(242, 369)
  3210. Me.稅額顯示_lb.Name = "稅額顯示_lb"
  3211. Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
  3212. Me.稅額顯示_lb.TabIndex = 1084
  3213. Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
  3214. '
  3215. 'CH2
  3216. '
  3217. Me.CH2.AutoSize = True
  3218. Me.CH2.ForeColor = System.Drawing.Color.Green
  3219. Me.CH2.Location = New System.Drawing.Point(471, 368)
  3220. Me.CH2.Name = "CH2"
  3221. Me.CH2.Size = New System.Drawing.Size(111, 20)
  3222. Me.CH2.TabIndex = 1137
  3223. Me.CH2.Text = "工程總價 = Rp. "
  3224. Me.CH2.UseVisualStyleBackColor = True
  3225. '
  3226. 'CH1
  3227. '
  3228. Me.CH1.AutoSize = True
  3229. Me.CH1.ForeColor = System.Drawing.Color.Green
  3230. Me.CH1.Location = New System.Drawing.Point(2, 368)
  3231. Me.CH1.Name = "CH1"
  3232. Me.CH1.Size = New System.Drawing.Size(135, 20)
  3233. Me.CH1.TabIndex = 1136
  3234. Me.CH1.Text = "分項工程報價 = Rp. "
  3235. Me.CH1.UseVisualStyleBackColor = True
  3236. '
  3237. 'Label402
  3238. '
  3239. Me.Label402.AutoSize = True
  3240. Me.Label402.Location = New System.Drawing.Point(-2, 401)
  3241. Me.Label402.Name = "Label402"
  3242. Me.Label402.Size = New System.Drawing.Size(687, 16)
  3243. Me.Label402.TabIndex = 1117
  3244. Me.Label402.Text = "_________________________________________________________________________________" &
  3245. "_______________________________________________________"
  3246. '
  3247. 'Label392
  3248. '
  3249. Me.Label392.AutoSize = True
  3250. Me.Label392.Location = New System.Drawing.Point(-2, 660)
  3251. Me.Label392.Name = "Label392"
  3252. Me.Label392.Size = New System.Drawing.Size(687, 16)
  3253. Me.Label392.TabIndex = 1105
  3254. Me.Label392.Text = "_________________________________________________________________________________" &
  3255. "_______________________________________________________"
  3256. '
  3257. 'Label381
  3258. '
  3259. Me.Label381.AutoSize = True
  3260. Me.Label381.Location = New System.Drawing.Point(-2, 756)
  3261. Me.Label381.Name = "Label381"
  3262. Me.Label381.Size = New System.Drawing.Size(687, 16)
  3263. Me.Label381.TabIndex = 1082
  3264. Me.Label381.Text = "_________________________________________________________________________________" &
  3265. "_______________________________________________________"
  3266. '
  3267. 'Label386
  3268. '
  3269. Me.Label386.AutoSize = True
  3270. Me.Label386.ForeColor = System.Drawing.Color.Green
  3271. Me.Label386.Location = New System.Drawing.Point(457, 418)
  3272. Me.Label386.Name = "Label386"
  3273. Me.Label386.Size = New System.Drawing.Size(79, 16)
  3274. Me.Label386.TabIndex = 1092
  3275. Me.Label386.Text = "第五期工程款"
  3276. '
  3277. 'Label21
  3278. '
  3279. Me.Label21.AutoSize = True
  3280. Me.Label21.ForeColor = System.Drawing.Color.Green
  3281. Me.Label21.Location = New System.Drawing.Point(458, 442)
  3282. Me.Label21.Name = "Label21"
  3283. Me.Label21.Size = New System.Drawing.Size(79, 16)
  3284. Me.Label21.TabIndex = 1138
  3285. Me.Label21.Text = "工程款 總數"
  3286. '
  3287. 'TabControl2
  3288. '
  3289. Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
  3290. Me.TabControl2.Controls.Add(Me.TabPage5)
  3291. Me.TabControl2.Controls.Add(Me.TabPage6)
  3292. Me.TabControl2.Controls.Add(Me.TabPage7)
  3293. Me.TabControl2.Controls.Add(Me.TabPage8)
  3294. Me.TabControl2.Controls.Add(Me.TabPage9)
  3295. Me.TabControl2.Location = New System.Drawing.Point(-1, 469)
  3296. Me.TabControl2.Name = "TabControl2"
  3297. Me.TabControl2.SelectedIndex = 0
  3298. Me.TabControl2.Size = New System.Drawing.Size(690, 187)
  3299. Me.TabControl2.TabIndex = 1142
  3300. '
  3301. 'TabPage5
  3302. '
  3303. Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3304. Me.TabPage5.Controls.Add(Me.第1期_dgv)
  3305. Me.TabPage5.Location = New System.Drawing.Point(4, 28)
  3306. Me.TabPage5.Name = "TabPage5"
  3307. Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
  3308. Me.TabPage5.Size = New System.Drawing.Size(682, 155)
  3309. Me.TabPage5.TabIndex = 0
  3310. Me.TabPage5.Text = "第一期"
  3311. Me.TabPage5.UseVisualStyleBackColor = True
  3312. '
  3313. '第1期_dgv
  3314. '
  3315. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3316. Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  3317. Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3318. Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
  3319. Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3320. Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
  3321. Me.第1期_dgv.Name = "第1期_dgv"
  3322. Me.第1期_dgv.RowHeadersWidth = 5
  3323. Me.第1期_dgv.RowTemplate.Height = 24
  3324. Me.第1期_dgv.Size = New System.Drawing.Size(675, 149)
  3325. Me.第1期_dgv.TabIndex = 1038
  3326. '
  3327. 'TabPage6
  3328. '
  3329. Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3330. Me.TabPage6.Controls.Add(Me.第2期_dgv)
  3331. Me.TabPage6.Location = New System.Drawing.Point(4, 28)
  3332. Me.TabPage6.Name = "TabPage6"
  3333. Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
  3334. Me.TabPage6.Size = New System.Drawing.Size(682, 155)
  3335. Me.TabPage6.TabIndex = 1
  3336. Me.TabPage6.Text = "第二期"
  3337. Me.TabPage6.UseVisualStyleBackColor = True
  3338. '
  3339. '第2期_dgv
  3340. '
  3341. DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3342. Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
  3343. Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3344. Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
  3345. Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3346. Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
  3347. Me.第2期_dgv.Name = "第2期_dgv"
  3348. Me.第2期_dgv.RowHeadersWidth = 5
  3349. Me.第2期_dgv.RowTemplate.Height = 24
  3350. Me.第2期_dgv.Size = New System.Drawing.Size(675, 149)
  3351. Me.第2期_dgv.TabIndex = 1039
  3352. '
  3353. 'TabPage7
  3354. '
  3355. Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3356. Me.TabPage7.Controls.Add(Me.第3期_dgv)
  3357. Me.TabPage7.Location = New System.Drawing.Point(4, 28)
  3358. Me.TabPage7.Name = "TabPage7"
  3359. Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
  3360. Me.TabPage7.Size = New System.Drawing.Size(682, 155)
  3361. Me.TabPage7.TabIndex = 2
  3362. Me.TabPage7.Text = "第三期"
  3363. Me.TabPage7.UseVisualStyleBackColor = True
  3364. '
  3365. '第3期_dgv
  3366. '
  3367. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3368. Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  3369. Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3370. Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
  3371. Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3372. Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
  3373. Me.第3期_dgv.Name = "第3期_dgv"
  3374. Me.第3期_dgv.RowHeadersWidth = 5
  3375. Me.第3期_dgv.RowTemplate.Height = 24
  3376. Me.第3期_dgv.Size = New System.Drawing.Size(675, 149)
  3377. Me.第3期_dgv.TabIndex = 1040
  3378. '
  3379. 'TabPage8
  3380. '
  3381. Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3382. Me.TabPage8.Controls.Add(Me.第4期_dgv)
  3383. Me.TabPage8.Location = New System.Drawing.Point(4, 28)
  3384. Me.TabPage8.Name = "TabPage8"
  3385. Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
  3386. Me.TabPage8.Size = New System.Drawing.Size(682, 155)
  3387. Me.TabPage8.TabIndex = 3
  3388. Me.TabPage8.Text = "第四期"
  3389. Me.TabPage8.UseVisualStyleBackColor = True
  3390. '
  3391. '第4期_dgv
  3392. '
  3393. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3394. Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  3395. Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3396. Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
  3397. Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3398. Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
  3399. Me.第4期_dgv.Name = "第4期_dgv"
  3400. Me.第4期_dgv.RowHeadersWidth = 5
  3401. Me.第4期_dgv.RowTemplate.Height = 24
  3402. Me.第4期_dgv.Size = New System.Drawing.Size(675, 149)
  3403. Me.第4期_dgv.TabIndex = 1041
  3404. '
  3405. 'TabPage9
  3406. '
  3407. Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3408. Me.TabPage9.Controls.Add(Me.第5期_dgv)
  3409. Me.TabPage9.Location = New System.Drawing.Point(4, 28)
  3410. Me.TabPage9.Name = "TabPage9"
  3411. Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
  3412. Me.TabPage9.Size = New System.Drawing.Size(682, 155)
  3413. Me.TabPage9.TabIndex = 4
  3414. Me.TabPage9.Text = "第五期"
  3415. Me.TabPage9.UseVisualStyleBackColor = True
  3416. '
  3417. '第5期_dgv
  3418. '
  3419. DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3420. Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
  3421. Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3422. Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
  3423. Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3424. Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
  3425. Me.第5期_dgv.Name = "第5期_dgv"
  3426. Me.第5期_dgv.RowHeadersWidth = 5
  3427. Me.第5期_dgv.RowTemplate.Height = 24
  3428. Me.第5期_dgv.Size = New System.Drawing.Size(675, 149)
  3429. Me.第5期_dgv.TabIndex = 1042
  3430. '
  3431. 'Label388
  3432. '
  3433. Me.Label388.AutoSize = True
  3434. Me.Label388.ForeColor = System.Drawing.Color.Green
  3435. Me.Label388.Location = New System.Drawing.Point(228, 420)
  3436. Me.Label388.Name = "Label388"
  3437. Me.Label388.Size = New System.Drawing.Size(79, 16)
  3438. Me.Label388.TabIndex = 1090
  3439. Me.Label388.Text = "第三期工程款"
  3440. '
  3441. 'Label387
  3442. '
  3443. Me.Label387.AutoSize = True
  3444. Me.Label387.ForeColor = System.Drawing.Color.Green
  3445. Me.Label387.Location = New System.Drawing.Point(228, 443)
  3446. Me.Label387.Name = "Label387"
  3447. Me.Label387.Size = New System.Drawing.Size(79, 16)
  3448. Me.Label387.TabIndex = 1091
  3449. Me.Label387.Text = "第四期工程款"
  3450. '
  3451. 'Label390
  3452. '
  3453. Me.Label390.AutoSize = True
  3454. Me.Label390.ForeColor = System.Drawing.Color.Green
  3455. Me.Label390.Location = New System.Drawing.Point(-1, 420)
  3456. Me.Label390.Name = "Label390"
  3457. Me.Label390.Size = New System.Drawing.Size(79, 16)
  3458. Me.Label390.TabIndex = 1088
  3459. Me.Label390.Text = "第一期工程款"
  3460. '
  3461. 'Label389
  3462. '
  3463. Me.Label389.AutoSize = True
  3464. Me.Label389.ForeColor = System.Drawing.Color.Green
  3465. Me.Label389.Location = New System.Drawing.Point(-1, 444)
  3466. Me.Label389.Name = "Label389"
  3467. Me.Label389.Size = New System.Drawing.Size(79, 16)
  3468. Me.Label389.TabIndex = 1089
  3469. Me.Label389.Text = "第二期工程款"
  3470. '
  3471. 'Label411
  3472. '
  3473. Me.Label411.AutoSize = True
  3474. Me.Label411.Location = New System.Drawing.Point(-2, 820)
  3475. Me.Label411.Name = "Label411"
  3476. Me.Label411.Size = New System.Drawing.Size(687, 16)
  3477. Me.Label411.TabIndex = 1129
  3478. Me.Label411.Text = "_________________________________________________________________________________" &
  3479. "_______________________________________________________"
  3480. '
  3481. 'Label29
  3482. '
  3483. Me.Label29.AutoSize = True
  3484. Me.Label29.Location = New System.Drawing.Point(676, 853)
  3485. Me.Label29.Name = "Label29"
  3486. Me.Label29.Size = New System.Drawing.Size(10, 16)
  3487. Me.Label29.TabIndex = 1355
  3488. Me.Label29.Text = "."
  3489. '
  3490. 'Label35
  3491. '
  3492. Me.Label35.AutoSize = True
  3493. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3494. Me.Label35.Location = New System.Drawing.Point(38, 3)
  3495. Me.Label35.Name = "Label35"
  3496. Me.Label35.Size = New System.Drawing.Size(220, 16)
  3497. Me.Label35.TabIndex = 1044
  3498. Me.Label35.Text = "乙方 甲方 立約日期 序號 "
  3499. Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3500. '
  3501. 'Label34
  3502. '
  3503. Me.Label34.AutoSize = True
  3504. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3505. Me.Label34.Location = New System.Drawing.Point(257, 2)
  3506. Me.Label34.Name = "Label34"
  3507. Me.Label34.Size = New System.Drawing.Size(55, 16)
  3508. Me.Label34.TabIndex = 1405
  3509. Me.Label34.Text = "工程期數"
  3510. Me.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3511. '
  3512. '預估工資總報價_tb
  3513. '
  3514. Me.預估工資總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3515. Me.預估工資總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3516. Me.預估工資總報價_tb.Location = New System.Drawing.Point(1006, 875)
  3517. Me.預估工資總報價_tb.Name = "預估工資總報價_tb"
  3518. Me.預估工資總報價_tb.Size = New System.Drawing.Size(90, 16)
  3519. Me.預估工資總報價_tb.TabIndex = 1409
  3520. Me.預估工資總報價_tb.Text = "99,999,999,999"
  3521. Me.預估工資總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3522. '
  3523. '預估材料總成本_tb
  3524. '
  3525. Me.預估材料總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3526. Me.預估材料總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3527. Me.預估材料總成本_tb.Location = New System.Drawing.Point(812, 895)
  3528. Me.預估材料總成本_tb.Name = "預估材料總成本_tb"
  3529. Me.預估材料總成本_tb.Size = New System.Drawing.Size(90, 16)
  3530. Me.預估材料總成本_tb.TabIndex = 1408
  3531. Me.預估材料總成本_tb.Text = "99,999,999,999"
  3532. Me.預估材料總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3533. '
  3534. 'Label54
  3535. '
  3536. Me.Label54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3537. Me.Label54.AutoSize = True
  3538. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3539. Me.Label54.ForeColor = System.Drawing.Color.Red
  3540. Me.Label54.Location = New System.Drawing.Point(715, 875)
  3541. Me.Label54.Name = "Label54"
  3542. Me.Label54.Size = New System.Drawing.Size(97, 16)
  3543. Me.Label54.TabIndex = 1677
  3544. Me.Label54.Text = "預估工資總成本 :"
  3545. Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3546. '
  3547. '預估工資總成本_tb
  3548. '
  3549. Me.預估工資總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3550. Me.預估工資總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3551. Me.預估工資總成本_tb.Location = New System.Drawing.Point(812, 875)
  3552. Me.預估工資總成本_tb.Name = "預估工資總成本_tb"
  3553. Me.預估工資總成本_tb.Size = New System.Drawing.Size(90, 16)
  3554. Me.預估工資總成本_tb.TabIndex = 1407
  3555. Me.預估工資總成本_tb.Text = "99,999,999,999"
  3556. Me.預估工資總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3557. '
  3558. 'Label55
  3559. '
  3560. Me.Label55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3561. Me.Label55.AutoSize = True
  3562. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3563. Me.Label55.ForeColor = System.Drawing.Color.Red
  3564. Me.Label55.Location = New System.Drawing.Point(716, 895)
  3565. Me.Label55.Name = "Label55"
  3566. Me.Label55.Size = New System.Drawing.Size(97, 16)
  3567. Me.Label55.TabIndex = 1679
  3568. Me.Label55.Text = "預估材料總成本 :"
  3569. Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3570. '
  3571. 'Label65
  3572. '
  3573. Me.Label65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3574. Me.Label65.AutoSize = True
  3575. Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3576. Me.Label65.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3577. Me.Label65.Location = New System.Drawing.Point(1101, 876)
  3578. Me.Label65.Name = "Label65"
  3579. Me.Label65.Size = New System.Drawing.Size(103, 16)
  3580. Me.Label65.TabIndex = 1687
  3581. Me.Label65.Text = "利 潤 比 :"
  3582. Me.Label65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3583. '
  3584. 'Label62
  3585. '
  3586. Me.Label62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3587. Me.Label62.AutoSize = True
  3588. Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3589. Me.Label62.ForeColor = System.Drawing.Color.Green
  3590. Me.Label62.Location = New System.Drawing.Point(910, 875)
  3591. Me.Label62.Name = "Label62"
  3592. Me.Label62.Size = New System.Drawing.Size(97, 16)
  3593. Me.Label62.TabIndex = 1682
  3594. Me.Label62.Text = "預估工資總報價 :"
  3595. Me.Label62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3596. '
  3597. 'Label66
  3598. '
  3599. Me.Label66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3600. Me.Label66.AutoSize = True
  3601. Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3602. Me.Label66.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3603. Me.Label66.Location = New System.Drawing.Point(946, 934)
  3604. Me.Label66.Name = "Label66"
  3605. Me.Label66.Size = New System.Drawing.Size(61, 16)
  3606. Me.Label66.TabIndex = 1686
  3607. Me.Label66.Text = "預估利潤 :"
  3608. Me.Label66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3609. '
  3610. 'Label61
  3611. '
  3612. Me.Label61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3613. Me.Label61.AutoSize = True
  3614. Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3615. Me.Label61.ForeColor = System.Drawing.Color.Green
  3616. Me.Label61.Location = New System.Drawing.Point(911, 895)
  3617. Me.Label61.Name = "Label61"
  3618. Me.Label61.Size = New System.Drawing.Size(97, 16)
  3619. Me.Label61.TabIndex = 1683
  3620. Me.Label61.Text = "預估材料總報價 :"
  3621. Me.Label61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3622. '
  3623. '報價總表_dgv
  3624. '
  3625. DataGridViewCellStyle7.BackColor = System.Drawing.Color.White
  3626. Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle7
  3627. Me.報價總表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3628. Or System.Windows.Forms.AnchorStyles.Left) _
  3629. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3630. Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3631. Me.報價總表_dgv.BackgroundColor = System.Drawing.Color.White
  3632. Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3633. Me.報價總表_dgv.Location = New System.Drawing.Point(711, -1)
  3634. Me.報價總表_dgv.Name = "報價總表_dgv"
  3635. Me.報價總表_dgv.RowHeadersWidth = 5
  3636. Me.報價總表_dgv.RowTemplate.Height = 24
  3637. Me.報價總表_dgv.Size = New System.Drawing.Size(552, 760)
  3638. Me.報價總表_dgv.TabIndex = 1354
  3639. '
  3640. '彙總存檔_bt
  3641. '
  3642. Me.彙總存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3643. Me.彙總存檔_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.SAVER2
  3644. Me.彙總存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3645. Me.彙總存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3646. Me.彙總存檔_bt.ForeColor = System.Drawing.Color.Green
  3647. Me.彙總存檔_bt.Location = New System.Drawing.Point(1231, 850)
  3648. Me.彙總存檔_bt.Name = "彙總存檔_bt"
  3649. Me.彙總存檔_bt.Size = New System.Drawing.Size(26, 26)
  3650. Me.彙總存檔_bt.TabIndex = 1704
  3651. Me.彙總存檔_bt.UseVisualStyleBackColor = True
  3652. '
  3653. 'TabControl3
  3654. '
  3655. Me.TabControl3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  3656. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3657. Me.TabControl3.Appearance = System.Windows.Forms.TabAppearance.Buttons
  3658. Me.TabControl3.Controls.Add(Me.TabPage1)
  3659. Me.TabControl3.Controls.Add(Me.TabPage2)
  3660. Me.TabControl3.Location = New System.Drawing.Point(712, 761)
  3661. Me.TabControl3.Name = "TabControl3"
  3662. Me.TabControl3.SelectedIndex = 0
  3663. Me.TabControl3.Size = New System.Drawing.Size(549, 93)
  3664. Me.TabControl3.TabIndex = 1428
  3665. '
  3666. 'TabPage1
  3667. '
  3668. Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3669. Me.TabPage1.Controls.Add(Me.折價計算_bt)
  3670. Me.TabPage1.Controls.Add(Me.Label83)
  3671. Me.TabPage1.Controls.Add(Me.甲方_cb)
  3672. Me.TabPage1.Controls.Add(Me.未折價前_tb)
  3673. Me.TabPage1.Controls.Add(Me.Label82)
  3674. Me.TabPage1.Controls.Add(Me.歸零位數_nud)
  3675. Me.TabPage1.Controls.Add(Me.Label81)
  3676. Me.TabPage1.Controls.Add(Me.稅後歸零_ch)
  3677. Me.TabPage1.Controls.Add(Me.稅前歸零_ch)
  3678. Me.TabPage1.Controls.Add(Me.Label80)
  3679. Me.TabPage1.Controls.Add(Me.折讓比例_nud)
  3680. Me.TabPage1.Controls.Add(Me.Label79)
  3681. Me.TabPage1.Controls.Add(Me.報價小計_tb)
  3682. Me.TabPage1.Controls.Add(Me.Label39)
  3683. Me.TabPage1.Location = New System.Drawing.Point(4, 28)
  3684. Me.TabPage1.Name = "TabPage1"
  3685. Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
  3686. Me.TabPage1.Size = New System.Drawing.Size(541, 61)
  3687. Me.TabPage1.TabIndex = 0
  3688. Me.TabPage1.Text = "折讓與報價去尾數 / Discounts and quotes rounded off"
  3689. Me.TabPage1.UseVisualStyleBackColor = True
  3690. '
  3691. '折價計算_bt
  3692. '
  3693. Me.折價計算_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.calc1
  3694. Me.折價計算_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3695. Me.折價計算_bt.Location = New System.Drawing.Point(459, 3)
  3696. Me.折價計算_bt.Name = "折價計算_bt"
  3697. Me.折價計算_bt.Size = New System.Drawing.Size(52, 52)
  3698. Me.折價計算_bt.TabIndex = 1722
  3699. Me.折價計算_bt.UseVisualStyleBackColor = True
  3700. '
  3701. 'Label83
  3702. '
  3703. Me.Label83.AutoSize = True
  3704. Me.Label83.BackColor = System.Drawing.SystemColors.Control
  3705. Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3706. Me.Label83.ForeColor = System.Drawing.Color.Green
  3707. Me.Label83.Location = New System.Drawing.Point(193, 7)
  3708. Me.Label83.Name = "Label83"
  3709. Me.Label83.Size = New System.Drawing.Size(55, 16)
  3710. Me.Label83.TabIndex = 1721
  3711. Me.Label83.Text = "折價參考"
  3712. Me.Label83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3713. '
  3714. '甲方_cb
  3715. '
  3716. Me.甲方_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3717. Me.甲方_cb.ForeColor = System.Drawing.Color.Green
  3718. Me.甲方_cb.FormattingEnabled = True
  3719. Me.甲方_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  3720. Me.甲方_cb.Location = New System.Drawing.Point(225, 3)
  3721. Me.甲方_cb.Name = "甲方_cb"
  3722. Me.甲方_cb.Size = New System.Drawing.Size(94, 24)
  3723. Me.甲方_cb.TabIndex = 1720
  3724. '
  3725. '未折價前_tb
  3726. '
  3727. Me.未折價前_tb.Location = New System.Drawing.Point(65, 4)
  3728. Me.未折價前_tb.Name = "未折價前_tb"
  3729. Me.未折價前_tb.Size = New System.Drawing.Size(110, 23)
  3730. Me.未折價前_tb.TabIndex = 1718
  3731. Me.未折價前_tb.Text = "99,999,999,999"
  3732. Me.未折價前_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3733. '
  3734. 'Label82
  3735. '
  3736. Me.Label82.AutoSize = True
  3737. Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3738. Me.Label82.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3739. Me.Label82.Location = New System.Drawing.Point(8, 7)
  3740. Me.Label82.Name = "Label82"
  3741. Me.Label82.Size = New System.Drawing.Size(55, 16)
  3742. Me.Label82.TabIndex = 1719
  3743. Me.Label82.Text = "未折價前"
  3744. Me.Label82.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3745. '
  3746. '歸零位數_nud
  3747. '
  3748. Me.歸零位數_nud.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3749. Me.歸零位數_nud.Location = New System.Drawing.Point(403, 25)
  3750. Me.歸零位數_nud.Maximum = New Decimal(New Integer() {10, 0, 0, 0})
  3751. Me.歸零位數_nud.Name = "歸零位數_nud"
  3752. Me.歸零位數_nud.Size = New System.Drawing.Size(52, 23)
  3753. Me.歸零位數_nud.TabIndex = 1717
  3754. Me.歸零位數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3755. Me.歸零位數_nud.ThousandsSeparator = True
  3756. '
  3757. 'Label81
  3758. '
  3759. Me.Label81.AutoSize = True
  3760. Me.Label81.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3761. Me.Label81.Location = New System.Drawing.Point(401, 7)
  3762. Me.Label81.Name = "Label81"
  3763. Me.Label81.Size = New System.Drawing.Size(55, 16)
  3764. Me.Label81.TabIndex = 1716
  3765. Me.Label81.Text = "歸零位數"
  3766. '
  3767. '稅後歸零_ch
  3768. '
  3769. Me.稅後歸零_ch.AutoSize = True
  3770. Me.稅後歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3771. Me.稅後歸零_ch.Location = New System.Drawing.Point(324, 31)
  3772. Me.稅後歸零_ch.Name = "稅後歸零_ch"
  3773. Me.稅後歸零_ch.Size = New System.Drawing.Size(74, 20)
  3774. Me.稅後歸零_ch.TabIndex = 1715
  3775. Me.稅後歸零_ch.Text = "稅後歸零"
  3776. Me.稅後歸零_ch.UseVisualStyleBackColor = True
  3777. '
  3778. '稅前歸零_ch
  3779. '
  3780. Me.稅前歸零_ch.AutoSize = True
  3781. Me.稅前歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3782. Me.稅前歸零_ch.Location = New System.Drawing.Point(324, 5)
  3783. Me.稅前歸零_ch.Name = "稅前歸零_ch"
  3784. Me.稅前歸零_ch.Size = New System.Drawing.Size(74, 20)
  3785. Me.稅前歸零_ch.TabIndex = 1714
  3786. Me.稅前歸零_ch.Text = "稅前歸零"
  3787. Me.稅前歸零_ch.UseVisualStyleBackColor = True
  3788. '
  3789. 'Label80
  3790. '
  3791. Me.Label80.AutoSize = True
  3792. Me.Label80.ForeColor = System.Drawing.Color.Green
  3793. Me.Label80.Location = New System.Drawing.Point(301, 32)
  3794. Me.Label80.Name = "Label80"
  3795. Me.Label80.Size = New System.Drawing.Size(18, 16)
  3796. Me.Label80.TabIndex = 1713
  3797. Me.Label80.Text = "%"
  3798. '
  3799. '折讓比例_nud
  3800. '
  3801. Me.折讓比例_nud.ForeColor = System.Drawing.Color.Green
  3802. Me.折讓比例_nud.Location = New System.Drawing.Point(249, 29)
  3803. Me.折讓比例_nud.Name = "折讓比例_nud"
  3804. Me.折讓比例_nud.Size = New System.Drawing.Size(49, 23)
  3805. Me.折讓比例_nud.TabIndex = 1712
  3806. Me.折讓比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3807. Me.折讓比例_nud.ThousandsSeparator = True
  3808. '
  3809. 'Label79
  3810. '
  3811. Me.Label79.AutoSize = True
  3812. Me.Label79.ForeColor = System.Drawing.Color.Green
  3813. Me.Label79.Location = New System.Drawing.Point(192, 32)
  3814. Me.Label79.Name = "Label79"
  3815. Me.Label79.Size = New System.Drawing.Size(55, 16)
  3816. Me.Label79.TabIndex = 1711
  3817. Me.Label79.Text = "折讓比例"
  3818. '
  3819. '報價小計_tb
  3820. '
  3821. Me.報價小計_tb.Location = New System.Drawing.Point(65, 30)
  3822. Me.報價小計_tb.Name = "報價小計_tb"
  3823. Me.報價小計_tb.Size = New System.Drawing.Size(110, 23)
  3824. Me.報價小計_tb.TabIndex = 1709
  3825. Me.報價小計_tb.Text = "99,999,999,999"
  3826. Me.報價小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3827. '
  3828. 'Label39
  3829. '
  3830. Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3831. Me.Label39.AutoSize = True
  3832. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3833. Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3834. Me.Label39.Location = New System.Drawing.Point(8, 41)
  3835. Me.Label39.Name = "Label39"
  3836. Me.Label39.Size = New System.Drawing.Size(55, 16)
  3837. Me.Label39.TabIndex = 1710
  3838. Me.Label39.Text = "報價小計"
  3839. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3840. '
  3841. 'TabPage2
  3842. '
  3843. Me.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3844. Me.TabPage2.Controls.Add(Me.報價說明_tb)
  3845. Me.TabPage2.Location = New System.Drawing.Point(4, 28)
  3846. Me.TabPage2.Name = "TabPage2"
  3847. Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
  3848. Me.TabPage2.Size = New System.Drawing.Size(541, 61)
  3849. Me.TabPage2.TabIndex = 1
  3850. Me.TabPage2.Text = "報價說明/Offer descriptions:"
  3851. Me.TabPage2.UseVisualStyleBackColor = True
  3852. '
  3853. '報價說明_tb
  3854. '
  3855. Me.報價說明_tb.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3856. Or System.Windows.Forms.AnchorStyles.Left) _
  3857. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3858. Me.報價說明_tb.Location = New System.Drawing.Point(3, 1)
  3859. Me.報價說明_tb.Multiline = True
  3860. Me.報價說明_tb.Name = "報價說明_tb"
  3861. Me.報價說明_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3862. Me.報價說明_tb.Size = New System.Drawing.Size(531, 66)
  3863. Me.報價說明_tb.TabIndex = 1406
  3864. '
  3865. '工程合約報價明細_tc
  3866. '
  3867. Me.工程合約報價明細_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3868. Me.工程合約報價明細_tc.Controls.Add(Me.詳細資料2_ch)
  3869. Me.工程合約報價明細_tc.Controls.Add(Me.啟用批量選擇_ch)
  3870. Me.工程合約報價明細_tc.Controls.Add(Me.視窗3_pl)
  3871. Me.工程合約報價明細_tc.Controls.Add(Me.視窗1_pl)
  3872. Me.工程合約報價明細_tc.Controls.Add(Me.報價係數_dgv)
  3873. Me.工程合約報價明細_tc.Controls.Add(Me.報價單立約日期_dtp)
  3874. Me.工程合約報價明細_tc.Controls.Add(Me.Label27)
  3875. Me.工程合約報價明細_tc.Controls.Add(Me.Label26)
  3876. Me.工程合約報價明細_tc.Controls.Add(Me.報價單合約編號_tb)
  3877. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_英_tb)
  3878. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_中_tb)
  3879. Me.工程合約報價明細_tc.Controls.Add(Me.Label9)
  3880. Me.工程合約報價明細_tc.Controls.Add(Me.Label8)
  3881. Me.工程合約報價明細_tc.Controls.Add(Me.報價單客戶名稱_cb)
  3882. Me.工程合約報價明細_tc.Controls.Add(Me.Label6)
  3883. Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表_dgv)
  3884. Me.工程合約報價明細_tc.Controls.Add(Me.Panel5)
  3885. Me.工程合約報價明細_tc.Controls.Add(Me.係數範本_tb)
  3886. Me.工程合約報價明細_tc.Controls.Add(Me.編輯係數_bt)
  3887. Me.工程合約報價明細_tc.Controls.Add(Me.規格顯示修改_bt)
  3888. Me.工程合約報價明細_tc.Controls.Add(Me.修改明細表上的材料指定_bt)
  3889. Me.工程合約報價明細_tc.Controls.Add(Me.選擇材料新增到明細表_bt)
  3890. Me.工程合約報價明細_tc.Controls.Add(Me.新增資料2_bt)
  3891. Me.工程合約報價明細_tc.Controls.Add(Me.總表選擇刪除1_bt)
  3892. Me.工程合約報價明細_tc.Controls.Add(Me.明細表編輯_bt)
  3893. Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表存檔_bt)
  3894. Me.工程合約報價明細_tc.Controls.Add(Me.排序2_bt)
  3895. Me.工程合約報價明細_tc.Controls.Add(Me.物料圖1_pb)
  3896. Me.工程合約報價明細_tc.Location = New System.Drawing.Point(4, 28)
  3897. Me.工程合約報價明細_tc.Name = "工程合約報價明細_tc"
  3898. Me.工程合約報價明細_tc.Padding = New System.Windows.Forms.Padding(3)
  3899. Me.工程合約報價明細_tc.Size = New System.Drawing.Size(1413, 1006)
  3900. Me.工程合約報價明細_tc.TabIndex = 0
  3901. Me.工程合約報價明細_tc.Text = "工程合約報價明細"
  3902. Me.工程合約報價明細_tc.UseVisualStyleBackColor = True
  3903. '
  3904. '詳細資料2_ch
  3905. '
  3906. Me.詳細資料2_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3907. Me.詳細資料2_ch.AutoSize = True
  3908. Me.詳細資料2_ch.Location = New System.Drawing.Point(773, 49)
  3909. Me.詳細資料2_ch.Name = "詳細資料2_ch"
  3910. Me.詳細資料2_ch.Size = New System.Drawing.Size(126, 20)
  3911. Me.詳細資料2_ch.TabIndex = 1832
  3912. Me.詳細資料2_ch.Text = "詳細資料 / Rincian"
  3913. Me.詳細資料2_ch.UseVisualStyleBackColor = True
  3914. '
  3915. '啟用批量選擇_ch
  3916. '
  3917. Me.啟用批量選擇_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3918. Me.啟用批量選擇_ch.AutoSize = True
  3919. Me.啟用批量選擇_ch.Location = New System.Drawing.Point(669, 50)
  3920. Me.啟用批量選擇_ch.Name = "啟用批量選擇_ch"
  3921. Me.啟用批量選擇_ch.Size = New System.Drawing.Size(98, 20)
  3922. Me.啟用批量選擇_ch.TabIndex = 1432
  3923. Me.啟用批量選擇_ch.Text = "啟用批量選擇"
  3924. Me.啟用批量選擇_ch.UseVisualStyleBackColor = True
  3925. '
  3926. '視窗3_pl
  3927. '
  3928. Me.視窗3_pl.BackColor = System.Drawing.Color.White
  3929. Me.視窗3_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3930. Me.視窗3_pl.Controls.Add(Me.Panel4)
  3931. Me.視窗3_pl.Controls.Add(Me.Label38)
  3932. Me.視窗3_pl.Controls.Add(Me.CanceL3_bt)
  3933. Me.視窗3_pl.Location = New System.Drawing.Point(825, 175)
  3934. Me.視窗3_pl.Name = "視窗3_pl"
  3935. Me.視窗3_pl.Size = New System.Drawing.Size(550, 485)
  3936. Me.視窗3_pl.TabIndex = 1430
  3937. '
  3938. 'Panel4
  3939. '
  3940. Me.Panel4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3941. Or System.Windows.Forms.AnchorStyles.Left) _
  3942. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3943. Me.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3944. Me.Panel4.Controls.Add(Me.報價係數1_dgv)
  3945. Me.Panel4.Controls.Add(Me.座標1_lb)
  3946. Me.Panel4.Controls.Add(Me.GroupBox4)
  3947. Me.Panel4.Controls.Add(Me.文字資料輸入2_bt)
  3948. Me.Panel4.Controls.Add(Me.Label13)
  3949. Me.Panel4.Controls.Add(Me.選擇項1_tb)
  3950. Me.Panel4.Controls.Add(Me.GroupBox3)
  3951. Me.Panel4.Controls.Add(Me.結果1_tb)
  3952. Me.Panel4.Controls.Add(Me.計算式1_tb)
  3953. Me.Panel4.Controls.Add(Me.數值3_tb)
  3954. Me.Panel4.Controls.Add(Me.數值4_tb)
  3955. Me.Panel4.Controls.Add(Me.Label36)
  3956. Me.Panel4.Location = New System.Drawing.Point(3, 28)
  3957. Me.Panel4.Name = "Panel4"
  3958. Me.Panel4.Size = New System.Drawing.Size(543, 453)
  3959. Me.Panel4.TabIndex = 1367
  3960. '
  3961. '報價係數1_dgv
  3962. '
  3963. Me.報價係數1_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3964. Me.報價係數1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3965. Me.報價係數1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3966. Me.報價係數1_dgv.Location = New System.Drawing.Point(320, 1)
  3967. Me.報價係數1_dgv.Name = "報價係數1_dgv"
  3968. Me.報價係數1_dgv.RowHeadersWidth = 5
  3969. Me.報價係數1_dgv.RowTemplate.Height = 24
  3970. Me.報價係數1_dgv.Size = New System.Drawing.Size(216, 445)
  3971. Me.報價係數1_dgv.TabIndex = 1384
  3972. '
  3973. '座標1_lb
  3974. '
  3975. Me.座標1_lb.AutoSize = True
  3976. Me.座標1_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3977. Me.座標1_lb.ForeColor = System.Drawing.Color.Green
  3978. Me.座標1_lb.Location = New System.Drawing.Point(172, 7)
  3979. Me.座標1_lb.Name = "座標1_lb"
  3980. Me.座標1_lb.Size = New System.Drawing.Size(55, 16)
  3981. Me.座標1_lb.TabIndex = 1378
  3982. Me.座標1_lb.Text = "讀取資料"
  3983. Me.座標1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3984. '
  3985. 'GroupBox4
  3986. '
  3987. Me.GroupBox4.Controls.Add(Me.鍵盤鎖定2_ch)
  3988. Me.GroupBox4.Controls.Add(Me.等於1_bt)
  3989. Me.GroupBox4.Controls.Add(Me.NUD_06)
  3990. Me.GroupBox4.Controls.Add(Me.清除1_bt)
  3991. Me.GroupBox4.Controls.Add(Me.NUD_04)
  3992. Me.GroupBox4.Controls.Add(Me.小數點1_bt)
  3993. Me.GroupBox4.Controls.Add(Me.倒退1_bt)
  3994. Me.GroupBox4.Controls.Add(Me.計算2_ch)
  3995. Me.GroupBox4.Controls.Add(Me.A0_bt)
  3996. Me.GroupBox4.Controls.Add(Me.A9_bt)
  3997. Me.GroupBox4.Controls.Add(Me.NUD_05)
  3998. Me.GroupBox4.Controls.Add(Me.A8_bt)
  3999. Me.GroupBox4.Controls.Add(Me.A7_bt)
  4000. Me.GroupBox4.Controls.Add(Me.A6_bt)
  4001. Me.GroupBox4.Controls.Add(Me.選擇1_lb)
  4002. Me.GroupBox4.Controls.Add(Me.A5_bt)
  4003. Me.GroupBox4.Controls.Add(Me.A4_bt)
  4004. Me.GroupBox4.Controls.Add(Me.A3_bt)
  4005. Me.GroupBox4.Controls.Add(Me.A2_bt)
  4006. Me.GroupBox4.Controls.Add(Me.A1_bt)
  4007. Me.GroupBox4.Controls.Add(Me.除1_bt)
  4008. Me.GroupBox4.Controls.Add(Me.乘1_bt)
  4009. Me.GroupBox4.Controls.Add(Me.減1_bt)
  4010. Me.GroupBox4.Controls.Add(Me.加1_bt)
  4011. Me.GroupBox4.ForeColor = System.Drawing.Color.Green
  4012. Me.GroupBox4.Location = New System.Drawing.Point(3, 193)
  4013. Me.GroupBox4.Name = "GroupBox4"
  4014. Me.GroupBox4.Size = New System.Drawing.Size(315, 257)
  4015. Me.GroupBox4.TabIndex = 1379
  4016. Me.GroupBox4.TabStop = False
  4017. Me.GroupBox4.Text = "數值計算"
  4018. '
  4019. '鍵盤鎖定2_ch
  4020. '
  4021. Me.鍵盤鎖定2_ch.AutoSize = True
  4022. Me.鍵盤鎖定2_ch.Location = New System.Drawing.Point(4, 17)
  4023. Me.鍵盤鎖定2_ch.Name = "鍵盤鎖定2_ch"
  4024. Me.鍵盤鎖定2_ch.Size = New System.Drawing.Size(194, 20)
  4025. Me.鍵盤鎖定2_ch.TabIndex = 1403
  4026. Me.鍵盤鎖定2_ch.Text = "鍵盤鎖定 (用鍵盤F1可快速切換)"
  4027. Me.鍵盤鎖定2_ch.UseVisualStyleBackColor = True
  4028. '
  4029. '等於1_bt
  4030. '
  4031. Me.等於1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4032. Me.等於1_bt.Location = New System.Drawing.Point(246, 161)
  4033. Me.等於1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4034. Me.等於1_bt.Name = "等於1_bt"
  4035. Me.等於1_bt.Size = New System.Drawing.Size(66, 72)
  4036. Me.等於1_bt.TabIndex = 1401
  4037. Me.等於1_bt.Text = "="
  4038. Me.等於1_bt.UseVisualStyleBackColor = True
  4039. '
  4040. 'NUD_06
  4041. '
  4042. Me.NUD_06.Location = New System.Drawing.Point(4, 65)
  4043. Me.NUD_06.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  4044. Me.NUD_06.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  4045. Me.NUD_06.Name = "NUD_06"
  4046. Me.NUD_06.Size = New System.Drawing.Size(307, 23)
  4047. Me.NUD_06.TabIndex = 1092
  4048. Me.NUD_06.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4049. Me.NUD_06.ThousandsSeparator = True
  4050. Me.NUD_06.Value = New Decimal(New Integer() {1410065407, 2, 0, 0})
  4051. '
  4052. '清除1_bt
  4053. '
  4054. Me.清除1_bt.DialogResult = System.Windows.Forms.DialogResult.Cancel
  4055. Me.清除1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4056. Me.清除1_bt.Location = New System.Drawing.Point(118, 197)
  4057. Me.清除1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4058. Me.清除1_bt.Name = "清除1_bt"
  4059. Me.清除1_bt.Size = New System.Drawing.Size(58, 36)
  4060. Me.清除1_bt.TabIndex = 1400
  4061. Me.清除1_bt.Text = "AC"
  4062. Me.清除1_bt.UseVisualStyleBackColor = True
  4063. '
  4064. 'NUD_04
  4065. '
  4066. Me.NUD_04.DecimalPlaces = 2
  4067. Me.NUD_04.Location = New System.Drawing.Point(4, 40)
  4068. Me.NUD_04.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  4069. Me.NUD_04.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  4070. Me.NUD_04.Name = "NUD_04"
  4071. Me.NUD_04.Size = New System.Drawing.Size(132, 23)
  4072. Me.NUD_04.TabIndex = 1087
  4073. Me.NUD_04.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4074. Me.NUD_04.ThousandsSeparator = True
  4075. '
  4076. '小數點1_bt
  4077. '
  4078. Me.小數點1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4079. Me.小數點1_bt.Location = New System.Drawing.Point(60, 197)
  4080. Me.小數點1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4081. Me.小數點1_bt.Name = "小數點1_bt"
  4082. Me.小數點1_bt.Size = New System.Drawing.Size(58, 36)
  4083. Me.小數點1_bt.TabIndex = 1399
  4084. Me.小數點1_bt.Text = "."
  4085. Me.小數點1_bt.UseVisualStyleBackColor = True
  4086. '
  4087. '倒退1_bt
  4088. '
  4089. Me.倒退1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4090. Me.倒退1_bt.Location = New System.Drawing.Point(246, 89)
  4091. Me.倒退1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4092. Me.倒退1_bt.Name = "倒退1_bt"
  4093. Me.倒退1_bt.Size = New System.Drawing.Size(66, 72)
  4094. Me.倒退1_bt.TabIndex = 1398
  4095. Me.倒退1_bt.Text = "➨"
  4096. Me.倒退1_bt.UseVisualStyleBackColor = True
  4097. '
  4098. '計算2_ch
  4099. '
  4100. Me.計算2_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  4101. Me.計算2_ch.ForeColor = System.Drawing.Color.Blue
  4102. Me.計算2_ch.FormattingEnabled = True
  4103. Me.計算2_ch.Items.AddRange(New Object() {"", "+", "-", "X", "/"})
  4104. Me.計算2_ch.Location = New System.Drawing.Point(141, 40)
  4105. Me.計算2_ch.Name = "計算2_ch"
  4106. Me.計算2_ch.Size = New System.Drawing.Size(33, 24)
  4107. Me.計算2_ch.TabIndex = 1089
  4108. '
  4109. 'A0_bt
  4110. '
  4111. Me.A0_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4112. Me.A0_bt.Location = New System.Drawing.Point(3, 197)
  4113. Me.A0_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4114. Me.A0_bt.Name = "A0_bt"
  4115. Me.A0_bt.Size = New System.Drawing.Size(58, 36)
  4116. Me.A0_bt.TabIndex = 1397
  4117. Me.A0_bt.Text = "0"
  4118. Me.A0_bt.UseVisualStyleBackColor = True
  4119. '
  4120. 'A9_bt
  4121. '
  4122. Me.A9_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4123. Me.A9_bt.Location = New System.Drawing.Point(117, 89)
  4124. Me.A9_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4125. Me.A9_bt.Name = "A9_bt"
  4126. Me.A9_bt.Size = New System.Drawing.Size(58, 36)
  4127. Me.A9_bt.TabIndex = 1396
  4128. Me.A9_bt.Text = "9"
  4129. Me.A9_bt.UseVisualStyleBackColor = True
  4130. '
  4131. 'NUD_05
  4132. '
  4133. Me.NUD_05.DecimalPlaces = 2
  4134. Me.NUD_05.Location = New System.Drawing.Point(179, 40)
  4135. Me.NUD_05.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  4136. Me.NUD_05.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  4137. Me.NUD_05.Name = "NUD_05"
  4138. Me.NUD_05.Size = New System.Drawing.Size(132, 23)
  4139. Me.NUD_05.TabIndex = 1090
  4140. Me.NUD_05.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4141. Me.NUD_05.ThousandsSeparator = True
  4142. '
  4143. 'A8_bt
  4144. '
  4145. Me.A8_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4146. Me.A8_bt.Location = New System.Drawing.Point(60, 89)
  4147. Me.A8_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4148. Me.A8_bt.Name = "A8_bt"
  4149. Me.A8_bt.Size = New System.Drawing.Size(58, 36)
  4150. Me.A8_bt.TabIndex = 1395
  4151. Me.A8_bt.Text = "8"
  4152. Me.A8_bt.UseVisualStyleBackColor = True
  4153. '
  4154. 'A7_bt
  4155. '
  4156. Me.A7_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4157. Me.A7_bt.Location = New System.Drawing.Point(3, 89)
  4158. Me.A7_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4159. Me.A7_bt.Name = "A7_bt"
  4160. Me.A7_bt.Size = New System.Drawing.Size(58, 36)
  4161. Me.A7_bt.TabIndex = 1394
  4162. Me.A7_bt.Text = "7"
  4163. Me.A7_bt.UseVisualStyleBackColor = True
  4164. '
  4165. 'A6_bt
  4166. '
  4167. Me.A6_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4168. Me.A6_bt.Location = New System.Drawing.Point(117, 125)
  4169. Me.A6_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4170. Me.A6_bt.Name = "A6_bt"
  4171. Me.A6_bt.Size = New System.Drawing.Size(58, 36)
  4172. Me.A6_bt.TabIndex = 1393
  4173. Me.A6_bt.Text = "6"
  4174. Me.A6_bt.UseVisualStyleBackColor = True
  4175. '
  4176. '選擇1_lb
  4177. '
  4178. Me.選擇1_lb.AutoSize = True
  4179. Me.選擇1_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4180. Me.選擇1_lb.ForeColor = System.Drawing.Color.Red
  4181. Me.選擇1_lb.Location = New System.Drawing.Point(31, 235)
  4182. Me.選擇1_lb.Name = "選擇1_lb"
  4183. Me.選擇1_lb.Size = New System.Drawing.Size(247, 16)
  4184. Me.選擇1_lb.TabIndex = 1373
  4185. Me.選擇1_lb.Text = "在明細表要帶入的位置連點兩下就可帶入結果"
  4186. Me.選擇1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4187. '
  4188. 'A5_bt
  4189. '
  4190. Me.A5_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4191. Me.A5_bt.Location = New System.Drawing.Point(60, 125)
  4192. Me.A5_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4193. Me.A5_bt.Name = "A5_bt"
  4194. Me.A5_bt.Size = New System.Drawing.Size(58, 36)
  4195. Me.A5_bt.TabIndex = 1392
  4196. Me.A5_bt.Text = "5"
  4197. Me.A5_bt.UseVisualStyleBackColor = True
  4198. '
  4199. 'A4_bt
  4200. '
  4201. Me.A4_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4202. Me.A4_bt.Location = New System.Drawing.Point(3, 125)
  4203. Me.A4_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4204. Me.A4_bt.Name = "A4_bt"
  4205. Me.A4_bt.Size = New System.Drawing.Size(58, 36)
  4206. Me.A4_bt.TabIndex = 1391
  4207. Me.A4_bt.Text = "4"
  4208. Me.A4_bt.UseVisualStyleBackColor = True
  4209. '
  4210. 'A3_bt
  4211. '
  4212. Me.A3_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4213. Me.A3_bt.Location = New System.Drawing.Point(117, 161)
  4214. Me.A3_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4215. Me.A3_bt.Name = "A3_bt"
  4216. Me.A3_bt.Size = New System.Drawing.Size(58, 36)
  4217. Me.A3_bt.TabIndex = 1390
  4218. Me.A3_bt.Text = "3"
  4219. Me.A3_bt.UseVisualStyleBackColor = True
  4220. '
  4221. 'A2_bt
  4222. '
  4223. Me.A2_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4224. Me.A2_bt.Location = New System.Drawing.Point(60, 161)
  4225. Me.A2_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4226. Me.A2_bt.Name = "A2_bt"
  4227. Me.A2_bt.Size = New System.Drawing.Size(58, 36)
  4228. Me.A2_bt.TabIndex = 1389
  4229. Me.A2_bt.Text = "2"
  4230. Me.A2_bt.UseVisualStyleBackColor = True
  4231. '
  4232. 'A1_bt
  4233. '
  4234. Me.A1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4235. Me.A1_bt.Location = New System.Drawing.Point(3, 161)
  4236. Me.A1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4237. Me.A1_bt.Name = "A1_bt"
  4238. Me.A1_bt.Size = New System.Drawing.Size(58, 36)
  4239. Me.A1_bt.TabIndex = 1388
  4240. Me.A1_bt.Text = "1"
  4241. Me.A1_bt.UseVisualStyleBackColor = True
  4242. '
  4243. '除1_bt
  4244. '
  4245. Me.除1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4246. Me.除1_bt.Location = New System.Drawing.Point(180, 125)
  4247. Me.除1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4248. Me.除1_bt.Name = "除1_bt"
  4249. Me.除1_bt.Size = New System.Drawing.Size(66, 36)
  4250. Me.除1_bt.TabIndex = 1387
  4251. Me.除1_bt.Text = "/"
  4252. Me.除1_bt.UseVisualStyleBackColor = True
  4253. '
  4254. '乘1_bt
  4255. '
  4256. Me.乘1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4257. Me.乘1_bt.Location = New System.Drawing.Point(180, 89)
  4258. Me.乘1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4259. Me.乘1_bt.Name = "乘1_bt"
  4260. Me.乘1_bt.Size = New System.Drawing.Size(66, 36)
  4261. Me.乘1_bt.TabIndex = 1386
  4262. Me.乘1_bt.Text = "X"
  4263. Me.乘1_bt.UseVisualStyleBackColor = True
  4264. '
  4265. '減1_bt
  4266. '
  4267. Me.減1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4268. Me.減1_bt.Location = New System.Drawing.Point(180, 197)
  4269. Me.減1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4270. Me.減1_bt.Name = "減1_bt"
  4271. Me.減1_bt.Size = New System.Drawing.Size(66, 36)
  4272. Me.減1_bt.TabIndex = 1385
  4273. Me.減1_bt.Text = "-"
  4274. Me.減1_bt.UseVisualStyleBackColor = True
  4275. '
  4276. '加1_bt
  4277. '
  4278. Me.加1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4279. Me.加1_bt.Location = New System.Drawing.Point(180, 161)
  4280. Me.加1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4281. Me.加1_bt.Name = "加1_bt"
  4282. Me.加1_bt.Size = New System.Drawing.Size(66, 36)
  4283. Me.加1_bt.TabIndex = 1384
  4284. Me.加1_bt.Text = "+"
  4285. Me.加1_bt.UseVisualStyleBackColor = True
  4286. '
  4287. '文字資料輸入2_bt
  4288. '
  4289. Me.文字資料輸入2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4290. Me.文字資料輸入2_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4291. Me.文字資料輸入2_bt.Location = New System.Drawing.Point(231, 3)
  4292. Me.文字資料輸入2_bt.Name = "文字資料輸入2_bt"
  4293. Me.文字資料輸入2_bt.Size = New System.Drawing.Size(86, 26)
  4294. Me.文字資料輸入2_bt.TabIndex = 1383
  4295. Me.文字資料輸入2_bt.Text = "文字資料輸入"
  4296. Me.文字資料輸入2_bt.UseVisualStyleBackColor = True
  4297. '
  4298. 'Label13
  4299. '
  4300. Me.Label13.AutoSize = True
  4301. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4302. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4303. Me.Label13.Location = New System.Drawing.Point(7, 6)
  4304. Me.Label13.Name = "Label13"
  4305. Me.Label13.Size = New System.Drawing.Size(67, 16)
  4306. Me.Label13.TabIndex = 1382
  4307. Me.Label13.Text = "目前選擇項"
  4308. Me.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4309. '
  4310. '選擇項1_tb
  4311. '
  4312. Me.選擇項1_tb.Enabled = False
  4313. Me.選擇項1_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4314. Me.選擇項1_tb.Location = New System.Drawing.Point(75, 3)
  4315. Me.選擇項1_tb.Name = "選擇項1_tb"
  4316. Me.選擇項1_tb.Size = New System.Drawing.Size(35, 23)
  4317. Me.選擇項1_tb.TabIndex = 1381
  4318. Me.選擇項1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4319. '
  4320. 'GroupBox3
  4321. '
  4322. Me.GroupBox3.Controls.Add(Me.Label14)
  4323. Me.GroupBox3.Controls.Add(Me.合計項1_cb)
  4324. Me.GroupBox3.Controls.Add(Me.單位1_tb)
  4325. Me.GroupBox3.Controls.Add(Me.備註1_tb)
  4326. Me.GroupBox3.Controls.Add(Me.內容1_tb)
  4327. Me.GroupBox3.Controls.Add(Me.數字2_ch)
  4328. Me.GroupBox3.Controls.Add(Me.中文小寫2_ch)
  4329. Me.GroupBox3.Controls.Add(Me.中文大寫2_ch)
  4330. Me.GroupBox3.Controls.Add(Me.ITEM2_cb)
  4331. Me.GroupBox3.Controls.Add(Me.Label18)
  4332. Me.GroupBox3.Controls.Add(Me.Label17)
  4333. Me.GroupBox3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4334. Me.GroupBox3.Location = New System.Drawing.Point(3, 27)
  4335. Me.GroupBox3.Name = "GroupBox3"
  4336. Me.GroupBox3.Size = New System.Drawing.Size(315, 165)
  4337. Me.GroupBox3.TabIndex = 1380
  4338. Me.GroupBox3.TabStop = False
  4339. Me.GroupBox3.Text = "文字輸入"
  4340. '
  4341. 'Label14
  4342. '
  4343. Me.Label14.AutoSize = True
  4344. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4345. Me.Label14.Location = New System.Drawing.Point(7, 139)
  4346. Me.Label14.Name = "Label14"
  4347. Me.Label14.Size = New System.Drawing.Size(43, 16)
  4348. Me.Label14.TabIndex = 1393
  4349. Me.Label14.Text = "合計項"
  4350. Me.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4351. '
  4352. '合計項1_cb
  4353. '
  4354. Me.合計項1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4355. Me.合計項1_cb.ForeColor = System.Drawing.Color.Blue
  4356. Me.合計項1_cb.FormattingEnabled = True
  4357. Me.合計項1_cb.Items.AddRange(New Object() {"", "Total:", "Total(壹):", "Total(貳):", "Total(參):", "Total(肆):", "Total(伍):", "Total(陸):", "Total(柒):", "Total(捌):", "Total(玖):", "Total(拾):"})
  4358. Me.合計項1_cb.Location = New System.Drawing.Point(52, 136)
  4359. Me.合計項1_cb.Name = "合計項1_cb"
  4360. Me.合計項1_cb.Size = New System.Drawing.Size(259, 24)
  4361. Me.合計項1_cb.TabIndex = 1392
  4362. '
  4363. '單位1_tb
  4364. '
  4365. Me.單位1_tb.Location = New System.Drawing.Point(7, 110)
  4366. Me.單位1_tb.Name = "單位1_tb"
  4367. Me.單位1_tb.Size = New System.Drawing.Size(78, 23)
  4368. Me.單位1_tb.TabIndex = 1390
  4369. Me.單位1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4370. '
  4371. '備註1_tb
  4372. '
  4373. Me.備註1_tb.Location = New System.Drawing.Point(88, 95)
  4374. Me.備註1_tb.Multiline = True
  4375. Me.備註1_tb.Name = "備註1_tb"
  4376. Me.備註1_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  4377. Me.備註1_tb.Size = New System.Drawing.Size(223, 39)
  4378. Me.備註1_tb.TabIndex = 1389
  4379. '
  4380. '內容1_tb
  4381. '
  4382. Me.內容1_tb.Location = New System.Drawing.Point(6, 40)
  4383. Me.內容1_tb.Multiline = True
  4384. Me.內容1_tb.Name = "內容1_tb"
  4385. Me.內容1_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  4386. Me.內容1_tb.Size = New System.Drawing.Size(305, 52)
  4387. Me.內容1_tb.TabIndex = 1388
  4388. '
  4389. '數字2_ch
  4390. '
  4391. Me.數字2_ch.AutoSize = True
  4392. Me.數字2_ch.Location = New System.Drawing.Point(263, 17)
  4393. Me.數字2_ch.Name = "數字2_ch"
  4394. Me.數字2_ch.Size = New System.Drawing.Size(50, 20)
  4395. Me.數字2_ch.TabIndex = 1387
  4396. Me.數字2_ch.Text = "數字"
  4397. Me.數字2_ch.UseVisualStyleBackColor = True
  4398. '
  4399. '中文小寫2_ch
  4400. '
  4401. Me.中文小寫2_ch.AutoSize = True
  4402. Me.中文小寫2_ch.Location = New System.Drawing.Point(182, 17)
  4403. Me.中文小寫2_ch.Name = "中文小寫2_ch"
  4404. Me.中文小寫2_ch.Size = New System.Drawing.Size(74, 20)
  4405. Me.中文小寫2_ch.TabIndex = 1386
  4406. Me.中文小寫2_ch.Text = "中文小寫"
  4407. Me.中文小寫2_ch.UseVisualStyleBackColor = True
  4408. '
  4409. '中文大寫2_ch
  4410. '
  4411. Me.中文大寫2_ch.AutoSize = True
  4412. Me.中文大寫2_ch.Checked = True
  4413. Me.中文大寫2_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4414. Me.中文大寫2_ch.Location = New System.Drawing.Point(101, 17)
  4415. Me.中文大寫2_ch.Name = "中文大寫2_ch"
  4416. Me.中文大寫2_ch.Size = New System.Drawing.Size(74, 20)
  4417. Me.中文大寫2_ch.TabIndex = 1385
  4418. Me.中文大寫2_ch.Text = "中文大寫"
  4419. Me.中文大寫2_ch.UseVisualStyleBackColor = True
  4420. '
  4421. 'ITEM2_cb
  4422. '
  4423. Me.ITEM2_cb.ForeColor = System.Drawing.Color.Blue
  4424. Me.ITEM2_cb.FormattingEnabled = True
  4425. Me.ITEM2_cb.Location = New System.Drawing.Point(44, 15)
  4426. Me.ITEM2_cb.Name = "ITEM2_cb"
  4427. Me.ITEM2_cb.Size = New System.Drawing.Size(51, 24)
  4428. Me.ITEM2_cb.TabIndex = 1384
  4429. '
  4430. 'Label18
  4431. '
  4432. Me.Label18.AutoSize = True
  4433. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4434. Me.Label18.Location = New System.Drawing.Point(7, 19)
  4435. Me.Label18.Name = "Label18"
  4436. Me.Label18.Size = New System.Drawing.Size(36, 16)
  4437. Me.Label18.TabIndex = 1383
  4438. Me.Label18.Text = "ITEM"
  4439. Me.Label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4440. '
  4441. 'Label17
  4442. '
  4443. Me.Label17.AutoSize = True
  4444. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4445. Me.Label17.Location = New System.Drawing.Point(7, 95)
  4446. Me.Label17.Name = "Label17"
  4447. Me.Label17.Size = New System.Drawing.Size(36, 16)
  4448. Me.Label17.TabIndex = 1391
  4449. Me.Label17.Text = "UNIT"
  4450. Me.Label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4451. '
  4452. '結果1_tb
  4453. '
  4454. Me.結果1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4455. Me.結果1_tb.Location = New System.Drawing.Point(246, 352)
  4456. Me.結果1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4457. Me.結果1_tb.Name = "結果1_tb"
  4458. Me.結果1_tb.Size = New System.Drawing.Size(234, 23)
  4459. Me.結果1_tb.TabIndex = 1355
  4460. Me.結果1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4461. Me.結果1_tb.Visible = False
  4462. '
  4463. '計算式1_tb
  4464. '
  4465. Me.計算式1_tb.Location = New System.Drawing.Point(91, 352)
  4466. Me.計算式1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4467. Me.計算式1_tb.Name = "計算式1_tb"
  4468. Me.計算式1_tb.Size = New System.Drawing.Size(63, 23)
  4469. Me.計算式1_tb.TabIndex = 1354
  4470. Me.計算式1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4471. Me.計算式1_tb.Visible = False
  4472. '
  4473. '數值3_tb
  4474. '
  4475. Me.數值3_tb.Location = New System.Drawing.Point(7, 352)
  4476. Me.數值3_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4477. Me.數值3_tb.Name = "數值3_tb"
  4478. Me.數值3_tb.Size = New System.Drawing.Size(80, 23)
  4479. Me.數值3_tb.TabIndex = 1353
  4480. Me.數值3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4481. Me.數值3_tb.Visible = False
  4482. '
  4483. '數值4_tb
  4484. '
  4485. Me.數值4_tb.Location = New System.Drawing.Point(160, 352)
  4486. Me.數值4_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4487. Me.數值4_tb.Name = "數值4_tb"
  4488. Me.數值4_tb.Size = New System.Drawing.Size(80, 23)
  4489. Me.數值4_tb.TabIndex = 1352
  4490. Me.數值4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4491. Me.數值4_tb.Visible = False
  4492. '
  4493. 'Label36
  4494. '
  4495. Me.Label36.AutoSize = True
  4496. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4497. Me.Label36.ForeColor = System.Drawing.Color.Green
  4498. Me.Label36.Location = New System.Drawing.Point(111, 7)
  4499. Me.Label36.Name = "Label36"
  4500. Me.Label36.Size = New System.Drawing.Size(64, 16)
  4501. Me.Label36.TabIndex = 1377
  4502. Me.Label36.Text = "目前選擇 : "
  4503. Me.Label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4504. '
  4505. 'Label38
  4506. '
  4507. Me.Label38.AutoSize = True
  4508. Me.Label38.Location = New System.Drawing.Point(5, 7)
  4509. Me.Label38.Name = "Label38"
  4510. Me.Label38.Size = New System.Drawing.Size(67, 16)
  4511. Me.Label38.TabIndex = 1375
  4512. Me.Label38.Text = "明細表編輯"
  4513. '
  4514. 'CanceL3_bt
  4515. '
  4516. Me.CanceL3_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4517. Me.CanceL3_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  4518. Me.CanceL3_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4519. Me.CanceL3_bt.ForeColor = System.Drawing.Color.Black
  4520. Me.CanceL3_bt.Location = New System.Drawing.Point(518, 2)
  4521. Me.CanceL3_bt.Name = "CanceL3_bt"
  4522. Me.CanceL3_bt.Size = New System.Drawing.Size(26, 26)
  4523. Me.CanceL3_bt.TabIndex = 1374
  4524. Me.CanceL3_bt.Text = "X"
  4525. Me.CanceL3_bt.UseVisualStyleBackColor = False
  4526. '
  4527. '視窗1_pl
  4528. '
  4529. Me.視窗1_pl.BackColor = System.Drawing.Color.White
  4530. Me.視窗1_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4531. Me.視窗1_pl.Controls.Add(Me.物料群組_Panel)
  4532. Me.視窗1_pl.Controls.Add(Me.Cancel1_bt)
  4533. Me.視窗1_pl.Controls.Add(Me.合約_lb)
  4534. Me.視窗1_pl.Controls.Add(Me.Label37)
  4535. Me.視窗1_pl.Location = New System.Drawing.Point(135, 293)
  4536. Me.視窗1_pl.Name = "視窗1_pl"
  4537. Me.視窗1_pl.Size = New System.Drawing.Size(395, 90)
  4538. Me.視窗1_pl.TabIndex = 1401
  4539. '
  4540. '物料群組_Panel
  4541. '
  4542. Me.物料群組_Panel.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  4543. Or System.Windows.Forms.AnchorStyles.Left) _
  4544. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4545. Me.物料群組_Panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  4546. Me.物料群組_Panel.Controls.Add(Me.複製係數範本_tb)
  4547. Me.物料群組_Panel.Controls.Add(Me.係數項目新增_bt)
  4548. Me.物料群組_Panel.Controls.Add(Me.係數項目刪除_bt)
  4549. Me.物料群組_Panel.Controls.Add(Me.係數項目修改_bt)
  4550. Me.物料群組_Panel.Controls.Add(Me.係數單位_cb)
  4551. Me.物料群組_Panel.Controls.Add(Me.Label10)
  4552. Me.物料群組_Panel.Controls.Add(Me.Label12)
  4553. Me.物料群組_Panel.Controls.Add(Me.係數項目_cb)
  4554. Me.物料群組_Panel.Controls.Add(Me.Label11)
  4555. Me.物料群組_Panel.Controls.Add(Me.係數_nup)
  4556. Me.物料群組_Panel.Location = New System.Drawing.Point(3, 28)
  4557. Me.物料群組_Panel.Name = "物料群組_Panel"
  4558. Me.物料群組_Panel.Size = New System.Drawing.Size(388, 58)
  4559. Me.物料群組_Panel.TabIndex = 1367
  4560. '
  4561. '複製係數範本_tb
  4562. '
  4563. Me.複製係數範本_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4564. Me.複製係數範本_tb.ForeColor = System.Drawing.Color.Black
  4565. Me.複製係數範本_tb.Location = New System.Drawing.Point(176, 3)
  4566. Me.複製係數範本_tb.Name = "複製係數範本_tb"
  4567. Me.複製係數範本_tb.Size = New System.Drawing.Size(58, 48)
  4568. Me.複製係數範本_tb.TabIndex = 1398
  4569. Me.複製係數範本_tb.Text = "複製範本項目"
  4570. Me.複製係數範本_tb.UseVisualStyleBackColor = True
  4571. '
  4572. '係數項目新增_bt
  4573. '
  4574. Me.係數項目新增_bt.BackgroundImage = CType(resources.GetObject("係數項目新增_bt.BackgroundImage"), System.Drawing.Image)
  4575. Me.係數項目新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4576. Me.係數項目新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4577. Me.係數項目新增_bt.ForeColor = System.Drawing.Color.Blue
  4578. Me.係數項目新增_bt.Location = New System.Drawing.Point(235, 3)
  4579. Me.係數項目新增_bt.Name = "係數項目新增_bt"
  4580. Me.係數項目新增_bt.Size = New System.Drawing.Size(48, 48)
  4581. Me.係數項目新增_bt.TabIndex = 1363
  4582. Me.係數項目新增_bt.UseVisualStyleBackColor = True
  4583. '
  4584. '係數項目刪除_bt
  4585. '
  4586. Me.係數項目刪除_bt.BackgroundImage = CType(resources.GetObject("係數項目刪除_bt.BackgroundImage"), System.Drawing.Image)
  4587. Me.係數項目刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4588. Me.係數項目刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4589. Me.係數項目刪除_bt.ForeColor = System.Drawing.Color.Red
  4590. Me.係數項目刪除_bt.Location = New System.Drawing.Point(331, 3)
  4591. Me.係數項目刪除_bt.Name = "係數項目刪除_bt"
  4592. Me.係數項目刪除_bt.Size = New System.Drawing.Size(48, 48)
  4593. Me.係數項目刪除_bt.TabIndex = 1365
  4594. Me.係數項目刪除_bt.UseVisualStyleBackColor = True
  4595. '
  4596. '係數項目修改_bt
  4597. '
  4598. Me.係數項目修改_bt.BackgroundImage = CType(resources.GetObject("係數項目修改_bt.BackgroundImage"), System.Drawing.Image)
  4599. Me.係數項目修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4600. Me.係數項目修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4601. Me.係數項目修改_bt.ForeColor = System.Drawing.Color.DarkGreen
  4602. Me.係數項目修改_bt.Location = New System.Drawing.Point(283, 3)
  4603. Me.係數項目修改_bt.Name = "係數項目修改_bt"
  4604. Me.係數項目修改_bt.Size = New System.Drawing.Size(48, 48)
  4605. Me.係數項目修改_bt.TabIndex = 1364
  4606. Me.係數項目修改_bt.UseVisualStyleBackColor = True
  4607. '
  4608. '係數單位_cb
  4609. '
  4610. Me.係數單位_cb.ForeColor = System.Drawing.Color.Blue
  4611. Me.係數單位_cb.FormattingEnabled = True
  4612. Me.係數單位_cb.Location = New System.Drawing.Point(130, 28)
  4613. Me.係數單位_cb.Name = "係數單位_cb"
  4614. Me.係數單位_cb.Size = New System.Drawing.Size(44, 24)
  4615. Me.係數單位_cb.TabIndex = 1397
  4616. '
  4617. 'Label10
  4618. '
  4619. Me.Label10.AutoSize = True
  4620. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4621. Me.Label10.Location = New System.Drawing.Point(3, 7)
  4622. Me.Label10.Name = "Label10"
  4623. Me.Label10.Size = New System.Drawing.Size(31, 16)
  4624. Me.Label10.TabIndex = 1392
  4625. Me.Label10.Text = "項目"
  4626. Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4627. '
  4628. 'Label12
  4629. '
  4630. Me.Label12.AutoSize = True
  4631. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4632. Me.Label12.Location = New System.Drawing.Point(96, 32)
  4633. Me.Label12.Name = "Label12"
  4634. Me.Label12.Size = New System.Drawing.Size(31, 16)
  4635. Me.Label12.TabIndex = 1396
  4636. Me.Label12.Text = "單位"
  4637. Me.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4638. '
  4639. '係數項目_cb
  4640. '
  4641. Me.係數項目_cb.ForeColor = System.Drawing.Color.Blue
  4642. Me.係數項目_cb.FormattingEnabled = True
  4643. Me.係數項目_cb.Location = New System.Drawing.Point(37, 3)
  4644. Me.係數項目_cb.Name = "係數項目_cb"
  4645. Me.係數項目_cb.Size = New System.Drawing.Size(137, 24)
  4646. Me.係數項目_cb.TabIndex = 1393
  4647. '
  4648. 'Label11
  4649. '
  4650. Me.Label11.AutoSize = True
  4651. Me.Label11.Location = New System.Drawing.Point(3, 32)
  4652. Me.Label11.Name = "Label11"
  4653. Me.Label11.Size = New System.Drawing.Size(31, 16)
  4654. Me.Label11.TabIndex = 1395
  4655. Me.Label11.Text = "係數"
  4656. '
  4657. '係數_nup
  4658. '
  4659. Me.係數_nup.Location = New System.Drawing.Point(37, 29)
  4660. Me.係數_nup.Maximum = New Decimal(New Integer() {10000000, 0, 0, 0})
  4661. Me.係數_nup.Name = "係數_nup"
  4662. Me.係數_nup.Size = New System.Drawing.Size(56, 23)
  4663. Me.係數_nup.TabIndex = 1394
  4664. Me.係數_nup.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4665. Me.係數_nup.ThousandsSeparator = True
  4666. '
  4667. 'Cancel1_bt
  4668. '
  4669. Me.Cancel1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4670. Me.Cancel1_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  4671. Me.Cancel1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4672. Me.Cancel1_bt.ForeColor = System.Drawing.Color.Black
  4673. Me.Cancel1_bt.Location = New System.Drawing.Point(363, 2)
  4674. Me.Cancel1_bt.Name = "Cancel1_bt"
  4675. Me.Cancel1_bt.Size = New System.Drawing.Size(26, 26)
  4676. Me.Cancel1_bt.TabIndex = 1374
  4677. Me.Cancel1_bt.Text = "X"
  4678. Me.Cancel1_bt.UseVisualStyleBackColor = False
  4679. '
  4680. '合約_lb
  4681. '
  4682. Me.合約_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4683. Me.合約_lb.AutoSize = True
  4684. Me.合約_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4685. Me.合約_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4686. Me.合約_lb.Location = New System.Drawing.Point(137, 7)
  4687. Me.合約_lb.Name = "合約_lb"
  4688. Me.合約_lb.Size = New System.Drawing.Size(31, 16)
  4689. Me.合約_lb.TabIndex = 1399
  4690. Me.合約_lb.Text = "合約"
  4691. Me.合約_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4692. '
  4693. 'Label37
  4694. '
  4695. Me.Label37.AutoSize = True
  4696. Me.Label37.Location = New System.Drawing.Point(5, 7)
  4697. Me.Label37.Name = "Label37"
  4698. Me.Label37.Size = New System.Drawing.Size(130, 16)
  4699. Me.Label37.TabIndex = 1375
  4700. Me.Label37.Text = "係數表編輯 目前資料 :"
  4701. '
  4702. '報價係數_dgv
  4703. '
  4704. Me.報價係數_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4705. Me.報價係數_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  4706. Me.報價係數_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  4707. Me.報價係數_dgv.Location = New System.Drawing.Point(1004, 3)
  4708. Me.報價係數_dgv.Name = "報價係數_dgv"
  4709. Me.報價係數_dgv.RowHeadersWidth = 5
  4710. Me.報價係數_dgv.RowTemplate.Height = 24
  4711. Me.報價係數_dgv.Size = New System.Drawing.Size(255, 87)
  4712. Me.報價係數_dgv.TabIndex = 1382
  4713. '
  4714. '報價單立約日期_dtp
  4715. '
  4716. Me.報價單立約日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4717. Me.報價單立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  4718. Me.報價單立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  4719. Me.報價單立約日期_dtp.Location = New System.Drawing.Point(431, 0)
  4720. Me.報價單立約日期_dtp.Name = "報價單立約日期_dtp"
  4721. Me.報價單立約日期_dtp.Size = New System.Drawing.Size(95, 23)
  4722. Me.報價單立約日期_dtp.TabIndex = 1388
  4723. '
  4724. 'Label27
  4725. '
  4726. Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4727. Me.Label27.AutoSize = True
  4728. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4729. Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4730. Me.Label27.Location = New System.Drawing.Point(374, 3)
  4731. Me.Label27.Name = "Label27"
  4732. Me.Label27.Size = New System.Drawing.Size(55, 16)
  4733. Me.Label27.TabIndex = 1387
  4734. Me.Label27.Text = "合約日期"
  4735. Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4736. '
  4737. 'Label26
  4738. '
  4739. Me.Label26.AutoSize = True
  4740. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4741. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4742. Me.Label26.Location = New System.Drawing.Point(6, 3)
  4743. Me.Label26.Name = "Label26"
  4744. Me.Label26.Size = New System.Drawing.Size(55, 16)
  4745. Me.Label26.TabIndex = 1386
  4746. Me.Label26.Text = "合約編號"
  4747. Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4748. '
  4749. '報價單合約編號_tb
  4750. '
  4751. Me.報價單合約編號_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4752. Me.報價單合約編號_tb.Enabled = False
  4753. Me.報價單合約編號_tb.Location = New System.Drawing.Point(62, 3)
  4754. Me.報價單合約編號_tb.Name = "報價單合約編號_tb"
  4755. Me.報價單合約編號_tb.Size = New System.Drawing.Size(163, 16)
  4756. Me.報價單合約編號_tb.TabIndex = 1385
  4757. '
  4758. '報價工程名稱_英_tb
  4759. '
  4760. Me.報價工程名稱_英_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4761. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4762. Me.報價工程名稱_英_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4763. Me.報價工程名稱_英_tb.Enabled = False
  4764. Me.報價工程名稱_英_tb.Location = New System.Drawing.Point(94, 72)
  4765. Me.報價工程名稱_英_tb.Name = "報價工程名稱_英_tb"
  4766. Me.報價工程名稱_英_tb.Size = New System.Drawing.Size(432, 16)
  4767. Me.報價工程名稱_英_tb.TabIndex = 1362
  4768. '
  4769. '報價工程名稱_中_tb
  4770. '
  4771. Me.報價工程名稱_中_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4772. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4773. Me.報價工程名稱_中_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4774. Me.報價工程名稱_中_tb.Enabled = False
  4775. Me.報價工程名稱_中_tb.Location = New System.Drawing.Point(94, 50)
  4776. Me.報價工程名稱_中_tb.Name = "報價工程名稱_中_tb"
  4777. Me.報價工程名稱_中_tb.Size = New System.Drawing.Size(432, 16)
  4778. Me.報價工程名稱_中_tb.TabIndex = 1361
  4779. '
  4780. 'Label9
  4781. '
  4782. Me.Label9.AutoSize = True
  4783. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4784. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4785. Me.Label9.Location = New System.Drawing.Point(6, 72)
  4786. Me.Label9.Name = "Label9"
  4787. Me.Label9.Size = New System.Drawing.Size(87, 16)
  4788. Me.Label9.TabIndex = 1360
  4789. Me.Label9.Text = "工程名稱(英文)"
  4790. '
  4791. 'Label8
  4792. '
  4793. Me.Label8.AutoSize = True
  4794. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4795. Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4796. Me.Label8.Location = New System.Drawing.Point(6, 49)
  4797. Me.Label8.Name = "Label8"
  4798. Me.Label8.Size = New System.Drawing.Size(87, 16)
  4799. Me.Label8.TabIndex = 1359
  4800. Me.Label8.Text = "工程名稱(中文)"
  4801. '
  4802. '報價單客戶名稱_cb
  4803. '
  4804. Me.報價單客戶名稱_cb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4805. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4806. Me.報價單客戶名稱_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  4807. Me.報價單客戶名稱_cb.Enabled = False
  4808. Me.報價單客戶名稱_cb.FormattingEnabled = True
  4809. Me.報價單客戶名稱_cb.Location = New System.Drawing.Point(62, 23)
  4810. Me.報價單客戶名稱_cb.Name = "報價單客戶名稱_cb"
  4811. Me.報價單客戶名稱_cb.Size = New System.Drawing.Size(464, 24)
  4812. Me.報價單客戶名稱_cb.TabIndex = 1358
  4813. '
  4814. 'Label6
  4815. '
  4816. Me.Label6.AutoSize = True
  4817. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4818. Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4819. Me.Label6.Location = New System.Drawing.Point(6, 28)
  4820. Me.Label6.Name = "Label6"
  4821. Me.Label6.Size = New System.Drawing.Size(55, 16)
  4822. Me.Label6.TabIndex = 1357
  4823. Me.Label6.Text = "客戶名稱"
  4824. '
  4825. '報價明細表_dgv
  4826. '
  4827. Me.報價明細表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  4828. Or System.Windows.Forms.AnchorStyles.Left) _
  4829. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4830. Me.報價明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  4831. Me.報價明細表_dgv.BackgroundColor = System.Drawing.Color.White
  4832. Me.報價明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  4833. Me.報價明細表_dgv.Location = New System.Drawing.Point(3, 120)
  4834. Me.報價明細表_dgv.Name = "報價明細表_dgv"
  4835. Me.報價明細表_dgv.RowHeadersWidth = 5
  4836. DataGridViewCellStyle8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4837. DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  4838. Me.報價明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle8
  4839. Me.報價明細表_dgv.RowTemplate.Height = 24
  4840. Me.報價明細表_dgv.Size = New System.Drawing.Size(1406, 881)
  4841. Me.報價明細表_dgv.TabIndex = 1389
  4842. '
  4843. 'Panel5
  4844. '
  4845. Me.Panel5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4846. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4847. Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4848. Me.Panel5.Controls.Add(Me.Label75)
  4849. Me.Panel5.Controls.Add(Me.Label22)
  4850. Me.Panel5.Controls.Add(Me.Label33)
  4851. Me.Panel5.Controls.Add(Me.工資_ch)
  4852. Me.Panel5.Controls.Add(Me.料號_tb)
  4853. Me.Panel5.Controls.Add(Me.單位2_tb)
  4854. Me.Panel5.Controls.Add(Me.Label32)
  4855. Me.Panel5.Controls.Add(Me.申請數_lb)
  4856. Me.Panel5.Controls.Add(Me.ITEM3_cb)
  4857. Me.Panel5.Controls.Add(Me.申請數_nud)
  4858. Me.Panel5.Controls.Add(Me.利潤表_ch)
  4859. Me.Panel5.Controls.Add(Me.材料_ch)
  4860. Me.Panel5.Location = New System.Drawing.Point(3, 92)
  4861. Me.Panel5.Name = "Panel5"
  4862. Me.Panel5.Size = New System.Drawing.Size(1405, 29)
  4863. Me.Panel5.TabIndex = 1431
  4864. '
  4865. 'Label75
  4866. '
  4867. Me.Label75.AutoSize = True
  4868. Me.Label75.ForeColor = System.Drawing.Color.Red
  4869. Me.Label75.Location = New System.Drawing.Point(778, 5)
  4870. Me.Label75.Name = "Label75"
  4871. Me.Label75.Size = New System.Drawing.Size(285, 16)
  4872. Me.Label75.TabIndex = 1429
  4873. Me.Label75.Text = "請注意 : 表中的 * 與 @ 為系統供自計算所需請勿刪除"
  4874. '
  4875. 'Label22
  4876. '
  4877. Me.Label22.AutoSize = True
  4878. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4879. Me.Label22.Location = New System.Drawing.Point(324, 5)
  4880. Me.Label22.Name = "Label22"
  4881. Me.Label22.Size = New System.Drawing.Size(36, 16)
  4882. Me.Label22.TabIndex = 1421
  4883. Me.Label22.Text = "ITEM"
  4884. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4885. '
  4886. 'Label33
  4887. '
  4888. Me.Label33.AutoSize = True
  4889. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4890. Me.Label33.Location = New System.Drawing.Point(414, 5)
  4891. Me.Label33.Name = "Label33"
  4892. Me.Label33.Size = New System.Drawing.Size(36, 16)
  4893. Me.Label33.TabIndex = 1428
  4894. Me.Label33.Text = "UNIT"
  4895. Me.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4896. '
  4897. '工資_ch
  4898. '
  4899. Me.工資_ch.AutoSize = True
  4900. Me.工資_ch.Checked = True
  4901. Me.工資_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4902. Me.工資_ch.Location = New System.Drawing.Point(116, 3)
  4903. Me.工資_ch.Name = "工資_ch"
  4904. Me.工資_ch.Size = New System.Drawing.Size(86, 20)
  4905. Me.工資_ch.TabIndex = 1424
  4906. Me.工資_ch.Text = "工資 / GAJI"
  4907. Me.工資_ch.UseVisualStyleBackColor = True
  4908. '
  4909. '料號_tb
  4910. '
  4911. Me.料號_tb.Enabled = False
  4912. Me.料號_tb.Location = New System.Drawing.Point(642, 2)
  4913. Me.料號_tb.Name = "料號_tb"
  4914. Me.料號_tb.Size = New System.Drawing.Size(136, 23)
  4915. Me.料號_tb.TabIndex = 1417
  4916. '
  4917. '單位2_tb
  4918. '
  4919. Me.單位2_tb.Location = New System.Drawing.Point(450, 2)
  4920. Me.單位2_tb.Name = "單位2_tb"
  4921. Me.單位2_tb.Size = New System.Drawing.Size(45, 23)
  4922. Me.單位2_tb.TabIndex = 1427
  4923. Me.單位2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4924. '
  4925. 'Label32
  4926. '
  4927. Me.Label32.AutoSize = True
  4928. Me.Label32.Location = New System.Drawing.Point(607, 5)
  4929. Me.Label32.Name = "Label32"
  4930. Me.Label32.Size = New System.Drawing.Size(31, 16)
  4931. Me.Label32.TabIndex = 1418
  4932. Me.Label32.Text = "料號"
  4933. '
  4934. '申請數_lb
  4935. '
  4936. Me.申請數_lb.AutoSize = True
  4937. Me.申請數_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4938. Me.申請數_lb.Location = New System.Drawing.Point(501, 5)
  4939. Me.申請數_lb.Name = "申請數_lb"
  4940. Me.申請數_lb.Size = New System.Drawing.Size(31, 16)
  4941. Me.申請數_lb.TabIndex = 1419
  4942. Me.申請數_lb.Text = "數量"
  4943. '
  4944. 'ITEM3_cb
  4945. '
  4946. Me.ITEM3_cb.ForeColor = System.Drawing.Color.Blue
  4947. Me.ITEM3_cb.FormattingEnabled = True
  4948. 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"})
  4949. Me.ITEM3_cb.Location = New System.Drawing.Point(361, 1)
  4950. Me.ITEM3_cb.Name = "ITEM3_cb"
  4951. Me.ITEM3_cb.Size = New System.Drawing.Size(51, 24)
  4952. Me.ITEM3_cb.TabIndex = 1422
  4953. '
  4954. '申請數_nud
  4955. '
  4956. Me.申請數_nud.Location = New System.Drawing.Point(534, 2)
  4957. Me.申請數_nud.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
  4958. Me.申請數_nud.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
  4959. Me.申請數_nud.Name = "申請數_nud"
  4960. Me.申請數_nud.Size = New System.Drawing.Size(67, 23)
  4961. Me.申請數_nud.TabIndex = 1420
  4962. Me.申請數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4963. '
  4964. '利潤表_ch
  4965. '
  4966. Me.利潤表_ch.AutoSize = True
  4967. Me.利潤表_ch.Location = New System.Drawing.Point(8, 3)
  4968. Me.利潤表_ch.Name = "利潤表_ch"
  4969. Me.利潤表_ch.Size = New System.Drawing.Size(102, 20)
  4970. Me.利潤表_ch.TabIndex = 1426
  4971. Me.利潤表_ch.Text = "利潤表 / LABA"
  4972. Me.利潤表_ch.UseVisualStyleBackColor = True
  4973. '
  4974. '材料_ch
  4975. '
  4976. Me.材料_ch.AutoSize = True
  4977. Me.材料_ch.Checked = True
  4978. Me.材料_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4979. Me.材料_ch.Location = New System.Drawing.Point(208, 3)
  4980. Me.材料_ch.Name = "材料_ch"
  4981. Me.材料_ch.Size = New System.Drawing.Size(103, 20)
  4982. Me.材料_ch.TabIndex = 1425
  4983. Me.材料_ch.Text = "材料 / BAHAN"
  4984. Me.材料_ch.UseVisualStyleBackColor = True
  4985. '
  4986. '係數範本_tb
  4987. '
  4988. Me.係數範本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4989. Me.係數範本_tb.Location = New System.Drawing.Point(902, 1)
  4990. Me.係數範本_tb.Name = "係數範本_tb"
  4991. Me.係數範本_tb.Size = New System.Drawing.Size(100, 45)
  4992. Me.係數範本_tb.TabIndex = 1391
  4993. Me.係數範本_tb.Text = "係數範本"
  4994. Me.係數範本_tb.UseVisualStyleBackColor = True
  4995. '
  4996. '編輯係數_bt
  4997. '
  4998. Me.編輯係數_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4999. Me.編輯係數_bt.Location = New System.Drawing.Point(902, 46)
  5000. Me.編輯係數_bt.Name = "編輯係數_bt"
  5001. Me.編輯係數_bt.Size = New System.Drawing.Size(100, 45)
  5002. Me.編輯係數_bt.TabIndex = 1400
  5003. Me.編輯係數_bt.Text = "編輯係數"
  5004. Me.編輯係數_bt.UseVisualStyleBackColor = True
  5005. '
  5006. '規格顯示修改_bt
  5007. '
  5008. Me.規格顯示修改_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5009. Me.規格顯示修改_bt.BackgroundImage = CType(resources.GetObject("規格顯示修改_bt.BackgroundImage"), System.Drawing.Image)
  5010. Me.規格顯示修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5011. Me.規格顯示修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5012. Me.規格顯示修改_bt.ForeColor = System.Drawing.Color.DarkGreen
  5013. Me.規格顯示修改_bt.Location = New System.Drawing.Point(527, 46)
  5014. Me.規格顯示修改_bt.Name = "規格顯示修改_bt"
  5015. Me.規格顯示修改_bt.Size = New System.Drawing.Size(45, 45)
  5016. Me.規格顯示修改_bt.TabIndex = 1429
  5017. Me.規格顯示修改_bt.UseVisualStyleBackColor = True
  5018. '
  5019. '修改明細表上的材料指定_bt
  5020. '
  5021. Me.修改明細表上的材料指定_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5022. Me.修改明細表上的材料指定_bt.BackgroundImage = CType(resources.GetObject("修改明細表上的材料指定_bt.BackgroundImage"), System.Drawing.Image)
  5023. Me.修改明細表上的材料指定_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5024. Me.修改明細表上的材料指定_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5025. Me.修改明細表上的材料指定_bt.ForeColor = System.Drawing.Color.Purple
  5026. Me.修改明細表上的材料指定_bt.Location = New System.Drawing.Point(782, 1)
  5027. Me.修改明細表上的材料指定_bt.Name = "修改明細表上的材料指定_bt"
  5028. Me.修改明細表上的材料指定_bt.Size = New System.Drawing.Size(120, 45)
  5029. Me.修改明細表上的材料指定_bt.TabIndex = 1414
  5030. Me.修改明細表上的材料指定_bt.UseVisualStyleBackColor = True
  5031. '
  5032. '選擇材料新增到明細表_bt
  5033. '
  5034. Me.選擇材料新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5035. Me.選擇材料新增到明細表_bt.BackgroundImage = CType(resources.GetObject("選擇材料新增到明細表_bt.BackgroundImage"), System.Drawing.Image)
  5036. Me.選擇材料新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5037. Me.選擇材料新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5038. Me.選擇材料新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  5039. Me.選擇材料新增到明細表_bt.Location = New System.Drawing.Point(662, 1)
  5040. Me.選擇材料新增到明細表_bt.Name = "選擇材料新增到明細表_bt"
  5041. Me.選擇材料新增到明細表_bt.Size = New System.Drawing.Size(120, 45)
  5042. Me.選擇材料新增到明細表_bt.TabIndex = 1413
  5043. Me.選擇材料新增到明細表_bt.UseVisualStyleBackColor = True
  5044. '
  5045. '新增資料2_bt
  5046. '
  5047. Me.新增資料2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5048. Me.新增資料2_bt.BackgroundImage = CType(resources.GetObject("新增資料2_bt.BackgroundImage"), System.Drawing.Image)
  5049. Me.新增資料2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5050. Me.新增資料2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5051. Me.新增資料2_bt.ForeColor = System.Drawing.Color.Blue
  5052. Me.新增資料2_bt.Location = New System.Drawing.Point(572, 1)
  5053. Me.新增資料2_bt.Name = "新增資料2_bt"
  5054. Me.新增資料2_bt.Size = New System.Drawing.Size(45, 45)
  5055. Me.新增資料2_bt.TabIndex = 1409
  5056. Me.新增資料2_bt.UseVisualStyleBackColor = True
  5057. '
  5058. '總表選擇刪除1_bt
  5059. '
  5060. Me.總表選擇刪除1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5061. Me.總表選擇刪除1_bt.BackgroundImage = CType(resources.GetObject("總表選擇刪除1_bt.BackgroundImage"), System.Drawing.Image)
  5062. Me.總表選擇刪除1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5063. Me.總表選擇刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5064. Me.總表選擇刪除1_bt.ForeColor = System.Drawing.Color.Red
  5065. Me.總表選擇刪除1_bt.Location = New System.Drawing.Point(618, 46)
  5066. Me.總表選擇刪除1_bt.Name = "總表選擇刪除1_bt"
  5067. Me.總表選擇刪除1_bt.Size = New System.Drawing.Size(45, 45)
  5068. Me.總表選擇刪除1_bt.TabIndex = 1411
  5069. Me.總表選擇刪除1_bt.UseVisualStyleBackColor = True
  5070. '
  5071. '明細表編輯_bt
  5072. '
  5073. Me.明細表編輯_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5074. Me.明細表編輯_bt.BackgroundImage = CType(resources.GetObject("明細表編輯_bt.BackgroundImage"), System.Drawing.Image)
  5075. Me.明細表編輯_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5076. Me.明細表編輯_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5077. Me.明細表編輯_bt.ForeColor = System.Drawing.Color.Green
  5078. Me.明細表編輯_bt.Location = New System.Drawing.Point(617, 1)
  5079. Me.明細表編輯_bt.Name = "明細表編輯_bt"
  5080. Me.明細表編輯_bt.Size = New System.Drawing.Size(45, 45)
  5081. Me.明細表編輯_bt.TabIndex = 1412
  5082. Me.明細表編輯_bt.UseVisualStyleBackColor = True
  5083. '
  5084. '報價明細表存檔_bt
  5085. '
  5086. Me.報價明細表存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5087. Me.報價明細表存檔_bt.BackgroundImage = CType(resources.GetObject("報價明細表存檔_bt.BackgroundImage"), System.Drawing.Image)
  5088. Me.報價明細表存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5089. Me.報價明細表存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5090. Me.報價明細表存檔_bt.ForeColor = System.Drawing.Color.DarkGreen
  5091. Me.報價明細表存檔_bt.Location = New System.Drawing.Point(572, 46)
  5092. Me.報價明細表存檔_bt.Name = "報價明細表存檔_bt"
  5093. Me.報價明細表存檔_bt.Size = New System.Drawing.Size(45, 45)
  5094. Me.報價明細表存檔_bt.TabIndex = 1410
  5095. Me.報價明細表存檔_bt.UseVisualStyleBackColor = True
  5096. '
  5097. '排序2_bt
  5098. '
  5099. Me.排序2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5100. Me.排序2_bt.BackgroundImage = CType(resources.GetObject("排序2_bt.BackgroundImage"), System.Drawing.Image)
  5101. Me.排序2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5102. Me.排序2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5103. Me.排序2_bt.ForeColor = System.Drawing.Color.Green
  5104. Me.排序2_bt.Location = New System.Drawing.Point(527, 1)
  5105. Me.排序2_bt.Name = "排序2_bt"
  5106. Me.排序2_bt.Size = New System.Drawing.Size(45, 45)
  5107. Me.排序2_bt.TabIndex = 1407
  5108. Me.排序2_bt.UseVisualStyleBackColor = True
  5109. '
  5110. '物料圖1_pb
  5111. '
  5112. Me.物料圖1_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5113. Me.物料圖1_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  5114. Me.物料圖1_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  5115. Me.物料圖1_pb.Location = New System.Drawing.Point(1262, 1)
  5116. Me.物料圖1_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  5117. Me.物料圖1_pb.Name = "物料圖1_pb"
  5118. Me.物料圖1_pb.Size = New System.Drawing.Size(146, 89)
  5119. Me.物料圖1_pb.TabIndex = 1402
  5120. Me.物料圖1_pb.TabStop = False
  5121. '
  5122. '工程合約試算表_tc
  5123. '
  5124. Me.工程合約試算表_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  5125. Me.工程合約試算表_tc.Controls.Add(Me.詳細資料3_ch)
  5126. Me.工程合約試算表_tc.Controls.Add(Me.Label4)
  5127. Me.工程合約試算表_tc.Controls.Add(Me.刪除1_bt)
  5128. Me.工程合約試算表_tc.Controls.Add(Me.係數_nud)
  5129. Me.工程合約試算表_tc.Controls.Add(Me.存檔_bt)
  5130. Me.工程合約試算表_tc.Controls.Add(Me.使用計算機_ch)
  5131. Me.工程合約試算表_tc.Controls.Add(Me.直接輸入_ch)
  5132. Me.工程合約試算表_tc.Controls.Add(Me.材料加入1_bt)
  5133. Me.工程合約試算表_tc.Controls.Add(Me.修改樓層_迴圈_bt)
  5134. Me.工程合約試算表_tc.Controls.Add(Me.新增物件_bt)
  5135. Me.工程合約試算表_tc.Controls.Add(Me.料號_lb)
  5136. Me.工程合約試算表_tc.Controls.Add(Me.樓層_迴路_cb)
  5137. Me.工程合約試算表_tc.Controls.Add(Me.料號1_tb)
  5138. Me.工程合約試算表_tc.Controls.Add(Me.Label3)
  5139. Me.工程合約試算表_tc.Controls.Add(Me.修改試算表名稱_bt)
  5140. Me.工程合約試算表_tc.Controls.Add(Me.新增試算表_bt)
  5141. Me.工程合約試算表_tc.Controls.Add(Me.Label1)
  5142. Me.工程合約試算表_tc.Controls.Add(Me.試算表_cb)
  5143. Me.工程合約試算表_tc.Controls.Add(Me.試算表_dgv)
  5144. Me.工程合約試算表_tc.Controls.Add(Me.物料圖_pb)
  5145. Me.工程合約試算表_tc.Location = New System.Drawing.Point(4, 28)
  5146. Me.工程合約試算表_tc.Name = "工程合約試算表_tc"
  5147. Me.工程合約試算表_tc.Padding = New System.Windows.Forms.Padding(3)
  5148. Me.工程合約試算表_tc.Size = New System.Drawing.Size(1413, 1006)
  5149. Me.工程合約試算表_tc.TabIndex = 1
  5150. Me.工程合約試算表_tc.Text = "工程合約試算表"
  5151. Me.工程合約試算表_tc.UseVisualStyleBackColor = True
  5152. '
  5153. '詳細資料3_ch
  5154. '
  5155. Me.詳細資料3_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5156. Me.詳細資料3_ch.AutoSize = True
  5157. Me.詳細資料3_ch.Location = New System.Drawing.Point(760, 59)
  5158. Me.詳細資料3_ch.Name = "詳細資料3_ch"
  5159. Me.詳細資料3_ch.Size = New System.Drawing.Size(126, 20)
  5160. Me.詳細資料3_ch.TabIndex = 1833
  5161. Me.詳細資料3_ch.Text = "詳細資料 / Rincian"
  5162. Me.詳細資料3_ch.UseVisualStyleBackColor = True
  5163. '
  5164. 'Label4
  5165. '
  5166. Me.Label4.AutoSize = True
  5167. Me.Label4.Location = New System.Drawing.Point(773, 6)
  5168. Me.Label4.Name = "Label4"
  5169. Me.Label4.Size = New System.Drawing.Size(55, 16)
  5170. Me.Label4.TabIndex = 1357
  5171. Me.Label4.Text = "系 數"
  5172. '
  5173. '刪除1_bt
  5174. '
  5175. Me.刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5176. Me.刪除1_bt.ForeColor = System.Drawing.Color.Red
  5177. Me.刪除1_bt.Location = New System.Drawing.Point(711, 30)
  5178. Me.刪除1_bt.Name = "刪除1_bt"
  5179. Me.刪除1_bt.Size = New System.Drawing.Size(175, 25)
  5180. Me.刪除1_bt.TabIndex = 1356
  5181. Me.刪除1_bt.Text = "刪除試算表中選中的資料"
  5182. Me.刪除1_bt.UseVisualStyleBackColor = True
  5183. '
  5184. '係數_nud
  5185. '
  5186. Me.係數_nud.Location = New System.Drawing.Point(835, 3)
  5187. Me.係數_nud.Name = "係數_nud"
  5188. Me.係數_nud.Size = New System.Drawing.Size(49, 23)
  5189. Me.係數_nud.TabIndex = 1355
  5190. '
  5191. '存檔_bt
  5192. '
  5193. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5194. Me.存檔_bt.ForeColor = System.Drawing.Color.Purple
  5195. Me.存檔_bt.Location = New System.Drawing.Point(889, 2)
  5196. Me.存檔_bt.Name = "存檔_bt"
  5197. Me.存檔_bt.Size = New System.Drawing.Size(175, 79)
  5198. Me.存檔_bt.TabIndex = 1354
  5199. Me.存檔_bt.Text = "存檔"
  5200. Me.存檔_bt.UseVisualStyleBackColor = True
  5201. '
  5202. '使用計算機_ch
  5203. '
  5204. Me.使用計算機_ch.AutoSize = True
  5205. Me.使用計算機_ch.Location = New System.Drawing.Point(641, 59)
  5206. Me.使用計算機_ch.Name = "使用計算機_ch"
  5207. Me.使用計算機_ch.Size = New System.Drawing.Size(86, 20)
  5208. Me.使用計算機_ch.TabIndex = 1353
  5209. Me.使用計算機_ch.Text = "使用計算機"
  5210. Me.使用計算機_ch.UseVisualStyleBackColor = True
  5211. '
  5212. '直接輸入_ch
  5213. '
  5214. Me.直接輸入_ch.AutoSize = True
  5215. Me.直接輸入_ch.Location = New System.Drawing.Point(538, 59)
  5216. Me.直接輸入_ch.Name = "直接輸入_ch"
  5217. Me.直接輸入_ch.Size = New System.Drawing.Size(74, 20)
  5218. Me.直接輸入_ch.TabIndex = 1352
  5219. Me.直接輸入_ch.Text = "直接輸入"
  5220. Me.直接輸入_ch.UseVisualStyleBackColor = True
  5221. '
  5222. '材料加入1_bt
  5223. '
  5224. Me.材料加入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5225. Me.材料加入1_bt.ForeColor = System.Drawing.Color.Purple
  5226. Me.材料加入1_bt.Location = New System.Drawing.Point(533, 30)
  5227. Me.材料加入1_bt.Name = "材料加入1_bt"
  5228. Me.材料加入1_bt.Size = New System.Drawing.Size(175, 25)
  5229. Me.材料加入1_bt.TabIndex = 1351
  5230. Me.材料加入1_bt.Text = "選擇材料加入試算表"
  5231. Me.材料加入1_bt.UseVisualStyleBackColor = True
  5232. '
  5233. '修改樓層_迴圈_bt
  5234. '
  5235. Me.修改樓層_迴圈_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5236. Me.修改樓層_迴圈_bt.ForeColor = System.Drawing.Color.Green
  5237. Me.修改樓層_迴圈_bt.Location = New System.Drawing.Point(250, 56)
  5238. Me.修改樓層_迴圈_bt.Name = "修改樓層_迴圈_bt"
  5239. Me.修改樓層_迴圈_bt.Size = New System.Drawing.Size(278, 25)
  5240. Me.修改樓層_迴圈_bt.TabIndex = 1054
  5241. Me.修改樓層_迴圈_bt.Text = "修改樓層/迴路名稱"
  5242. Me.修改樓層_迴圈_bt.UseVisualStyleBackColor = True
  5243. '
  5244. '新增物件_bt
  5245. '
  5246. Me.新增物件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5247. Me.新增物件_bt.ForeColor = System.Drawing.Color.Blue
  5248. Me.新增物件_bt.Location = New System.Drawing.Point(250, 30)
  5249. Me.新增物件_bt.Name = "新增物件_bt"
  5250. Me.新增物件_bt.Size = New System.Drawing.Size(278, 25)
  5251. Me.新增物件_bt.TabIndex = 1053
  5252. Me.新增物件_bt.Text = "新增樓層/迴路"
  5253. Me.新增物件_bt.UseVisualStyleBackColor = True
  5254. '
  5255. '料號_lb
  5256. '
  5257. Me.料號_lb.AutoSize = True
  5258. Me.料號_lb.Location = New System.Drawing.Point(530, 6)
  5259. Me.料號_lb.Name = "料號_lb"
  5260. Me.料號_lb.Size = New System.Drawing.Size(55, 16)
  5261. Me.料號_lb.TabIndex = 1343
  5262. Me.料號_lb.Text = "料 號"
  5263. '
  5264. '樓層_迴路_cb
  5265. '
  5266. Me.樓層_迴路_cb.ForeColor = System.Drawing.Color.Blue
  5267. Me.樓層_迴路_cb.FormattingEnabled = True
  5268. Me.樓層_迴路_cb.Location = New System.Drawing.Point(312, 3)
  5269. Me.樓層_迴路_cb.Name = "樓層_迴路_cb"
  5270. Me.樓層_迴路_cb.Size = New System.Drawing.Size(216, 24)
  5271. Me.樓層_迴路_cb.TabIndex = 1051
  5272. '
  5273. '料號1_tb
  5274. '
  5275. Me.料號1_tb.Location = New System.Drawing.Point(592, 3)
  5276. Me.料號1_tb.Name = "料號1_tb"
  5277. Me.料號1_tb.Size = New System.Drawing.Size(175, 23)
  5278. Me.料號1_tb.TabIndex = 1342
  5279. '
  5280. 'Label3
  5281. '
  5282. Me.Label3.AutoSize = True
  5283. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5284. Me.Label3.Location = New System.Drawing.Point(251, 7)
  5285. Me.Label3.Name = "Label3"
  5286. Me.Label3.Size = New System.Drawing.Size(60, 16)
  5287. Me.Label3.TabIndex = 1050
  5288. Me.Label3.Text = "樓層/迴路"
  5289. Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5290. '
  5291. '修改試算表名稱_bt
  5292. '
  5293. Me.修改試算表名稱_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5294. Me.修改試算表名稱_bt.ForeColor = System.Drawing.Color.Green
  5295. Me.修改試算表名稱_bt.Location = New System.Drawing.Point(3, 56)
  5296. Me.修改試算表名稱_bt.Name = "修改試算表名稱_bt"
  5297. Me.修改試算表名稱_bt.Size = New System.Drawing.Size(246, 25)
  5298. Me.修改試算表名稱_bt.TabIndex = 1049
  5299. Me.修改試算表名稱_bt.Text = "修改試算表名稱"
  5300. Me.修改試算表名稱_bt.UseVisualStyleBackColor = True
  5301. '
  5302. '新增試算表_bt
  5303. '
  5304. Me.新增試算表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5305. Me.新增試算表_bt.ForeColor = System.Drawing.Color.Blue
  5306. Me.新增試算表_bt.Location = New System.Drawing.Point(3, 30)
  5307. Me.新增試算表_bt.Name = "新增試算表_bt"
  5308. Me.新增試算表_bt.Size = New System.Drawing.Size(246, 25)
  5309. Me.新增試算表_bt.TabIndex = 1048
  5310. Me.新增試算表_bt.Text = "新增試算表"
  5311. Me.新增試算表_bt.UseVisualStyleBackColor = True
  5312. '
  5313. 'Label1
  5314. '
  5315. Me.Label1.AutoSize = True
  5316. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5317. Me.Label1.Location = New System.Drawing.Point(2, 7)
  5318. Me.Label1.Name = "Label1"
  5319. Me.Label1.Size = New System.Drawing.Size(67, 16)
  5320. Me.Label1.TabIndex = 1046
  5321. Me.Label1.Text = "選擇試算表"
  5322. Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5323. '
  5324. '試算表_cb
  5325. '
  5326. Me.試算表_cb.ForeColor = System.Drawing.Color.Blue
  5327. Me.試算表_cb.FormattingEnabled = True
  5328. Me.試算表_cb.Location = New System.Drawing.Point(73, 4)
  5329. Me.試算表_cb.Name = "試算表_cb"
  5330. Me.試算表_cb.Size = New System.Drawing.Size(176, 24)
  5331. Me.試算表_cb.TabIndex = 946
  5332. Me.試算表_cb.Text = "試算表1"
  5333. '
  5334. '試算表_dgv
  5335. '
  5336. DataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5337. Me.試算表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle9
  5338. Me.試算表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5339. Or System.Windows.Forms.AnchorStyles.Left) _
  5340. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5341. Me.試算表_dgv.BackgroundColor = System.Drawing.Color.White
  5342. Me.試算表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5343. Me.試算表_dgv.Location = New System.Drawing.Point(2, 84)
  5344. Me.試算表_dgv.Name = "試算表_dgv"
  5345. Me.試算表_dgv.RowHeadersWidth = 5
  5346. DataGridViewCellStyle10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5347. DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5348. Me.試算表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle10
  5349. Me.試算表_dgv.RowTemplate.Height = 24
  5350. Me.試算表_dgv.Size = New System.Drawing.Size(1407, 918)
  5351. Me.試算表_dgv.TabIndex = 1339
  5352. '
  5353. '物料圖_pb
  5354. '
  5355. Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5356. Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  5357. Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  5358. Me.物料圖_pb.Location = New System.Drawing.Point(1253, 1)
  5359. Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  5360. Me.物料圖_pb.Name = "物料圖_pb"
  5361. Me.物料圖_pb.Size = New System.Drawing.Size(155, 82)
  5362. Me.物料圖_pb.TabIndex = 1350
  5363. Me.物料圖_pb.TabStop = False
  5364. '
  5365. '空間1
  5366. '
  5367. Me.空間1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5368. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5369. Me.空間1.BackColor = System.Drawing.Color.White
  5370. Me.空間1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5371. Me.空間1.Controls.Add(Me.物料_p)
  5372. Me.空間1.Controls.Add(Me.BOM_p)
  5373. Me.空間1.Controls.Add(Me.合約_p)
  5374. Me.空間1.Location = New System.Drawing.Point(2, 0)
  5375. Me.空間1.Name = "空間1"
  5376. Me.空間1.Size = New System.Drawing.Size(490, 1040)
  5377. Me.空間1.TabIndex = 1422
  5378. '
  5379. 'BOM_p
  5380. '
  5381. Me.BOM_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5382. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5383. Me.BOM_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5384. Me.BOM_p.Controls.Add(Me.詳細資料1_ch)
  5385. Me.BOM_p.Controls.Add(Me.Label73)
  5386. Me.BOM_p.Controls.Add(Me.BOM新增到明細表_bt)
  5387. Me.BOM_p.Controls.Add(Me.中文小寫3_ch)
  5388. Me.BOM_p.Controls.Add(Me.Label52)
  5389. Me.BOM_p.Controls.Add(Me.Label51)
  5390. Me.BOM_p.Controls.Add(Me.主項目_tb)
  5391. Me.BOM_p.Controls.Add(Me.BOM表明細_dgv)
  5392. Me.BOM_p.Controls.Add(Me.中文大寫3_ch)
  5393. Me.BOM_p.Controls.Add(Me.ITEM4_cb)
  5394. Me.BOM_p.Controls.Add(Me.Panel1)
  5395. Me.BOM_p.Controls.Add(Me.BOM表控制_dgv)
  5396. Me.BOM_p.Location = New System.Drawing.Point(-1, -1)
  5397. Me.BOM_p.Name = "BOM_p"
  5398. Me.BOM_p.Size = New System.Drawing.Size(490, 1040)
  5399. Me.BOM_p.TabIndex = 1404
  5400. '
  5401. '詳細資料1_ch
  5402. '
  5403. Me.詳細資料1_ch.AutoSize = True
  5404. Me.詳細資料1_ch.Location = New System.Drawing.Point(356, 52)
  5405. Me.詳細資料1_ch.Name = "詳細資料1_ch"
  5406. Me.詳細資料1_ch.Size = New System.Drawing.Size(126, 20)
  5407. Me.詳細資料1_ch.TabIndex = 1832
  5408. Me.詳細資料1_ch.Text = "詳細資料 / Rincian"
  5409. Me.詳細資料1_ch.UseVisualStyleBackColor = True
  5410. '
  5411. 'Label73
  5412. '
  5413. Me.Label73.AutoSize = True
  5414. Me.Label73.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5415. Me.Label73.Location = New System.Drawing.Point(3, 54)
  5416. Me.Label73.Name = "Label73"
  5417. Me.Label73.Size = New System.Drawing.Size(215, 16)
  5418. Me.Label73.TabIndex = 1823
  5419. Me.Label73.Text = "PS : BOM表會插入在明細表選擇列下方"
  5420. '
  5421. 'BOM新增到明細表_bt
  5422. '
  5423. Me.BOM新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5424. Me.BOM新增到明細表_bt.BackgroundImage = CType(resources.GetObject("BOM新增到明細表_bt.BackgroundImage"), System.Drawing.Image)
  5425. Me.BOM新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5426. Me.BOM新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5427. Me.BOM新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  5428. Me.BOM新增到明細表_bt.Location = New System.Drawing.Point(353, 1)
  5429. Me.BOM新增到明細表_bt.Name = "BOM新增到明細表_bt"
  5430. Me.BOM新增到明細表_bt.Size = New System.Drawing.Size(129, 49)
  5431. Me.BOM新增到明細表_bt.TabIndex = 1822
  5432. Me.BOM新增到明細表_bt.UseVisualStyleBackColor = True
  5433. '
  5434. '中文小寫3_ch
  5435. '
  5436. Me.中文小寫3_ch.AutoSize = True
  5437. Me.中文小寫3_ch.Location = New System.Drawing.Point(181, 4)
  5438. Me.中文小寫3_ch.Name = "中文小寫3_ch"
  5439. Me.中文小寫3_ch.Size = New System.Drawing.Size(74, 20)
  5440. Me.中文小寫3_ch.TabIndex = 1821
  5441. Me.中文小寫3_ch.Text = "中文小寫"
  5442. Me.中文小寫3_ch.UseVisualStyleBackColor = True
  5443. '
  5444. 'Label52
  5445. '
  5446. Me.Label52.AutoSize = True
  5447. Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5448. Me.Label52.Location = New System.Drawing.Point(6, 6)
  5449. Me.Label52.Name = "Label52"
  5450. Me.Label52.Size = New System.Drawing.Size(36, 16)
  5451. Me.Label52.TabIndex = 1818
  5452. Me.Label52.Text = "ITEM"
  5453. Me.Label52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5454. '
  5455. 'Label51
  5456. '
  5457. Me.Label51.AutoSize = True
  5458. Me.Label51.Location = New System.Drawing.Point(9, 31)
  5459. Me.Label51.Name = "Label51"
  5460. Me.Label51.Size = New System.Drawing.Size(31, 16)
  5461. Me.Label51.TabIndex = 1817
  5462. Me.Label51.Text = "項目"
  5463. '
  5464. '主項目_tb
  5465. '
  5466. Me.主項目_tb.Location = New System.Drawing.Point(43, 27)
  5467. Me.主項目_tb.Name = "主項目_tb"
  5468. Me.主項目_tb.Size = New System.Drawing.Size(306, 23)
  5469. Me.主項目_tb.TabIndex = 1816
  5470. '
  5471. 'BOM表明細_dgv
  5472. '
  5473. DataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5474. Me.BOM表明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle15
  5475. Me.BOM表明細_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5476. Me.BOM表明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5477. Me.BOM表明細_dgv.BackgroundColor = System.Drawing.Color.White
  5478. Me.BOM表明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5479. Me.BOM表明細_dgv.Location = New System.Drawing.Point(-1, 568)
  5480. Me.BOM表明細_dgv.Name = "BOM表明細_dgv"
  5481. Me.BOM表明細_dgv.RowHeadersWidth = 5
  5482. DataGridViewCellStyle16.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5483. DataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5484. Me.BOM表明細_dgv.RowsDefaultCellStyle = DataGridViewCellStyle16
  5485. Me.BOM表明細_dgv.RowTemplate.Height = 24
  5486. Me.BOM表明細_dgv.Size = New System.Drawing.Size(490, 471)
  5487. Me.BOM表明細_dgv.TabIndex = 1342
  5488. '
  5489. '中文大寫3_ch
  5490. '
  5491. Me.中文大寫3_ch.AutoSize = True
  5492. Me.中文大寫3_ch.Checked = True
  5493. Me.中文大寫3_ch.CheckState = System.Windows.Forms.CheckState.Checked
  5494. Me.中文大寫3_ch.Location = New System.Drawing.Point(100, 4)
  5495. Me.中文大寫3_ch.Name = "中文大寫3_ch"
  5496. Me.中文大寫3_ch.Size = New System.Drawing.Size(74, 20)
  5497. Me.中文大寫3_ch.TabIndex = 1820
  5498. Me.中文大寫3_ch.Text = "中文大寫"
  5499. Me.中文大寫3_ch.UseVisualStyleBackColor = True
  5500. '
  5501. 'ITEM4_cb
  5502. '
  5503. Me.ITEM4_cb.ForeColor = System.Drawing.Color.Blue
  5504. Me.ITEM4_cb.FormattingEnabled = True
  5505. Me.ITEM4_cb.Location = New System.Drawing.Point(43, 2)
  5506. Me.ITEM4_cb.Name = "ITEM4_cb"
  5507. Me.ITEM4_cb.Size = New System.Drawing.Size(51, 24)
  5508. Me.ITEM4_cb.TabIndex = 1819
  5509. '
  5510. 'Panel1
  5511. '
  5512. Me.Panel1.BackColor = System.Drawing.Color.Gainsboro
  5513. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5514. Me.Panel1.Controls.Add(Me.主管_dgv)
  5515. Me.Panel1.Controls.Add(Me.圖庫清單_dgv)
  5516. Me.Panel1.Controls.Add(Me.項目流水_tb)
  5517. Me.Panel1.Controls.Add(Me.選擇項3_tb)
  5518. Me.Panel1.Controls.Add(Me.連動編號_tb)
  5519. Me.Panel1.Controls.Add(Me.PictureBox2)
  5520. Me.Panel1.Controls.Add(Me.PictureBox1)
  5521. Me.Panel1.Controls.Add(Me.選擇項2_tb)
  5522. Me.Panel1.Controls.Add(Me.DGV位置2)
  5523. Me.Panel1.Controls.Add(Me.DGV位置1)
  5524. Me.Panel1.Controls.Add(Me.明細表流水_tb)
  5525. Me.Panel1.Controls.Add(Me.總表流水_tb)
  5526. Me.Panel1.Controls.Add(Me.Y_2_tb)
  5527. Me.Panel1.Controls.Add(Me.Y_3_tb)
  5528. Me.Panel1.Controls.Add(Me.係數合約號_tb)
  5529. Me.Panel1.Controls.Add(Me.Label43)
  5530. Me.Panel1.Controls.Add(Me.係數流水號_tb)
  5531. Me.Panel1.Controls.Add(Me.群組編碼_cb)
  5532. Me.Panel1.Controls.Add(Me.X_2_tb)
  5533. Me.Panel1.Controls.Add(Me.語言_dgv)
  5534. Me.Panel1.Controls.Add(Me.X_3_tb)
  5535. Me.Panel1.Controls.Add(Me.存檔比較_dgv)
  5536. Me.Panel1.Controls.Add(Me.範例文本_dgv)
  5537. Me.Panel1.Controls.Add(Me.群組碼_tb)
  5538. Me.Panel1.Controls.Add(Me.表號_tb)
  5539. Me.Panel1.Controls.Add(Me.表頭_tb)
  5540. Me.Panel1.Controls.Add(Me.試算控制表_dgv)
  5541. Me.Panel1.Location = New System.Drawing.Point(5, 207)
  5542. Me.Panel1.Name = "Panel1"
  5543. Me.Panel1.Size = New System.Drawing.Size(479, 306)
  5544. Me.Panel1.TabIndex = 1398
  5545. '
  5546. '主管_dgv
  5547. '
  5548. DataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
  5549. Me.主管_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17
  5550. Me.主管_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5551. Me.主管_dgv.BackgroundColor = System.Drawing.Color.White
  5552. Me.主管_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5553. Me.主管_dgv.Location = New System.Drawing.Point(271, 234)
  5554. Me.主管_dgv.Name = "主管_dgv"
  5555. Me.主管_dgv.RowHeadersWidth = 5
  5556. DataGridViewCellStyle18.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5557. DataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5558. Me.主管_dgv.RowsDefaultCellStyle = DataGridViewCellStyle18
  5559. Me.主管_dgv.RowTemplate.Height = 24
  5560. Me.主管_dgv.Size = New System.Drawing.Size(81, 49)
  5561. Me.主管_dgv.TabIndex = 1806
  5562. '
  5563. '圖庫清單_dgv
  5564. '
  5565. Me.圖庫清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5566. Me.圖庫清單_dgv.Location = New System.Drawing.Point(357, 234)
  5567. Me.圖庫清單_dgv.Name = "圖庫清單_dgv"
  5568. Me.圖庫清單_dgv.RowHeadersWidth = 5
  5569. Me.圖庫清單_dgv.RowTemplate.Height = 24
  5570. Me.圖庫清單_dgv.Size = New System.Drawing.Size(116, 59)
  5571. Me.圖庫清單_dgv.TabIndex = 1805
  5572. '
  5573. '項目流水_tb
  5574. '
  5575. Me.項目流水_tb.Location = New System.Drawing.Point(167, 208)
  5576. Me.項目流水_tb.Name = "項目流水_tb"
  5577. Me.項目流水_tb.Size = New System.Drawing.Size(94, 23)
  5578. Me.項目流水_tb.TabIndex = 1435
  5579. '
  5580. '選擇項3_tb
  5581. '
  5582. Me.選擇項3_tb.Enabled = False
  5583. Me.選擇項3_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5584. Me.選擇項3_tb.Location = New System.Drawing.Point(3, 208)
  5585. Me.選擇項3_tb.Name = "選擇項3_tb"
  5586. Me.選擇項3_tb.Size = New System.Drawing.Size(50, 23)
  5587. Me.選擇項3_tb.TabIndex = 1433
  5588. Me.選擇項3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5589. '
  5590. '連動編號_tb
  5591. '
  5592. Me.連動編號_tb.Enabled = False
  5593. Me.連動編號_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5594. Me.連動編號_tb.Location = New System.Drawing.Point(367, 208)
  5595. Me.連動編號_tb.Name = "連動編號_tb"
  5596. Me.連動編號_tb.Size = New System.Drawing.Size(106, 23)
  5597. Me.連動編號_tb.TabIndex = 1394
  5598. Me.連動編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5599. '
  5600. 'PictureBox2
  5601. '
  5602. Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5603. Me.PictureBox2.Image = Global.工巧明智能管理系統.My.Resources.Resources.HXLOGO01
  5604. Me.PictureBox2.Location = New System.Drawing.Point(3, 144)
  5605. Me.PictureBox2.Name = "PictureBox2"
  5606. Me.PictureBox2.Size = New System.Drawing.Size(471, 61)
  5607. Me.PictureBox2.TabIndex = 1432
  5608. Me.PictureBox2.TabStop = False
  5609. '
  5610. 'PictureBox1
  5611. '
  5612. Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5613. Me.PictureBox1.Image = Global.工巧明智能管理系統.My.Resources.Resources.PGSLOGO01
  5614. Me.PictureBox1.Location = New System.Drawing.Point(3, 81)
  5615. Me.PictureBox1.Name = "PictureBox1"
  5616. Me.PictureBox1.Size = New System.Drawing.Size(471, 61)
  5617. Me.PictureBox1.TabIndex = 1431
  5618. Me.PictureBox1.TabStop = False
  5619. '
  5620. '選擇項2_tb
  5621. '
  5622. Me.選擇項2_tb.Enabled = False
  5623. Me.選擇項2_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5624. Me.選擇項2_tb.Location = New System.Drawing.Point(271, 53)
  5625. Me.選擇項2_tb.Name = "選擇項2_tb"
  5626. Me.選擇項2_tb.Size = New System.Drawing.Size(50, 23)
  5627. Me.選擇項2_tb.TabIndex = 1430
  5628. Me.選擇項2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5629. '
  5630. 'DGV位置2
  5631. '
  5632. Me.DGV位置2.Location = New System.Drawing.Point(230, 54)
  5633. Me.DGV位置2.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  5634. Me.DGV位置2.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  5635. Me.DGV位置2.Name = "DGV位置2"
  5636. Me.DGV位置2.Size = New System.Drawing.Size(40, 23)
  5637. Me.DGV位置2.TabIndex = 1355
  5638. Me.DGV位置2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5639. Me.DGV位置2.ThousandsSeparator = True
  5640. '
  5641. 'DGV位置1
  5642. '
  5643. Me.DGV位置1.Location = New System.Drawing.Point(188, 54)
  5644. Me.DGV位置1.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  5645. Me.DGV位置1.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  5646. Me.DGV位置1.Name = "DGV位置1"
  5647. Me.DGV位置1.Size = New System.Drawing.Size(40, 23)
  5648. Me.DGV位置1.TabIndex = 1354
  5649. Me.DGV位置1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5650. Me.DGV位置1.ThousandsSeparator = True
  5651. '
  5652. '明細表流水_tb
  5653. '
  5654. Me.明細表流水_tb.Location = New System.Drawing.Point(136, 54)
  5655. Me.明細表流水_tb.Name = "明細表流水_tb"
  5656. Me.明細表流水_tb.Size = New System.Drawing.Size(50, 23)
  5657. Me.明細表流水_tb.TabIndex = 1353
  5658. '
  5659. '總表流水_tb
  5660. '
  5661. Me.總表流水_tb.Location = New System.Drawing.Point(86, 54)
  5662. Me.總表流水_tb.Name = "總表流水_tb"
  5663. Me.總表流水_tb.Size = New System.Drawing.Size(50, 23)
  5664. Me.總表流水_tb.TabIndex = 1352
  5665. '
  5666. 'Y_2_tb
  5667. '
  5668. Me.Y_2_tb.Enabled = False
  5669. Me.Y_2_tb.ForeColor = System.Drawing.Color.Red
  5670. Me.Y_2_tb.Location = New System.Drawing.Point(129, 208)
  5671. Me.Y_2_tb.Name = "Y_2_tb"
  5672. Me.Y_2_tb.Size = New System.Drawing.Size(35, 23)
  5673. Me.Y_2_tb.TabIndex = 1375
  5674. Me.Y_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5675. '
  5676. 'Y_3_tb
  5677. '
  5678. Me.Y_3_tb.Enabled = False
  5679. Me.Y_3_tb.Location = New System.Drawing.Point(92, 208)
  5680. Me.Y_3_tb.Name = "Y_3_tb"
  5681. Me.Y_3_tb.Size = New System.Drawing.Size(35, 23)
  5682. Me.Y_3_tb.TabIndex = 1375
  5683. Me.Y_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5684. '
  5685. '係數合約號_tb
  5686. '
  5687. Me.係數合約號_tb.Location = New System.Drawing.Point(271, 28)
  5688. Me.係數合約號_tb.Name = "係數合約號_tb"
  5689. Me.係數合約號_tb.Size = New System.Drawing.Size(50, 23)
  5690. Me.係數合約號_tb.TabIndex = 1351
  5691. '
  5692. 'Label43
  5693. '
  5694. Me.Label43.AutoSize = True
  5695. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5696. Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5697. Me.Label43.Location = New System.Drawing.Point(265, 211)
  5698. Me.Label43.Name = "Label43"
  5699. Me.Label43.Size = New System.Drawing.Size(103, 16)
  5700. Me.Label43.TabIndex = 1395
  5701. Me.Label43.Text = "明細計算連動編號"
  5702. Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5703. '
  5704. '係數流水號_tb
  5705. '
  5706. Me.係數流水號_tb.Location = New System.Drawing.Point(271, 2)
  5707. Me.係數流水號_tb.Name = "係數流水號_tb"
  5708. Me.係數流水號_tb.Size = New System.Drawing.Size(50, 23)
  5709. Me.係數流水號_tb.TabIndex = 1350
  5710. '
  5711. '群組編碼_cb
  5712. '
  5713. Me.群組編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  5714. Me.群組編碼_cb.FormattingEnabled = True
  5715. Me.群組編碼_cb.Items.AddRange(New Object() {"2019"})
  5716. Me.群組編碼_cb.Location = New System.Drawing.Point(3, 3)
  5717. Me.群組編碼_cb.Name = "群組編碼_cb"
  5718. Me.群組編碼_cb.Size = New System.Drawing.Size(81, 24)
  5719. Me.群組編碼_cb.TabIndex = 1340
  5720. '
  5721. 'X_2_tb
  5722. '
  5723. Me.X_2_tb.Enabled = False
  5724. Me.X_2_tb.ForeColor = System.Drawing.Color.Red
  5725. Me.X_2_tb.Location = New System.Drawing.Point(3, 234)
  5726. Me.X_2_tb.Name = "X_2_tb"
  5727. Me.X_2_tb.Size = New System.Drawing.Size(35, 23)
  5728. Me.X_2_tb.TabIndex = 1374
  5729. Me.X_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5730. '
  5731. '語言_dgv
  5732. '
  5733. Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5734. Me.語言_dgv.Location = New System.Drawing.Point(3, 29)
  5735. Me.語言_dgv.Name = "語言_dgv"
  5736. Me.語言_dgv.RowHeadersWidth = 5
  5737. Me.語言_dgv.RowTemplate.Height = 24
  5738. Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
  5739. Me.語言_dgv.TabIndex = 1345
  5740. '
  5741. 'X_3_tb
  5742. '
  5743. Me.X_3_tb.Enabled = False
  5744. Me.X_3_tb.Location = New System.Drawing.Point(55, 208)
  5745. Me.X_3_tb.Name = "X_3_tb"
  5746. Me.X_3_tb.Size = New System.Drawing.Size(35, 23)
  5747. Me.X_3_tb.TabIndex = 1374
  5748. Me.X_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5749. '
  5750. '存檔比較_dgv
  5751. '
  5752. DataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  5753. Me.存檔比較_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle19
  5754. Me.存檔比較_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5755. Me.存檔比較_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5756. Me.存檔比較_dgv.Location = New System.Drawing.Point(400, 4)
  5757. Me.存檔比較_dgv.Name = "存檔比較_dgv"
  5758. Me.存檔比較_dgv.RowHeadersWidth = 5
  5759. Me.存檔比較_dgv.RowTemplate.Height = 24
  5760. Me.存檔比較_dgv.Size = New System.Drawing.Size(74, 72)
  5761. Me.存檔比較_dgv.TabIndex = 1149
  5762. '
  5763. '範例文本_dgv
  5764. '
  5765. DataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  5766. Me.範例文本_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle20
  5767. Me.範例文本_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5768. Me.範例文本_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5769. Me.範例文本_dgv.Location = New System.Drawing.Point(188, 2)
  5770. Me.範例文本_dgv.Name = "範例文本_dgv"
  5771. Me.範例文本_dgv.RowHeadersWidth = 5
  5772. Me.範例文本_dgv.RowTemplate.Height = 24
  5773. Me.範例文本_dgv.Size = New System.Drawing.Size(81, 49)
  5774. Me.範例文本_dgv.TabIndex = 1146
  5775. '
  5776. '群組碼_tb
  5777. '
  5778. Me.群組碼_tb.Location = New System.Drawing.Point(86, 4)
  5779. Me.群組碼_tb.Name = "群組碼_tb"
  5780. Me.群組碼_tb.Size = New System.Drawing.Size(102, 23)
  5781. Me.群組碼_tb.TabIndex = 1349
  5782. '
  5783. '表號_tb
  5784. '
  5785. Me.表號_tb.Location = New System.Drawing.Point(86, 29)
  5786. Me.表號_tb.Name = "表號_tb"
  5787. Me.表號_tb.Size = New System.Drawing.Size(50, 23)
  5788. Me.表號_tb.TabIndex = 1047
  5789. '
  5790. '表頭_tb
  5791. '
  5792. Me.表頭_tb.Location = New System.Drawing.Point(136, 29)
  5793. Me.表頭_tb.Name = "表頭_tb"
  5794. Me.表頭_tb.Size = New System.Drawing.Size(50, 23)
  5795. Me.表頭_tb.TabIndex = 1052
  5796. '
  5797. '試算控制表_dgv
  5798. '
  5799. DataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5800. Me.試算控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle21
  5801. Me.試算控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5802. Me.試算控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5803. Me.試算控制表_dgv.Location = New System.Drawing.Point(323, 4)
  5804. Me.試算控制表_dgv.Name = "試算控制表_dgv"
  5805. Me.試算控制表_dgv.RowHeadersWidth = 5
  5806. DataGridViewCellStyle22.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5807. DataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5808. Me.試算控制表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle22
  5809. Me.試算控制表_dgv.RowTemplate.Height = 24
  5810. Me.試算控制表_dgv.Size = New System.Drawing.Size(74, 72)
  5811. Me.試算控制表_dgv.TabIndex = 1340
  5812. '
  5813. 'BOM表控制_dgv
  5814. '
  5815. DataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5816. Me.BOM表控制_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle23
  5817. Me.BOM表控制_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5818. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5819. Me.BOM表控制_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5820. Me.BOM表控制_dgv.BackgroundColor = System.Drawing.Color.White
  5821. Me.BOM表控制_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5822. Me.BOM表控制_dgv.Location = New System.Drawing.Point(-1, 73)
  5823. Me.BOM表控制_dgv.Name = "BOM表控制_dgv"
  5824. Me.BOM表控制_dgv.RowHeadersWidth = 5
  5825. DataGridViewCellStyle24.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5826. DataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5827. Me.BOM表控制_dgv.RowsDefaultCellStyle = DataGridViewCellStyle24
  5828. Me.BOM表控制_dgv.RowTemplate.Height = 24
  5829. Me.BOM表控制_dgv.Size = New System.Drawing.Size(490, 496)
  5830. Me.BOM表控制_dgv.TabIndex = 1341
  5831. '
  5832. '合約_p
  5833. '
  5834. Me.合約_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5835. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5836. Me.合約_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5837. Me.合約_p.Controls.Add(Me.全部取消_bt)
  5838. Me.合約_p.Controls.Add(Me.全部選擇_bt)
  5839. Me.合約_p.Controls.Add(Me.詳細資料_ch)
  5840. Me.合約_p.Controls.Add(Me.Label77)
  5841. Me.合約_p.Controls.Add(Me.合約編號2_cb)
  5842. Me.合約_p.Controls.Add(Me.合約編號_1_tb)
  5843. Me.合約_p.Controls.Add(Me.Label78)
  5844. Me.合約_p.Controls.Add(Me.關鍵字搜尋1_tb)
  5845. Me.合約_p.Controls.Add(Me.查詢1_bt)
  5846. Me.合約_p.Controls.Add(Me.選取資料新增到明細表_bt)
  5847. Me.合約_p.Controls.Add(Me.報價明細表2_dgv)
  5848. Me.合約_p.Controls.Add(Me.合約1_dgv)
  5849. Me.合約_p.Controls.Add(Me.Label74)
  5850. Me.合約_p.Location = New System.Drawing.Point(-1, -1)
  5851. Me.合約_p.Name = "合約_p"
  5852. Me.合約_p.Size = New System.Drawing.Size(490, 1040)
  5853. Me.合約_p.TabIndex = 1420
  5854. '
  5855. '全部取消_bt
  5856. '
  5857. Me.全部取消_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5858. Me.全部取消_bt.ForeColor = System.Drawing.Color.Olive
  5859. Me.全部取消_bt.Location = New System.Drawing.Point(169, 487)
  5860. Me.全部取消_bt.Name = "全部取消_bt"
  5861. Me.全部取消_bt.Size = New System.Drawing.Size(185, 25)
  5862. Me.全部取消_bt.TabIndex = 1833
  5863. Me.全部取消_bt.Text = "全部取消 / Batalkan Semuanya"
  5864. Me.全部取消_bt.UseVisualStyleBackColor = True
  5865. '
  5866. '全部選擇_bt
  5867. '
  5868. Me.全部選擇_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5869. Me.全部選擇_bt.ForeColor = System.Drawing.Color.Olive
  5870. Me.全部選擇_bt.Location = New System.Drawing.Point(169, 462)
  5871. Me.全部選擇_bt.Name = "全部選擇_bt"
  5872. Me.全部選擇_bt.Size = New System.Drawing.Size(185, 25)
  5873. Me.全部選擇_bt.TabIndex = 1832
  5874. Me.全部選擇_bt.Text = "全部選擇 / Semua Pilihan"
  5875. Me.全部選擇_bt.UseVisualStyleBackColor = True
  5876. '
  5877. '詳細資料_ch
  5878. '
  5879. Me.詳細資料_ch.AutoSize = True
  5880. Me.詳細資料_ch.Location = New System.Drawing.Point(3, 463)
  5881. Me.詳細資料_ch.Name = "詳細資料_ch"
  5882. Me.詳細資料_ch.Size = New System.Drawing.Size(126, 20)
  5883. Me.詳細資料_ch.TabIndex = 1831
  5884. Me.詳細資料_ch.Text = "詳細資料 / Rincian"
  5885. Me.詳細資料_ch.UseVisualStyleBackColor = True
  5886. '
  5887. 'Label77
  5888. '
  5889. Me.Label77.AutoSize = True
  5890. Me.Label77.BackColor = System.Drawing.SystemColors.Control
  5891. Me.Label77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5892. Me.Label77.Location = New System.Drawing.Point(177, 5)
  5893. Me.Label77.Name = "Label77"
  5894. Me.Label77.Size = New System.Drawing.Size(31, 16)
  5895. Me.Label77.TabIndex = 1830
  5896. Me.Label77.Text = "甲方"
  5897. Me.Label77.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5898. '
  5899. '合約編號2_cb
  5900. '
  5901. Me.合約編號2_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  5902. Me.合約編號2_cb.ForeColor = System.Drawing.Color.Blue
  5903. Me.合約編號2_cb.FormattingEnabled = True
  5904. Me.合約編號2_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  5905. Me.合約編號2_cb.Location = New System.Drawing.Point(214, 1)
  5906. Me.合約編號2_cb.Name = "合約編號2_cb"
  5907. Me.合約編號2_cb.Size = New System.Drawing.Size(100, 24)
  5908. Me.合約編號2_cb.TabIndex = 1829
  5909. '
  5910. '合約編號_1_tb
  5911. '
  5912. Me.合約編號_1_tb.Enabled = False
  5913. Me.合約編號_1_tb.Location = New System.Drawing.Point(320, 2)
  5914. Me.合約編號_1_tb.Name = "合約編號_1_tb"
  5915. Me.合約編號_1_tb.Size = New System.Drawing.Size(135, 23)
  5916. Me.合約編號_1_tb.TabIndex = 1827
  5917. '
  5918. 'Label78
  5919. '
  5920. Me.Label78.AutoSize = True
  5921. Me.Label78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5922. Me.Label78.Location = New System.Drawing.Point(6, 4)
  5923. Me.Label78.Name = "Label78"
  5924. Me.Label78.Size = New System.Drawing.Size(31, 16)
  5925. Me.Label78.TabIndex = 1825
  5926. Me.Label78.Text = "搜尋"
  5927. Me.Label78.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5928. '
  5929. '關鍵字搜尋1_tb
  5930. '
  5931. Me.關鍵字搜尋1_tb.Location = New System.Drawing.Point(43, 2)
  5932. Me.關鍵字搜尋1_tb.Name = "關鍵字搜尋1_tb"
  5933. Me.關鍵字搜尋1_tb.Size = New System.Drawing.Size(100, 23)
  5934. Me.關鍵字搜尋1_tb.TabIndex = 1824
  5935. '
  5936. '查詢1_bt
  5937. '
  5938. Me.查詢1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5939. Me.查詢1_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5940. Me.查詢1_bt.Location = New System.Drawing.Point(145, 1)
  5941. Me.查詢1_bt.Name = "查詢1_bt"
  5942. Me.查詢1_bt.Size = New System.Drawing.Size(26, 26)
  5943. Me.查詢1_bt.TabIndex = 1828
  5944. Me.查詢1_bt.UseVisualStyleBackColor = True
  5945. '
  5946. '選取資料新增到明細表_bt
  5947. '
  5948. Me.選取資料新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5949. Me.選取資料新增到明細表_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.Shipping2
  5950. Me.選取資料新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5951. Me.選取資料新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5952. Me.選取資料新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  5953. Me.選取資料新增到明細表_bt.Location = New System.Drawing.Point(357, 462)
  5954. Me.選取資料新增到明細表_bt.Name = "選取資料新增到明細表_bt"
  5955. Me.選取資料新增到明細表_bt.Size = New System.Drawing.Size(129, 49)
  5956. Me.選取資料新增到明細表_bt.TabIndex = 1822
  5957. Me.選取資料新增到明細表_bt.UseVisualStyleBackColor = True
  5958. '
  5959. '報價明細表2_dgv
  5960. '
  5961. Me.報價明細表2_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5962. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5963. Me.報價明細表2_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5964. Me.報價明細表2_dgv.BackgroundColor = System.Drawing.Color.White
  5965. Me.報價明細表2_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5966. Me.報價明細表2_dgv.Location = New System.Drawing.Point(-1, 514)
  5967. Me.報價明細表2_dgv.Name = "報價明細表2_dgv"
  5968. Me.報價明細表2_dgv.RowHeadersWidth = 5
  5969. DataGridViewCellStyle25.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5970. DataGridViewCellStyle25.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5971. Me.報價明細表2_dgv.RowsDefaultCellStyle = DataGridViewCellStyle25
  5972. Me.報價明細表2_dgv.RowTemplate.Height = 24
  5973. Me.報價明細表2_dgv.Size = New System.Drawing.Size(490, 525)
  5974. Me.報價明細表2_dgv.TabIndex = 1342
  5975. '
  5976. '合約1_dgv
  5977. '
  5978. DataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5979. Me.合約1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle26
  5980. Me.合約1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5981. Me.合約1_dgv.BackgroundColor = System.Drawing.Color.White
  5982. Me.合約1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5983. Me.合約1_dgv.Location = New System.Drawing.Point(-1, 27)
  5984. Me.合約1_dgv.Name = "合約1_dgv"
  5985. Me.合約1_dgv.RowHeadersWidth = 5
  5986. DataGridViewCellStyle27.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5987. DataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5988. Me.合約1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle27
  5989. Me.合約1_dgv.RowTemplate.Height = 24
  5990. Me.合約1_dgv.Size = New System.Drawing.Size(490, 434)
  5991. Me.合約1_dgv.TabIndex = 1341
  5992. '
  5993. 'Label74
  5994. '
  5995. Me.Label74.AutoSize = True
  5996. Me.Label74.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5997. Me.Label74.Location = New System.Drawing.Point(6, 482)
  5998. Me.Label74.Name = "Label74"
  5999. Me.Label74.Size = New System.Drawing.Size(155, 32)
  6000. Me.Label74.TabIndex = 1823
  6001. Me.Label74.Text = "PS : BOM表會插入在明細表" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 選擇列下方"
  6002. '
  6003. '物料_p
  6004. '
  6005. Me.物料_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  6006. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6007. Me.物料_p.BackColor = System.Drawing.Color.White
  6008. Me.物料_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6009. Me.物料_p.Controls.Add(Me.帶上歷史單價_ch)
  6010. Me.物料_p.Controls.Add(Me.群組編碼_lb)
  6011. Me.物料_p.Controls.Add(Me.Label50)
  6012. Me.物料_p.Controls.Add(Me.歷史單價_tb)
  6013. Me.物料_p.Controls.Add(Me.Label49)
  6014. Me.物料_p.Controls.Add(Me.物料規格_dgv)
  6015. Me.物料_p.Controls.Add(Me.最後採購日_tb)
  6016. Me.物料_p.Controls.Add(Me.大間距_ch)
  6017. Me.物料_p.Controls.Add(Me.新群組1_cb)
  6018. Me.物料_p.Controls.Add(Me.搜尋_bt)
  6019. Me.物料_p.Controls.Add(Me.中間距_ch)
  6020. Me.物料_p.Controls.Add(Me.小間距_ch)
  6021. Me.物料_p.Controls.Add(Me.物料清單_dgv)
  6022. Me.物料_p.Location = New System.Drawing.Point(-1, -1)
  6023. Me.物料_p.Name = "物料_p"
  6024. Me.物料_p.Size = New System.Drawing.Size(490, 1040)
  6025. Me.物料_p.TabIndex = 1675
  6026. '
  6027. '帶上歷史單價_ch
  6028. '
  6029. Me.帶上歷史單價_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6030. Me.帶上歷史單價_ch.AutoSize = True
  6031. Me.帶上歷史單價_ch.Checked = True
  6032. Me.帶上歷史單價_ch.CheckState = System.Windows.Forms.CheckState.Checked
  6033. Me.帶上歷史單價_ch.Location = New System.Drawing.Point(359, 641)
  6034. Me.帶上歷史單價_ch.Name = "帶上歷史單價_ch"
  6035. Me.帶上歷史單價_ch.Size = New System.Drawing.Size(98, 20)
  6036. Me.帶上歷史單價_ch.TabIndex = 1403
  6037. Me.帶上歷史單價_ch.Text = "帶上歷史單價"
  6038. Me.帶上歷史單價_ch.UseVisualStyleBackColor = True
  6039. '
  6040. '群組編碼_lb
  6041. '
  6042. Me.群組編碼_lb.AutoSize = True
  6043. Me.群組編碼_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  6044. Me.群組編碼_lb.Location = New System.Drawing.Point(3, 5)
  6045. Me.群組編碼_lb.Name = "群組編碼_lb"
  6046. Me.群組編碼_lb.Size = New System.Drawing.Size(64, 16)
  6047. Me.群組編碼_lb.TabIndex = 1341
  6048. Me.群組編碼_lb.Text = "群 組 編 碼"
  6049. Me.群組編碼_lb.TextAlign = System.Drawing.ContentAlignment.TopRight
  6050. '
  6051. 'Label50
  6052. '
  6053. Me.Label50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6054. Me.Label50.AutoSize = True
  6055. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6056. Me.Label50.Location = New System.Drawing.Point(188, 642)
  6057. Me.Label50.Name = "Label50"
  6058. Me.Label50.Size = New System.Drawing.Size(55, 16)
  6059. Me.Label50.TabIndex = 1402
  6060. Me.Label50.Text = "歷史單價"
  6061. Me.Label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6062. '
  6063. '歷史單價_tb
  6064. '
  6065. Me.歷史單價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6066. Me.歷史單價_tb.Location = New System.Drawing.Point(245, 639)
  6067. Me.歷史單價_tb.Name = "歷史單價_tb"
  6068. Me.歷史單價_tb.Size = New System.Drawing.Size(104, 23)
  6069. Me.歷史單價_tb.TabIndex = 1401
  6070. '
  6071. 'Label49
  6072. '
  6073. Me.Label49.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6074. Me.Label49.AutoSize = True
  6075. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6076. Me.Label49.Location = New System.Drawing.Point(9, 642)
  6077. Me.Label49.Name = "Label49"
  6078. Me.Label49.Size = New System.Drawing.Size(67, 16)
  6079. Me.Label49.TabIndex = 1400
  6080. Me.Label49.Text = "最後採購日"
  6081. Me.Label49.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6082. '
  6083. '物料規格_dgv
  6084. '
  6085. DataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  6086. Me.物料規格_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle11
  6087. Me.物料規格_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  6088. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6089. Me.物料規格_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  6090. Me.物料規格_dgv.BackgroundColor = System.Drawing.Color.White
  6091. Me.物料規格_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  6092. Me.物料規格_dgv.Location = New System.Drawing.Point(-1, 664)
  6093. Me.物料規格_dgv.Name = "物料規格_dgv"
  6094. Me.物料規格_dgv.RowHeadersWidth = 5
  6095. DataGridViewCellStyle12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6096. DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  6097. Me.物料規格_dgv.RowsDefaultCellStyle = DataGridViewCellStyle12
  6098. Me.物料規格_dgv.RowTemplate.Height = 24
  6099. Me.物料規格_dgv.Size = New System.Drawing.Size(490, 375)
  6100. Me.物料規格_dgv.TabIndex = 1339
  6101. '
  6102. '最後採購日_tb
  6103. '
  6104. Me.最後採購日_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  6105. Me.最後採購日_tb.Location = New System.Drawing.Point(78, 639)
  6106. Me.最後採購日_tb.Name = "最後採購日_tb"
  6107. Me.最後採購日_tb.Size = New System.Drawing.Size(104, 23)
  6108. Me.最後採購日_tb.TabIndex = 1399
  6109. '
  6110. '大間距_ch
  6111. '
  6112. Me.大間距_ch.AutoSize = True
  6113. Me.大間距_ch.Location = New System.Drawing.Point(450, 5)
  6114. Me.大間距_ch.Name = "大間距_ch"
  6115. Me.大間距_ch.Size = New System.Drawing.Size(39, 20)
  6116. Me.大間距_ch.TabIndex = 1348
  6117. Me.大間距_ch.Text = "L3"
  6118. Me.大間距_ch.UseVisualStyleBackColor = True
  6119. '
  6120. '新群組1_cb
  6121. '
  6122. Me.新群組1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  6123. Me.新群組1_cb.FormattingEnabled = True
  6124. Me.新群組1_cb.Items.AddRange(New Object() {"2019"})
  6125. Me.新群組1_cb.Location = New System.Drawing.Point(68, 1)
  6126. Me.新群組1_cb.Name = "新群組1_cb"
  6127. Me.新群組1_cb.Size = New System.Drawing.Size(180, 24)
  6128. Me.新群組1_cb.TabIndex = 1358
  6129. '
  6130. '搜尋_bt
  6131. '
  6132. Me.搜尋_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6133. Me.搜尋_bt.ForeColor = System.Drawing.Color.Black
  6134. Me.搜尋_bt.Location = New System.Drawing.Point(250, 2)
  6135. Me.搜尋_bt.Name = "搜尋_bt"
  6136. Me.搜尋_bt.Size = New System.Drawing.Size(114, 24)
  6137. Me.搜尋_bt.TabIndex = 1344
  6138. Me.搜尋_bt.Text = "搜尋"
  6139. Me.搜尋_bt.UseVisualStyleBackColor = True
  6140. '
  6141. '中間距_ch
  6142. '
  6143. Me.中間距_ch.AutoSize = True
  6144. Me.中間距_ch.Location = New System.Drawing.Point(408, 5)
  6145. Me.中間距_ch.Name = "中間距_ch"
  6146. Me.中間距_ch.Size = New System.Drawing.Size(39, 20)
  6147. Me.中間距_ch.TabIndex = 1347
  6148. Me.中間距_ch.Text = "L2"
  6149. Me.中間距_ch.UseVisualStyleBackColor = True
  6150. '
  6151. '小間距_ch
  6152. '
  6153. Me.小間距_ch.AutoSize = True
  6154. Me.小間距_ch.Location = New System.Drawing.Point(366, 5)
  6155. Me.小間距_ch.Name = "小間距_ch"
  6156. Me.小間距_ch.Size = New System.Drawing.Size(39, 20)
  6157. Me.小間距_ch.TabIndex = 1346
  6158. Me.小間距_ch.Text = "L1"
  6159. Me.小間距_ch.UseVisualStyleBackColor = True
  6160. '
  6161. '物料清單_dgv
  6162. '
  6163. DataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  6164. Me.物料清單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle13
  6165. Me.物料清單_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  6166. Or System.Windows.Forms.AnchorStyles.Left) _
  6167. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6168. Me.物料清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  6169. Me.物料清單_dgv.BackgroundColor = System.Drawing.Color.White
  6170. Me.物料清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  6171. Me.物料清單_dgv.Location = New System.Drawing.Point(-1, 27)
  6172. Me.物料清單_dgv.Name = "物料清單_dgv"
  6173. Me.物料清單_dgv.RowHeadersWidth = 5
  6174. DataGridViewCellStyle14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6175. DataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  6176. Me.物料清單_dgv.RowsDefaultCellStyle = DataGridViewCellStyle14
  6177. Me.物料清單_dgv.RowTemplate.Height = 24
  6178. Me.物料清單_dgv.Size = New System.Drawing.Size(490, 610)
  6179. Me.物料清單_dgv.TabIndex = 1338
  6180. '
  6181. '合約_ch
  6182. '
  6183. Me.合約_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6184. Me.合約_ch.AutoSize = True
  6185. Me.合約_ch.BackColor = System.Drawing.SystemColors.Control
  6186. Me.合約_ch.BackgroundImage = CType(resources.GetObject("合約_ch.BackgroundImage"), System.Drawing.Image)
  6187. Me.合約_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  6188. Me.合約_ch.Location = New System.Drawing.Point(1668, 5)
  6189. Me.合約_ch.Name = "合約_ch"
  6190. Me.合約_ch.Size = New System.Drawing.Size(59, 20)
  6191. Me.合約_ch.TabIndex = 1427
  6192. Me.合約_ch.Text = " "
  6193. Me.合約_ch.UseVisualStyleBackColor = False
  6194. '
  6195. 'BOM_ch
  6196. '
  6197. Me.BOM_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6198. Me.BOM_ch.AutoSize = True
  6199. Me.BOM_ch.BackColor = System.Drawing.SystemColors.Control
  6200. Me.BOM_ch.BackgroundImage = CType(resources.GetObject("BOM_ch.BackgroundImage"), System.Drawing.Image)
  6201. Me.BOM_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  6202. Me.BOM_ch.Checked = True
  6203. Me.BOM_ch.CheckState = System.Windows.Forms.CheckState.Checked
  6204. Me.BOM_ch.Location = New System.Drawing.Point(1614, 5)
  6205. Me.BOM_ch.Name = "BOM_ch"
  6206. Me.BOM_ch.Size = New System.Drawing.Size(59, 20)
  6207. Me.BOM_ch.TabIndex = 1426
  6208. Me.BOM_ch.Text = " "
  6209. Me.BOM_ch.UseVisualStyleBackColor = False
  6210. '
  6211. '合約報價單
  6212. '
  6213. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  6214. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  6215. Me.ClientSize = New System.Drawing.Size(1914, 1041)
  6216. Me.Controls.Add(Me.合約_ch)
  6217. Me.Controls.Add(Me.BOM_ch)
  6218. Me.Controls.Add(Me.視窗4_pl)
  6219. Me.Controls.Add(Me.錨點1)
  6220. Me.Controls.Add(Me.空間2)
  6221. Me.Controls.Add(Me.空間1)
  6222. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6223. Me.Margin = New System.Windows.Forms.Padding(4)
  6224. Me.Name = "合約報價單"
  6225. Me.Text = "合約報價單"
  6226. Me.視窗4_pl.ResumeLayout(False)
  6227. Me.視窗4_pl.PerformLayout()
  6228. Me.Panel6.ResumeLayout(False)
  6229. Me.Panel6.PerformLayout()
  6230. Me.空間2.ResumeLayout(False)
  6231. Me.空間2.PerformLayout()
  6232. Me.TabControl1.ResumeLayout(False)
  6233. Me.建立合約資料_tc.ResumeLayout(False)
  6234. Me.建立合約資料_tc.PerformLayout()
  6235. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6236. Me.視窗2_pl.ResumeLayout(False)
  6237. Me.視窗2_pl.PerformLayout()
  6238. Me.Panel3.ResumeLayout(False)
  6239. Me.Panel3.PerformLayout()
  6240. CType(Me.報價明細表1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6241. Me.GroupBox1.ResumeLayout(False)
  6242. Me.GroupBox1.PerformLayout()
  6243. CType(Me.NUD_03, System.ComponentModel.ISupportInitialize).EndInit()
  6244. CType(Me.NUD_01, System.ComponentModel.ISupportInitialize).EndInit()
  6245. CType(Me.NUD_02, System.ComponentModel.ISupportInitialize).EndInit()
  6246. Me.GroupBox2.ResumeLayout(False)
  6247. Me.GroupBox2.PerformLayout()
  6248. Me.空間3.ResumeLayout(False)
  6249. Me.空間3.PerformLayout()
  6250. Me.Panel2.ResumeLayout(False)
  6251. Me.Panel2.PerformLayout()
  6252. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
  6253. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6254. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
  6255. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
  6256. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
  6257. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
  6258. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
  6259. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6260. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
  6261. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
  6262. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
  6263. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6264. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6265. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6266. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6267. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6268. Me.TabControl2.ResumeLayout(False)
  6269. Me.TabPage5.ResumeLayout(False)
  6270. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6271. Me.TabPage6.ResumeLayout(False)
  6272. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6273. Me.TabPage7.ResumeLayout(False)
  6274. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6275. Me.TabPage8.ResumeLayout(False)
  6276. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6277. Me.TabPage9.ResumeLayout(False)
  6278. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6279. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6280. Me.TabControl3.ResumeLayout(False)
  6281. Me.TabPage1.ResumeLayout(False)
  6282. Me.TabPage1.PerformLayout()
  6283. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6284. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6285. Me.TabPage2.ResumeLayout(False)
  6286. Me.TabPage2.PerformLayout()
  6287. Me.工程合約報價明細_tc.ResumeLayout(False)
  6288. Me.工程合約報價明細_tc.PerformLayout()
  6289. Me.視窗3_pl.ResumeLayout(False)
  6290. Me.視窗3_pl.PerformLayout()
  6291. Me.Panel4.ResumeLayout(False)
  6292. Me.Panel4.PerformLayout()
  6293. CType(Me.報價係數1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6294. Me.GroupBox4.ResumeLayout(False)
  6295. Me.GroupBox4.PerformLayout()
  6296. CType(Me.NUD_06, System.ComponentModel.ISupportInitialize).EndInit()
  6297. CType(Me.NUD_04, System.ComponentModel.ISupportInitialize).EndInit()
  6298. CType(Me.NUD_05, System.ComponentModel.ISupportInitialize).EndInit()
  6299. Me.GroupBox3.ResumeLayout(False)
  6300. Me.GroupBox3.PerformLayout()
  6301. Me.視窗1_pl.ResumeLayout(False)
  6302. Me.視窗1_pl.PerformLayout()
  6303. Me.物料群組_Panel.ResumeLayout(False)
  6304. Me.物料群組_Panel.PerformLayout()
  6305. CType(Me.係數_nup, System.ComponentModel.ISupportInitialize).EndInit()
  6306. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6307. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6308. Me.Panel5.ResumeLayout(False)
  6309. Me.Panel5.PerformLayout()
  6310. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6311. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).EndInit()
  6312. Me.工程合約試算表_tc.ResumeLayout(False)
  6313. Me.工程合約試算表_tc.PerformLayout()
  6314. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6315. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6316. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
  6317. Me.空間1.ResumeLayout(False)
  6318. Me.BOM_p.ResumeLayout(False)
  6319. Me.BOM_p.PerformLayout()
  6320. CType(Me.BOM表明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6321. Me.Panel1.ResumeLayout(False)
  6322. Me.Panel1.PerformLayout()
  6323. CType(Me.主管_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6324. CType(Me.圖庫清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6325. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
  6326. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  6327. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).EndInit()
  6328. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).EndInit()
  6329. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6330. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6331. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6332. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6333. CType(Me.BOM表控制_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6334. Me.合約_p.ResumeLayout(False)
  6335. Me.合約_p.PerformLayout()
  6336. CType(Me.報價明細表2_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6337. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6338. Me.物料_p.ResumeLayout(False)
  6339. Me.物料_p.PerformLayout()
  6340. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6341. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6342. Me.ResumeLayout(False)
  6343. Me.PerformLayout()
  6344. End Sub
  6345. Friend WithEvents 合約_ch As CheckBox
  6346. Friend WithEvents BOM_ch As CheckBox
  6347. Friend WithEvents 視窗4_pl As Panel
  6348. Friend WithEvents Panel6 As Panel
  6349. Friend WithEvents 轉移_ch As CheckBox
  6350. Friend WithEvents 改版_ch As CheckBox
  6351. Friend WithEvents 複製轉移_bt As Button
  6352. Friend WithEvents Label48 As Label
  6353. Friend WithEvents 合約編號3_n_tb As TextBox
  6354. Friend WithEvents 合約編號2_n_tb As TextBox
  6355. Friend WithEvents 合約編號1_n_tb As TextBox
  6356. Friend WithEvents 合約編號_n_cb As ComboBox
  6357. Friend WithEvents Label46 As Label
  6358. Friend WithEvents 合約編號3_o_tb As TextBox
  6359. Friend WithEvents 合約編號2_o_tb As TextBox
  6360. Friend WithEvents 合約編號1_o_tb As TextBox
  6361. Friend WithEvents 合約編號_o_cb As ComboBox
  6362. Friend WithEvents Label47 As Label
  6363. Friend WithEvents 新建_ch As CheckBox
  6364. Friend WithEvents Label72 As Label
  6365. Friend WithEvents Label56 As Label
  6366. Friend WithEvents CanceL4_bt As Button
  6367. Friend WithEvents 錨點1 As TextBox
  6368. Friend WithEvents 空間2 As Panel
  6369. Friend WithEvents 物料_ch As CheckBox
  6370. Friend WithEvents Label41 As Label
  6371. Friend WithEvents 合約編號清單_bt As Button
  6372. Friend WithEvents 工程期1_ch As ComboBox
  6373. Friend WithEvents Label40 As Label
  6374. Friend WithEvents 縮放_bt As Button
  6375. Friend WithEvents 合約編號1_cb As ComboBox
  6376. Friend WithEvents Label2 As Label
  6377. Friend WithEvents 合約編號_tb As TextBox
  6378. Friend WithEvents TabControl1 As TabControl
  6379. Friend WithEvents 建立合約資料_tc As TabPage
  6380. Friend WithEvents 發送_bt As Button
  6381. Friend WithEvents 查閱文件_bt As Button
  6382. Friend WithEvents 列印成EXCEL_bt As Button
  6383. Friend WithEvents 縮放2_bt As Button
  6384. Friend WithEvents 合約_dgv As DataGridView
  6385. Friend WithEvents 總表範例_bt As Button
  6386. Friend WithEvents 合約改版_bt As Button
  6387. Friend WithEvents 新增資料1_bt As Button
  6388. Friend WithEvents 排序1_bt As Button
  6389. Friend WithEvents 總表選擇刪除_bt As Button
  6390. Friend WithEvents 總表編輯_bt As Button
  6391. Friend WithEvents 報價總表存檔_bt As Button
  6392. Friend WithEvents 錨點2 As TextBox
  6393. Friend WithEvents 縮放1_bt As Button
  6394. Friend WithEvents 查詢_bt As Button
  6395. Friend WithEvents ProgressBar1 As ProgressBar
  6396. Friend WithEvents 關鍵字搜尋_tb As TextBox
  6397. Friend WithEvents 刪除合約_bt As Button
  6398. Friend WithEvents 存檔_tb As Button
  6399. Friend WithEvents 合約停止_ch As CheckBox
  6400. Friend WithEvents Label53 As Label
  6401. Friend WithEvents Label7 As Label
  6402. Friend WithEvents 工材分離_ch As CheckBox
  6403. Friend WithEvents 視窗2_pl As Panel
  6404. Friend WithEvents Panel3 As Panel
  6405. Friend WithEvents Label44 As Label
  6406. Friend WithEvents 報價明細表1_dgv As DataGridView
  6407. Friend WithEvents GroupBox1 As GroupBox
  6408. Friend WithEvents 等於_bt As Button
  6409. Friend WithEvents NUD_03 As NumericUpDown
  6410. Friend WithEvents 清除_bt As Button
  6411. Friend WithEvents NUD_01 As NumericUpDown
  6412. Friend WithEvents 小數點_bt As Button
  6413. Friend WithEvents 倒退_bt As Button
  6414. Friend WithEvents 計算1_ch As ComboBox
  6415. Friend WithEvents b0_bt As Button
  6416. Friend WithEvents b9_bt As Button
  6417. Friend WithEvents NUD_02 As NumericUpDown
  6418. Friend WithEvents b8_bt As Button
  6419. Friend WithEvents b7_bt As Button
  6420. Friend WithEvents b6_bt As Button
  6421. Friend WithEvents b5_bt As Button
  6422. Friend WithEvents b4_bt As Button
  6423. Friend WithEvents b3_bt As Button
  6424. Friend WithEvents b2_bt As Button
  6425. Friend WithEvents b1_bt As Button
  6426. Friend WithEvents 除_bt As Button
  6427. Friend WithEvents 乘_bt As Button
  6428. Friend WithEvents 減_bt As Button
  6429. Friend WithEvents 加_bt As Button
  6430. Friend WithEvents 選擇_lb As Label
  6431. Friend WithEvents 鍵盤鎖定1_ch As CheckBox
  6432. Friend WithEvents 座標_lb As Label
  6433. Friend WithEvents 結果_tb As TextBox
  6434. Friend WithEvents 文字資料輸入1_bt As Button
  6435. Friend WithEvents 計算式_tb As TextBox
  6436. Friend WithEvents Label24 As Label
  6437. Friend WithEvents 數值1_tb As TextBox
  6438. Friend WithEvents 數值2_tb As TextBox
  6439. Friend WithEvents 選擇項_tb As TextBox
  6440. Friend WithEvents GroupBox2 As GroupBox
  6441. Friend WithEvents 數量_tb As TextBox
  6442. Friend WithEvents Label45 As Label
  6443. Friend WithEvents Label31 As Label
  6444. Friend WithEvents 合計項_cb As ComboBox
  6445. Friend WithEvents Label30 As Label
  6446. Friend WithEvents 單位_tb As TextBox
  6447. Friend WithEvents 備註_tb As TextBox
  6448. Friend WithEvents 內容_tb As TextBox
  6449. Friend WithEvents 數字1_ch As CheckBox
  6450. Friend WithEvents 中文小寫1_ch As CheckBox
  6451. Friend WithEvents 中文大寫1_ch As CheckBox
  6452. Friend WithEvents ITEM1_cb As ComboBox
  6453. Friend WithEvents Label25 As Label
  6454. Friend WithEvents Label23 As Label
  6455. Friend WithEvents Label16 As Label
  6456. Friend WithEvents CanceL2_bt As Button
  6457. Friend WithEvents 空間3 As Panel
  6458. Friend WithEvents Label76 As Label
  6459. Friend WithEvents 利潤比4_tb As TextBox
  6460. Friend WithEvents Label71 As Label
  6461. Friend WithEvents Label70 As Label
  6462. Friend WithEvents Label69 As Label
  6463. Friend WithEvents Label68 As Label
  6464. Friend WithEvents Label67 As Label
  6465. Friend WithEvents Label64 As Label
  6466. Friend WithEvents Label63 As Label
  6467. Friend WithEvents 利潤比3_tb As TextBox
  6468. Friend WithEvents Label60 As Label
  6469. Friend WithEvents 總報價_tb As TextBox
  6470. Friend WithEvents 總成本_tb As TextBox
  6471. Friend WithEvents Label58 As Label
  6472. Friend WithEvents Label59 As Label
  6473. Friend WithEvents 利潤比2_tb As TextBox
  6474. Friend WithEvents Label57 As Label
  6475. Friend WithEvents 利潤比1_tb As TextBox
  6476. Friend WithEvents 報價說明_tb As TextBox
  6477. Friend WithEvents 預估利潤_tb As TextBox
  6478. Friend WithEvents 預估材料總報價_tb As TextBox
  6479. Friend WithEvents Panel2 As Panel
  6480. Friend WithEvents Label42 As Label
  6481. Friend WithEvents Label379 As Label
  6482. Friend WithEvents 工程期_ch As ComboBox
  6483. Friend WithEvents Label19 As Label
  6484. Friend WithEvents Label15 As Label
  6485. Friend WithEvents 最末頁_cb As ComboBox
  6486. Friend WithEvents Label20 As Label
  6487. Friend WithEvents 合約編號3_tb As TextBox
  6488. Friend WithEvents 合約編號2_tb As TextBox
  6489. Friend WithEvents 明細選項_bt As TextBox
  6490. Friend WithEvents 合約編號1_tb As TextBox
  6491. Friend WithEvents 刪除資料_bt As Button
  6492. Friend WithEvents 合約編號_cb As ComboBox
  6493. Friend WithEvents 新增資料_bt As Button
  6494. Friend WithEvents 自動讀取_bt As Button
  6495. Friend WithEvents Label397 As Label
  6496. Friend WithEvents 手動輸入_bt As Button
  6497. Friend WithEvents 金額6_und As NumericUpDown
  6498. Friend WithEvents Label5 As Label
  6499. Friend WithEvents 工程款6_nud As NumericUpDown
  6500. Friend WithEvents 最高扣款_bt As TextBox
  6501. Friend WithEvents 合約種類_tb As TextBox
  6502. Friend WithEvents NUD2 As NumericUpDown
  6503. Friend WithEvents NUD1 As NumericUpDown
  6504. Friend WithEvents Label372 As Label
  6505. Friend WithEvents Label394 As Label
  6506. Friend WithEvents 客戶名稱_tb As ComboBox
  6507. Friend WithEvents Label396 As Label
  6508. Friend WithEvents Label373 As Label
  6509. Friend WithEvents NUD3 As NumericUpDown
  6510. Friend WithEvents Label374 As Label
  6511. Friend WithEvents 合約種類_cb As ComboBox
  6512. Friend WithEvents Label375 As Label
  6513. Friend WithEvents 逾期_bt As TextBox
  6514. Friend WithEvents 工程名稱_中_tb As TextBox
  6515. Friend WithEvents Label395 As Label
  6516. Friend WithEvents 客戶地址_tb As TextBox
  6517. Friend WithEvents Label393 As Label
  6518. Friend WithEvents 金額5_und As NumericUpDown
  6519. Friend WithEvents Label380 As Label
  6520. Friend WithEvents 工程地點_tb As TextBox
  6521. Friend WithEvents Label406 As Label
  6522. Friend WithEvents 金額4_und As NumericUpDown
  6523. Friend WithEvents 逾期_英_bt As TextBox
  6524. Friend WithEvents Label376 As Label
  6525. Friend WithEvents 工期_nud As NumericUpDown
  6526. Friend WithEvents 金額3_und As NumericUpDown
  6527. Friend WithEvents 最高扣款_英_bt As TextBox
  6528. Friend WithEvents Label414 As Label
  6529. Friend WithEvents Label391 As Label
  6530. Friend WithEvents 金額2_und As NumericUpDown
  6531. Friend WithEvents Label403 As Label
  6532. Friend WithEvents 選擇公司_cb As ComboBox
  6533. Friend WithEvents 負責人_B_cb As ComboBox
  6534. Friend WithEvents 金額1_und As NumericUpDown
  6535. Friend WithEvents Label407 As Label
  6536. Friend WithEvents 立約日期_dtp As DateTimePicker
  6537. Friend WithEvents Label410 As Label
  6538. Friend WithEvents 工程款5_nud As NumericUpDown
  6539. Friend WithEvents Label408 As Label
  6540. Friend WithEvents Label377 As Label
  6541. Friend WithEvents Label405 As Label
  6542. Friend WithEvents 工程款4_nud As NumericUpDown
  6543. Friend WithEvents 減價_bt As TextBox
  6544. Friend WithEvents 頁數_bt As TextBox
  6545. Friend WithEvents Label409 As Label
  6546. Friend WithEvents Label399 As Label
  6547. Friend WithEvents 負責人_A_cb As ComboBox
  6548. Friend WithEvents 我司地址_tb As TextBox
  6549. Friend WithEvents 工程名稱_英_tb As TextBox
  6550. Friend WithEvents 工程款3_nud As NumericUpDown
  6551. Friend WithEvents Label404 As Label
  6552. Friend WithEvents Label413 As Label
  6553. Friend WithEvents Label412 As Label
  6554. Friend WithEvents Label400 As Label
  6555. Friend WithEvents 工程款1_nud As NumericUpDown
  6556. Friend WithEvents Label378 As Label
  6557. Friend WithEvents 廠區_中文_tb As TextBox
  6558. Friend WithEvents 工程款2_nud As NumericUpDown
  6559. Friend WithEvents Label28 As Label
  6560. Friend WithEvents Label382 As Label
  6561. Friend WithEvents 稅額顯示_lb As Label
  6562. Friend WithEvents CH2 As CheckBox
  6563. Friend WithEvents CH1 As CheckBox
  6564. Friend WithEvents Label402 As Label
  6565. Friend WithEvents Label392 As Label
  6566. Friend WithEvents Label381 As Label
  6567. Friend WithEvents Label386 As Label
  6568. Friend WithEvents Label21 As Label
  6569. Friend WithEvents TabControl2 As TabControl
  6570. Friend WithEvents TabPage5 As TabPage
  6571. Friend WithEvents 第1期_dgv As DataGridView
  6572. Friend WithEvents TabPage6 As TabPage
  6573. Friend WithEvents 第2期_dgv As DataGridView
  6574. Friend WithEvents TabPage7 As TabPage
  6575. Friend WithEvents 第3期_dgv As DataGridView
  6576. Friend WithEvents TabPage8 As TabPage
  6577. Friend WithEvents 第4期_dgv As DataGridView
  6578. Friend WithEvents TabPage9 As TabPage
  6579. Friend WithEvents 第5期_dgv As DataGridView
  6580. Friend WithEvents Label388 As Label
  6581. Friend WithEvents Label387 As Label
  6582. Friend WithEvents Label390 As Label
  6583. Friend WithEvents Label389 As Label
  6584. Friend WithEvents Label411 As Label
  6585. Friend WithEvents Label29 As Label
  6586. Friend WithEvents Label35 As Label
  6587. Friend WithEvents Label34 As Label
  6588. Friend WithEvents 預估工資總報價_tb As TextBox
  6589. Friend WithEvents 預估材料總成本_tb As TextBox
  6590. Friend WithEvents Label54 As Label
  6591. Friend WithEvents 預估工資總成本_tb As TextBox
  6592. Friend WithEvents Label55 As Label
  6593. Friend WithEvents Label65 As Label
  6594. Friend WithEvents Label62 As Label
  6595. Friend WithEvents Label66 As Label
  6596. Friend WithEvents Label61 As Label
  6597. Friend WithEvents 報價總表_dgv As DataGridView
  6598. Friend WithEvents 彙總存檔_bt As Button
  6599. Friend WithEvents 工程合約報價明細_tc As TabPage
  6600. Friend WithEvents 詳細資料2_ch As CheckBox
  6601. Friend WithEvents 啟用批量選擇_ch As CheckBox
  6602. Friend WithEvents 視窗3_pl As Panel
  6603. Friend WithEvents Panel4 As Panel
  6604. Friend WithEvents 報價係數1_dgv As DataGridView
  6605. Friend WithEvents 座標1_lb As Label
  6606. Friend WithEvents GroupBox4 As GroupBox
  6607. Friend WithEvents 鍵盤鎖定2_ch As CheckBox
  6608. Friend WithEvents 等於1_bt As Button
  6609. Friend WithEvents NUD_06 As NumericUpDown
  6610. Friend WithEvents 清除1_bt As Button
  6611. Friend WithEvents NUD_04 As NumericUpDown
  6612. Friend WithEvents 小數點1_bt As Button
  6613. Friend WithEvents 倒退1_bt As Button
  6614. Friend WithEvents 計算2_ch As ComboBox
  6615. Friend WithEvents A0_bt As Button
  6616. Friend WithEvents A9_bt As Button
  6617. Friend WithEvents NUD_05 As NumericUpDown
  6618. Friend WithEvents A8_bt As Button
  6619. Friend WithEvents A7_bt As Button
  6620. Friend WithEvents A6_bt As Button
  6621. Friend WithEvents 選擇1_lb As Label
  6622. Friend WithEvents A5_bt As Button
  6623. Friend WithEvents A4_bt As Button
  6624. Friend WithEvents A3_bt As Button
  6625. Friend WithEvents A2_bt As Button
  6626. Friend WithEvents A1_bt As Button
  6627. Friend WithEvents 除1_bt As Button
  6628. Friend WithEvents 乘1_bt As Button
  6629. Friend WithEvents 減1_bt As Button
  6630. Friend WithEvents 加1_bt As Button
  6631. Friend WithEvents 文字資料輸入2_bt As Button
  6632. Friend WithEvents Label13 As Label
  6633. Friend WithEvents 選擇項1_tb As TextBox
  6634. Friend WithEvents GroupBox3 As GroupBox
  6635. Friend WithEvents Label14 As Label
  6636. Friend WithEvents 合計項1_cb As ComboBox
  6637. Friend WithEvents 單位1_tb As TextBox
  6638. Friend WithEvents 備註1_tb As TextBox
  6639. Friend WithEvents 內容1_tb As TextBox
  6640. Friend WithEvents 數字2_ch As CheckBox
  6641. Friend WithEvents 中文小寫2_ch As CheckBox
  6642. Friend WithEvents 中文大寫2_ch As CheckBox
  6643. Friend WithEvents ITEM2_cb As ComboBox
  6644. Friend WithEvents Label18 As Label
  6645. Friend WithEvents Label17 As Label
  6646. Friend WithEvents 結果1_tb As TextBox
  6647. Friend WithEvents 計算式1_tb As TextBox
  6648. Friend WithEvents 數值3_tb As TextBox
  6649. Friend WithEvents 數值4_tb As TextBox
  6650. Friend WithEvents Label36 As Label
  6651. Friend WithEvents Label38 As Label
  6652. Friend WithEvents CanceL3_bt As Button
  6653. Friend WithEvents 視窗1_pl As Panel
  6654. Friend WithEvents 物料群組_Panel As Panel
  6655. Friend WithEvents 複製係數範本_tb As Button
  6656. Friend WithEvents 係數項目新增_bt As Button
  6657. Friend WithEvents 係數項目刪除_bt As Button
  6658. Friend WithEvents 係數項目修改_bt As Button
  6659. Friend WithEvents 係數單位_cb As ComboBox
  6660. Friend WithEvents Label10 As Label
  6661. Friend WithEvents Label12 As Label
  6662. Friend WithEvents 係數項目_cb As ComboBox
  6663. Friend WithEvents Label11 As Label
  6664. Friend WithEvents 係數_nup As NumericUpDown
  6665. Friend WithEvents Cancel1_bt As Button
  6666. Friend WithEvents 合約_lb As Label
  6667. Friend WithEvents Label37 As Label
  6668. Friend WithEvents 報價係數_dgv As DataGridView
  6669. Friend WithEvents 報價單立約日期_dtp As DateTimePicker
  6670. Friend WithEvents Label27 As Label
  6671. Friend WithEvents Label26 As Label
  6672. Friend WithEvents 報價單合約編號_tb As TextBox
  6673. Friend WithEvents 報價工程名稱_英_tb As TextBox
  6674. Friend WithEvents 報價工程名稱_中_tb As TextBox
  6675. Friend WithEvents Label9 As Label
  6676. Friend WithEvents Label8 As Label
  6677. Friend WithEvents 報價單客戶名稱_cb As ComboBox
  6678. Friend WithEvents Label6 As Label
  6679. Friend WithEvents 報價明細表_dgv As DataGridView
  6680. Friend WithEvents Panel5 As Panel
  6681. Friend WithEvents Label75 As Label
  6682. Friend WithEvents Label22 As Label
  6683. Friend WithEvents Label33 As Label
  6684. Friend WithEvents 工資_ch As CheckBox
  6685. Friend WithEvents 料號_tb As TextBox
  6686. Friend WithEvents 單位2_tb As TextBox
  6687. Friend WithEvents Label32 As Label
  6688. Friend WithEvents 申請數_lb As Label
  6689. Friend WithEvents ITEM3_cb As ComboBox
  6690. Friend WithEvents 申請數_nud As NumericUpDown
  6691. Friend WithEvents 利潤表_ch As CheckBox
  6692. Friend WithEvents 材料_ch As CheckBox
  6693. Friend WithEvents 係數範本_tb As Button
  6694. Friend WithEvents 編輯係數_bt As Button
  6695. Friend WithEvents 規格顯示修改_bt As Button
  6696. Friend WithEvents 修改明細表上的材料指定_bt As Button
  6697. Friend WithEvents 選擇材料新增到明細表_bt As Button
  6698. Friend WithEvents 新增資料2_bt As Button
  6699. Friend WithEvents 總表選擇刪除1_bt As Button
  6700. Friend WithEvents 明細表編輯_bt As Button
  6701. Friend WithEvents 報價明細表存檔_bt As Button
  6702. Friend WithEvents 排序2_bt As Button
  6703. Friend WithEvents 物料圖1_pb As PictureBox
  6704. Friend WithEvents 工程合約試算表_tc As TabPage
  6705. Friend WithEvents 詳細資料3_ch As CheckBox
  6706. Friend WithEvents Label4 As Label
  6707. Friend WithEvents 刪除1_bt As Button
  6708. Friend WithEvents 係數_nud As NumericUpDown
  6709. Friend WithEvents 存檔_bt As Button
  6710. Friend WithEvents 使用計算機_ch As CheckBox
  6711. Friend WithEvents 直接輸入_ch As CheckBox
  6712. Friend WithEvents 材料加入1_bt As Button
  6713. Friend WithEvents 修改樓層_迴圈_bt As Button
  6714. Friend WithEvents 新增物件_bt As Button
  6715. Friend WithEvents 料號_lb As Label
  6716. Friend WithEvents 樓層_迴路_cb As ComboBox
  6717. Friend WithEvents 料號1_tb As TextBox
  6718. Friend WithEvents Label3 As Label
  6719. Friend WithEvents 修改試算表名稱_bt As Button
  6720. Friend WithEvents 新增試算表_bt As Button
  6721. Friend WithEvents Label1 As Label
  6722. Friend WithEvents 試算表_cb As ComboBox
  6723. Friend WithEvents 試算表_dgv As DataGridView
  6724. Friend WithEvents 物料圖_pb As PictureBox
  6725. Friend WithEvents 空間1 As Panel
  6726. Friend WithEvents BOM_p As Panel
  6727. Friend WithEvents 詳細資料1_ch As CheckBox
  6728. Friend WithEvents Label73 As Label
  6729. Friend WithEvents BOM新增到明細表_bt As Button
  6730. Friend WithEvents 中文小寫3_ch As CheckBox
  6731. Friend WithEvents Label52 As Label
  6732. Friend WithEvents Label51 As Label
  6733. Friend WithEvents 主項目_tb As TextBox
  6734. Friend WithEvents BOM表明細_dgv As DataGridView
  6735. Friend WithEvents 中文大寫3_ch As CheckBox
  6736. Friend WithEvents ITEM4_cb As ComboBox
  6737. Friend WithEvents Panel1 As Panel
  6738. Friend WithEvents 主管_dgv As DataGridView
  6739. Friend WithEvents 圖庫清單_dgv As DataGridView
  6740. Friend WithEvents 項目流水_tb As TextBox
  6741. Friend WithEvents 選擇項3_tb As TextBox
  6742. Friend WithEvents 連動編號_tb As TextBox
  6743. Friend WithEvents PictureBox2 As PictureBox
  6744. Friend WithEvents PictureBox1 As PictureBox
  6745. Friend WithEvents 選擇項2_tb As TextBox
  6746. Friend WithEvents DGV位置2 As NumericUpDown
  6747. Friend WithEvents DGV位置1 As NumericUpDown
  6748. Friend WithEvents 明細表流水_tb As TextBox
  6749. Friend WithEvents 總表流水_tb As TextBox
  6750. Friend WithEvents Y_2_tb As TextBox
  6751. Friend WithEvents Y_3_tb As TextBox
  6752. Friend WithEvents 係數合約號_tb As TextBox
  6753. Friend WithEvents Label43 As Label
  6754. Friend WithEvents 係數流水號_tb As TextBox
  6755. Friend WithEvents 群組編碼_cb As ComboBox
  6756. Friend WithEvents X_2_tb As TextBox
  6757. Friend WithEvents 語言_dgv As DataGridView
  6758. Friend WithEvents X_3_tb As TextBox
  6759. Friend WithEvents 存檔比較_dgv As DataGridView
  6760. Friend WithEvents 範例文本_dgv As DataGridView
  6761. Friend WithEvents 群組碼_tb As TextBox
  6762. Friend WithEvents 表號_tb As TextBox
  6763. Friend WithEvents 表頭_tb As TextBox
  6764. Friend WithEvents 試算控制表_dgv As DataGridView
  6765. Friend WithEvents BOM表控制_dgv As DataGridView
  6766. Friend WithEvents 合約_p As Panel
  6767. Friend WithEvents 全部取消_bt As Button
  6768. Friend WithEvents 全部選擇_bt As Button
  6769. Friend WithEvents 詳細資料_ch As CheckBox
  6770. Friend WithEvents Label77 As Label
  6771. Friend WithEvents 合約編號2_cb As ComboBox
  6772. Friend WithEvents 合約編號_1_tb As TextBox
  6773. Friend WithEvents Label78 As Label
  6774. Friend WithEvents 關鍵字搜尋1_tb As TextBox
  6775. Friend WithEvents 查詢1_bt As Button
  6776. Friend WithEvents 選取資料新增到明細表_bt As Button
  6777. Friend WithEvents 報價明細表2_dgv As DataGridView
  6778. Friend WithEvents 合約1_dgv As DataGridView
  6779. Friend WithEvents Label74 As Label
  6780. Friend WithEvents 物料_p As Panel
  6781. Friend WithEvents 帶上歷史單價_ch As CheckBox
  6782. Friend WithEvents 群組編碼_lb As Label
  6783. Friend WithEvents Label50 As Label
  6784. Friend WithEvents 歷史單價_tb As TextBox
  6785. Friend WithEvents Label49 As Label
  6786. Friend WithEvents 物料規格_dgv As DataGridView
  6787. Friend WithEvents 最後採購日_tb As TextBox
  6788. Friend WithEvents 大間距_ch As CheckBox
  6789. Friend WithEvents 新群組1_cb As ComboBox
  6790. Friend WithEvents 搜尋_bt As Button
  6791. Friend WithEvents 中間距_ch As CheckBox
  6792. Friend WithEvents 小間距_ch As CheckBox
  6793. Friend WithEvents 物料清單_dgv As DataGridView
  6794. Friend WithEvents TabControl3 As TabControl
  6795. Friend WithEvents TabPage1 As TabPage
  6796. Friend WithEvents TabPage2 As TabPage
  6797. Friend WithEvents Label83 As Label
  6798. Friend WithEvents 甲方_cb As ComboBox
  6799. Friend WithEvents 未折價前_tb As TextBox
  6800. Friend WithEvents Label82 As Label
  6801. Friend WithEvents 歸零位數_nud As NumericUpDown
  6802. Friend WithEvents Label81 As Label
  6803. Friend WithEvents 稅後歸零_ch As CheckBox
  6804. Friend WithEvents 稅前歸零_ch As CheckBox
  6805. Friend WithEvents Label80 As Label
  6806. Friend WithEvents 折讓比例_nud As NumericUpDown
  6807. Friend WithEvents Label79 As Label
  6808. Friend WithEvents 報價小計_tb As TextBox
  6809. Friend WithEvents Label39 As Label
  6810. Friend WithEvents 折價計算_bt As Button
  6811. Friend WithEvents 歸零數_tb As TextBox
  6812. Friend WithEvents 印尼盾_ch As CheckBox
  6813. Friend WithEvents 人民幣_ch As CheckBox
  6814. Friend WithEvents 美金_ch As CheckBox
  6815. Friend WithEvents 台幣_ch As CheckBox
  6816. End Class