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

合約報價單.Designer.vb 357KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832
  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 DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  23. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle10 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle11 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle12 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle13 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle14 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  38. Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  39. Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  40. Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  41. Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  42. Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  43. Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  44. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  45. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  46. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  47. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  48. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  49. Me.Y_2_tb = New System.Windows.Forms.TextBox()
  50. Me.X_2_tb = New System.Windows.Forms.TextBox()
  51. Me.空間2 = New System.Windows.Forms.Panel()
  52. Me.物料_ch = New System.Windows.Forms.CheckBox()
  53. Me.Label41 = New System.Windows.Forms.Label()
  54. Me.合約編號清單_bt = New System.Windows.Forms.Button()
  55. Me.工程期1_ch = New System.Windows.Forms.ComboBox()
  56. Me.Label40 = New System.Windows.Forms.Label()
  57. Me.縮放_bt = New System.Windows.Forms.Button()
  58. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  59. Me.Label2 = New System.Windows.Forms.Label()
  60. Me.合約編號_tb = New System.Windows.Forms.TextBox()
  61. Me.TabControl1 = New System.Windows.Forms.TabControl()
  62. Me.建立合約資料_tc = New System.Windows.Forms.TabPage()
  63. Me.印尼盾_ch = New System.Windows.Forms.CheckBox()
  64. Me.人民幣_ch = New System.Windows.Forms.CheckBox()
  65. Me.查閱文件_bt = New System.Windows.Forms.Button()
  66. Me.列印成EXCEL_bt = New System.Windows.Forms.Button()
  67. Me.縮放2_bt = New System.Windows.Forms.Button()
  68. Me.合約_dgv = New System.Windows.Forms.DataGridView()
  69. Me.總表範例_bt = New System.Windows.Forms.Button()
  70. Me.合約改版_bt = New System.Windows.Forms.Button()
  71. Me.新增資料1_bt = New System.Windows.Forms.Button()
  72. Me.排序1_bt = New System.Windows.Forms.Button()
  73. Me.總表選擇刪除_bt = New System.Windows.Forms.Button()
  74. Me.總表編輯_bt = New System.Windows.Forms.Button()
  75. Me.報價總表存檔_bt = New System.Windows.Forms.Button()
  76. Me.錨點2 = New System.Windows.Forms.TextBox()
  77. Me.縮放1_bt = New System.Windows.Forms.Button()
  78. Me.查詢_bt = New System.Windows.Forms.Button()
  79. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  80. Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
  81. Me.刪除合約_bt = New System.Windows.Forms.Button()
  82. Me.存檔_tb = New System.Windows.Forms.Button()
  83. Me.合約停止_ch = New System.Windows.Forms.CheckBox()
  84. Me.Label53 = New System.Windows.Forms.Label()
  85. Me.Label7 = New System.Windows.Forms.Label()
  86. Me.工材分離_ch = New System.Windows.Forms.CheckBox()
  87. Me.視窗2_pl = New System.Windows.Forms.Panel()
  88. Me.Panel3 = New System.Windows.Forms.Panel()
  89. Me.Label44 = New System.Windows.Forms.Label()
  90. Me.報價明細表1_dgv = New System.Windows.Forms.DataGridView()
  91. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  92. Me.等於_bt = New System.Windows.Forms.Button()
  93. Me.NUD_03 = New System.Windows.Forms.NumericUpDown()
  94. Me.清除_bt = New System.Windows.Forms.Button()
  95. Me.NUD_01 = New System.Windows.Forms.NumericUpDown()
  96. Me.小數點_bt = New System.Windows.Forms.Button()
  97. Me.倒退_bt = New System.Windows.Forms.Button()
  98. Me.計算1_ch = New System.Windows.Forms.ComboBox()
  99. Me.b0_bt = New System.Windows.Forms.Button()
  100. Me.b9_bt = New System.Windows.Forms.Button()
  101. Me.NUD_02 = New System.Windows.Forms.NumericUpDown()
  102. Me.b8_bt = New System.Windows.Forms.Button()
  103. Me.b7_bt = New System.Windows.Forms.Button()
  104. Me.b6_bt = New System.Windows.Forms.Button()
  105. Me.b5_bt = New System.Windows.Forms.Button()
  106. Me.b4_bt = New System.Windows.Forms.Button()
  107. Me.b3_bt = New System.Windows.Forms.Button()
  108. Me.b2_bt = New System.Windows.Forms.Button()
  109. Me.b1_bt = New System.Windows.Forms.Button()
  110. Me.除_bt = New System.Windows.Forms.Button()
  111. Me.乘_bt = New System.Windows.Forms.Button()
  112. Me.減_bt = New System.Windows.Forms.Button()
  113. Me.加_bt = New System.Windows.Forms.Button()
  114. Me.選擇_lb = New System.Windows.Forms.Label()
  115. Me.鍵盤鎖定1_ch = New System.Windows.Forms.CheckBox()
  116. Me.座標_lb = New System.Windows.Forms.Label()
  117. Me.結果_tb = New System.Windows.Forms.TextBox()
  118. Me.文字資料輸入1_bt = New System.Windows.Forms.Button()
  119. Me.計算式_tb = New System.Windows.Forms.TextBox()
  120. Me.Label24 = New System.Windows.Forms.Label()
  121. Me.數值1_tb = New System.Windows.Forms.TextBox()
  122. Me.數值2_tb = New System.Windows.Forms.TextBox()
  123. Me.選擇項_tb = New System.Windows.Forms.TextBox()
  124. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  125. Me.數量_tb = New System.Windows.Forms.TextBox()
  126. Me.Label45 = New System.Windows.Forms.Label()
  127. Me.Label31 = New System.Windows.Forms.Label()
  128. Me.合計項_cb = New System.Windows.Forms.ComboBox()
  129. Me.Label30 = New System.Windows.Forms.Label()
  130. Me.單位_tb = New System.Windows.Forms.TextBox()
  131. Me.備註_tb = New System.Windows.Forms.TextBox()
  132. Me.內容_tb = New System.Windows.Forms.TextBox()
  133. Me.數字1_ch = New System.Windows.Forms.CheckBox()
  134. Me.中文小寫1_ch = New System.Windows.Forms.CheckBox()
  135. Me.中文大寫1_ch = New System.Windows.Forms.CheckBox()
  136. Me.ITEM1_cb = New System.Windows.Forms.ComboBox()
  137. Me.Label25 = New System.Windows.Forms.Label()
  138. Me.Label23 = New System.Windows.Forms.Label()
  139. Me.Label16 = New System.Windows.Forms.Label()
  140. Me.CanceL2_bt = New System.Windows.Forms.Button()
  141. Me.空間3 = New System.Windows.Forms.Panel()
  142. Me.歸零數_tb = New System.Windows.Forms.TextBox()
  143. Me.Label76 = New System.Windows.Forms.Label()
  144. Me.利潤比4_tb = New System.Windows.Forms.TextBox()
  145. Me.Label71 = New System.Windows.Forms.Label()
  146. Me.Label70 = New System.Windows.Forms.Label()
  147. Me.Label69 = New System.Windows.Forms.Label()
  148. Me.Label68 = New System.Windows.Forms.Label()
  149. Me.Label67 = New System.Windows.Forms.Label()
  150. Me.Label64 = New System.Windows.Forms.Label()
  151. Me.Label63 = New System.Windows.Forms.Label()
  152. Me.利潤比3_tb = New System.Windows.Forms.TextBox()
  153. Me.Label60 = New System.Windows.Forms.Label()
  154. Me.總報價_tb = New System.Windows.Forms.TextBox()
  155. Me.總成本_tb = New System.Windows.Forms.TextBox()
  156. Me.彙總存檔_bt = New System.Windows.Forms.Button()
  157. Me.Label58 = New System.Windows.Forms.Label()
  158. Me.Label59 = New System.Windows.Forms.Label()
  159. Me.利潤比2_tb = New System.Windows.Forms.TextBox()
  160. Me.Label57 = New System.Windows.Forms.Label()
  161. Me.利潤比1_tb = New System.Windows.Forms.TextBox()
  162. Me.預估利潤_tb = New System.Windows.Forms.TextBox()
  163. Me.預估材料總報價_tb = New System.Windows.Forms.TextBox()
  164. Me.Panel2 = New System.Windows.Forms.Panel()
  165. Me.Label42 = New System.Windows.Forms.Label()
  166. Me.Label379 = New System.Windows.Forms.Label()
  167. Me.工程期_ch = New System.Windows.Forms.ComboBox()
  168. Me.Label19 = New System.Windows.Forms.Label()
  169. Me.Label15 = New System.Windows.Forms.Label()
  170. Me.最末頁_cb = New System.Windows.Forms.ComboBox()
  171. Me.Label20 = New System.Windows.Forms.Label()
  172. Me.合約編號3_tb = New System.Windows.Forms.TextBox()
  173. Me.合約編號2_tb = New System.Windows.Forms.TextBox()
  174. Me.明細選項_bt = New System.Windows.Forms.TextBox()
  175. Me.合約編號1_tb = New System.Windows.Forms.TextBox()
  176. Me.刪除資料_bt = New System.Windows.Forms.Button()
  177. Me.合約編號_cb = New System.Windows.Forms.ComboBox()
  178. Me.新增資料_bt = New System.Windows.Forms.Button()
  179. Me.自動讀取_bt = New System.Windows.Forms.Button()
  180. Me.Label397 = New System.Windows.Forms.Label()
  181. Me.手動輸入_bt = New System.Windows.Forms.Button()
  182. Me.金額6_und = New System.Windows.Forms.NumericUpDown()
  183. Me.Label5 = New System.Windows.Forms.Label()
  184. Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
  185. Me.最高扣款_bt = New System.Windows.Forms.TextBox()
  186. Me.合約種類_tb = New System.Windows.Forms.TextBox()
  187. Me.NUD2 = New System.Windows.Forms.NumericUpDown()
  188. Me.NUD1 = New System.Windows.Forms.NumericUpDown()
  189. Me.Label372 = New System.Windows.Forms.Label()
  190. Me.Label394 = New System.Windows.Forms.Label()
  191. Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
  192. Me.Label396 = New System.Windows.Forms.Label()
  193. Me.Label373 = New System.Windows.Forms.Label()
  194. Me.NUD3 = New System.Windows.Forms.NumericUpDown()
  195. Me.Label374 = New System.Windows.Forms.Label()
  196. Me.合約種類_cb = New System.Windows.Forms.ComboBox()
  197. Me.Label375 = New System.Windows.Forms.Label()
  198. Me.逾期_bt = New System.Windows.Forms.TextBox()
  199. Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
  200. Me.Label395 = New System.Windows.Forms.Label()
  201. Me.客戶地址_tb = New System.Windows.Forms.TextBox()
  202. Me.Label393 = New System.Windows.Forms.Label()
  203. Me.金額5_und = New System.Windows.Forms.NumericUpDown()
  204. Me.Label380 = New System.Windows.Forms.Label()
  205. Me.工程地點_tb = New System.Windows.Forms.TextBox()
  206. Me.Label406 = New System.Windows.Forms.Label()
  207. Me.金額4_und = New System.Windows.Forms.NumericUpDown()
  208. Me.逾期_英_bt = New System.Windows.Forms.TextBox()
  209. Me.Label376 = New System.Windows.Forms.Label()
  210. Me.工期_nud = New System.Windows.Forms.NumericUpDown()
  211. Me.金額3_und = New System.Windows.Forms.NumericUpDown()
  212. Me.最高扣款_英_bt = New System.Windows.Forms.TextBox()
  213. Me.Label414 = New System.Windows.Forms.Label()
  214. Me.Label391 = New System.Windows.Forms.Label()
  215. Me.金額2_und = New System.Windows.Forms.NumericUpDown()
  216. Me.Label403 = New System.Windows.Forms.Label()
  217. Me.選擇公司_cb = New System.Windows.Forms.ComboBox()
  218. Me.負責人_B_cb = New System.Windows.Forms.ComboBox()
  219. Me.金額1_und = New System.Windows.Forms.NumericUpDown()
  220. Me.Label407 = New System.Windows.Forms.Label()
  221. Me.立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  222. Me.Label410 = New System.Windows.Forms.Label()
  223. Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
  224. Me.Label408 = New System.Windows.Forms.Label()
  225. Me.Label377 = New System.Windows.Forms.Label()
  226. Me.Label405 = New System.Windows.Forms.Label()
  227. Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
  228. Me.減價_bt = New System.Windows.Forms.TextBox()
  229. Me.頁數_bt = New System.Windows.Forms.TextBox()
  230. Me.Label409 = New System.Windows.Forms.Label()
  231. Me.Label399 = New System.Windows.Forms.Label()
  232. Me.負責人_A_cb = New System.Windows.Forms.ComboBox()
  233. Me.我司地址_tb = New System.Windows.Forms.TextBox()
  234. Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
  235. Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
  236. Me.Label404 = New System.Windows.Forms.Label()
  237. Me.Label413 = New System.Windows.Forms.Label()
  238. Me.Label412 = New System.Windows.Forms.Label()
  239. Me.Label400 = New System.Windows.Forms.Label()
  240. Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
  241. Me.Label378 = New System.Windows.Forms.Label()
  242. Me.廠區_中文_tb = New System.Windows.Forms.TextBox()
  243. Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
  244. Me.Label28 = New System.Windows.Forms.Label()
  245. Me.Label382 = New System.Windows.Forms.Label()
  246. Me.稅額顯示_lb = New System.Windows.Forms.Label()
  247. Me.CH2 = New System.Windows.Forms.CheckBox()
  248. Me.CH1 = New System.Windows.Forms.CheckBox()
  249. Me.Label402 = New System.Windows.Forms.Label()
  250. Me.Label392 = New System.Windows.Forms.Label()
  251. Me.Label381 = New System.Windows.Forms.Label()
  252. Me.Label386 = New System.Windows.Forms.Label()
  253. Me.Label21 = New System.Windows.Forms.Label()
  254. Me.TabControl2 = New System.Windows.Forms.TabControl()
  255. Me.TabPage5 = New System.Windows.Forms.TabPage()
  256. Me.第1期_dgv = New System.Windows.Forms.DataGridView()
  257. Me.TabPage6 = New System.Windows.Forms.TabPage()
  258. Me.第2期_dgv = New System.Windows.Forms.DataGridView()
  259. Me.TabPage7 = New System.Windows.Forms.TabPage()
  260. Me.第3期_dgv = New System.Windows.Forms.DataGridView()
  261. Me.TabPage8 = New System.Windows.Forms.TabPage()
  262. Me.第4期_dgv = New System.Windows.Forms.DataGridView()
  263. Me.TabPage9 = New System.Windows.Forms.TabPage()
  264. Me.第5期_dgv = New System.Windows.Forms.DataGridView()
  265. Me.Label388 = New System.Windows.Forms.Label()
  266. Me.Label387 = New System.Windows.Forms.Label()
  267. Me.Label390 = New System.Windows.Forms.Label()
  268. Me.Label389 = New System.Windows.Forms.Label()
  269. Me.Label411 = New System.Windows.Forms.Label()
  270. Me.Label29 = New System.Windows.Forms.Label()
  271. Me.Label35 = New System.Windows.Forms.Label()
  272. Me.Label34 = New System.Windows.Forms.Label()
  273. Me.預估工資總報價_tb = New System.Windows.Forms.TextBox()
  274. Me.預估材料總成本_tb = New System.Windows.Forms.TextBox()
  275. Me.Label54 = New System.Windows.Forms.Label()
  276. Me.預估工資總成本_tb = New System.Windows.Forms.TextBox()
  277. Me.Label55 = New System.Windows.Forms.Label()
  278. Me.Label65 = New System.Windows.Forms.Label()
  279. Me.Label62 = New System.Windows.Forms.Label()
  280. Me.Label66 = New System.Windows.Forms.Label()
  281. Me.Label61 = New System.Windows.Forms.Label()
  282. Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
  283. Me.TabControl3 = New System.Windows.Forms.TabControl()
  284. Me.TabPage1 = New System.Windows.Forms.TabPage()
  285. Me.折價計算_bt = New System.Windows.Forms.Button()
  286. Me.Label83 = New System.Windows.Forms.Label()
  287. Me.甲方_cb = New System.Windows.Forms.ComboBox()
  288. Me.未折價前_tb = New System.Windows.Forms.TextBox()
  289. Me.Label82 = New System.Windows.Forms.Label()
  290. Me.歸零位數_nud = New System.Windows.Forms.NumericUpDown()
  291. Me.Label81 = New System.Windows.Forms.Label()
  292. Me.稅後歸零_ch = New System.Windows.Forms.CheckBox()
  293. Me.稅前歸零_ch = New System.Windows.Forms.CheckBox()
  294. Me.Label80 = New System.Windows.Forms.Label()
  295. Me.折讓比例_nud = New System.Windows.Forms.NumericUpDown()
  296. Me.Label79 = New System.Windows.Forms.Label()
  297. Me.報價小計_tb = New System.Windows.Forms.TextBox()
  298. Me.Label39 = New System.Windows.Forms.Label()
  299. Me.TabPage2 = New System.Windows.Forms.TabPage()
  300. Me.報價說明_tb = New System.Windows.Forms.TextBox()
  301. Me.美金_ch = New System.Windows.Forms.CheckBox()
  302. Me.發送_bt = New System.Windows.Forms.Button()
  303. Me.台幣_ch = New System.Windows.Forms.CheckBox()
  304. Me.工程合約報價明細_tc = New System.Windows.Forms.TabPage()
  305. Me.詳細資料2_ch = New System.Windows.Forms.CheckBox()
  306. Me.啟用批量選擇_ch = New System.Windows.Forms.CheckBox()
  307. Me.視窗3_pl = New System.Windows.Forms.Panel()
  308. Me.Panel4 = New System.Windows.Forms.Panel()
  309. Me.報價係數1_dgv = New System.Windows.Forms.DataGridView()
  310. Me.座標1_lb = New System.Windows.Forms.Label()
  311. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  312. Me.鍵盤鎖定2_ch = New System.Windows.Forms.CheckBox()
  313. Me.等於1_bt = New System.Windows.Forms.Button()
  314. Me.NUD_06 = New System.Windows.Forms.NumericUpDown()
  315. Me.清除1_bt = New System.Windows.Forms.Button()
  316. Me.NUD_04 = New System.Windows.Forms.NumericUpDown()
  317. Me.小數點1_bt = New System.Windows.Forms.Button()
  318. Me.倒退1_bt = New System.Windows.Forms.Button()
  319. Me.計算2_ch = New System.Windows.Forms.ComboBox()
  320. Me.A0_bt = New System.Windows.Forms.Button()
  321. Me.A9_bt = New System.Windows.Forms.Button()
  322. Me.NUD_05 = New System.Windows.Forms.NumericUpDown()
  323. Me.A8_bt = New System.Windows.Forms.Button()
  324. Me.A7_bt = New System.Windows.Forms.Button()
  325. Me.A6_bt = New System.Windows.Forms.Button()
  326. Me.選擇1_lb = New System.Windows.Forms.Label()
  327. Me.A5_bt = New System.Windows.Forms.Button()
  328. Me.A4_bt = New System.Windows.Forms.Button()
  329. Me.A3_bt = New System.Windows.Forms.Button()
  330. Me.A2_bt = New System.Windows.Forms.Button()
  331. Me.A1_bt = New System.Windows.Forms.Button()
  332. Me.除1_bt = New System.Windows.Forms.Button()
  333. Me.乘1_bt = New System.Windows.Forms.Button()
  334. Me.減1_bt = New System.Windows.Forms.Button()
  335. Me.加1_bt = New System.Windows.Forms.Button()
  336. Me.文字資料輸入2_bt = New System.Windows.Forms.Button()
  337. Me.Label13 = New System.Windows.Forms.Label()
  338. Me.選擇項1_tb = New System.Windows.Forms.TextBox()
  339. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  340. Me.Label14 = New System.Windows.Forms.Label()
  341. Me.合計項1_cb = New System.Windows.Forms.ComboBox()
  342. Me.單位1_tb = New System.Windows.Forms.TextBox()
  343. Me.備註1_tb = New System.Windows.Forms.TextBox()
  344. Me.內容1_tb = New System.Windows.Forms.TextBox()
  345. Me.數字2_ch = New System.Windows.Forms.CheckBox()
  346. Me.中文小寫2_ch = New System.Windows.Forms.CheckBox()
  347. Me.中文大寫2_ch = New System.Windows.Forms.CheckBox()
  348. Me.ITEM2_cb = New System.Windows.Forms.ComboBox()
  349. Me.Label18 = New System.Windows.Forms.Label()
  350. Me.Label17 = New System.Windows.Forms.Label()
  351. Me.結果1_tb = New System.Windows.Forms.TextBox()
  352. Me.計算式1_tb = New System.Windows.Forms.TextBox()
  353. Me.數值3_tb = New System.Windows.Forms.TextBox()
  354. Me.數值4_tb = New System.Windows.Forms.TextBox()
  355. Me.Label36 = New System.Windows.Forms.Label()
  356. Me.Label38 = New System.Windows.Forms.Label()
  357. Me.CanceL3_bt = New System.Windows.Forms.Button()
  358. Me.視窗1_pl = New System.Windows.Forms.Panel()
  359. Me.物料群組_Panel = New System.Windows.Forms.Panel()
  360. Me.複製係數範本_tb = New System.Windows.Forms.Button()
  361. Me.係數項目新增_bt = New System.Windows.Forms.Button()
  362. Me.係數項目刪除_bt = New System.Windows.Forms.Button()
  363. Me.係數項目修改_bt = New System.Windows.Forms.Button()
  364. Me.係數單位_cb = New System.Windows.Forms.ComboBox()
  365. Me.Label10 = New System.Windows.Forms.Label()
  366. Me.Label12 = New System.Windows.Forms.Label()
  367. Me.係數項目_cb = New System.Windows.Forms.ComboBox()
  368. Me.Label11 = New System.Windows.Forms.Label()
  369. Me.係數_nup = New System.Windows.Forms.NumericUpDown()
  370. Me.Cancel1_bt = New System.Windows.Forms.Button()
  371. Me.合約_lb = New System.Windows.Forms.Label()
  372. Me.Label37 = New System.Windows.Forms.Label()
  373. Me.報價係數_dgv = New System.Windows.Forms.DataGridView()
  374. Me.報價單立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  375. Me.Label27 = New System.Windows.Forms.Label()
  376. Me.Label26 = New System.Windows.Forms.Label()
  377. Me.報價單合約編號_tb = New System.Windows.Forms.TextBox()
  378. Me.報價工程名稱_英_tb = New System.Windows.Forms.TextBox()
  379. Me.報價工程名稱_中_tb = New System.Windows.Forms.TextBox()
  380. Me.Label9 = New System.Windows.Forms.Label()
  381. Me.Label8 = New System.Windows.Forms.Label()
  382. Me.報價單客戶名稱_cb = New System.Windows.Forms.ComboBox()
  383. Me.Label6 = New System.Windows.Forms.Label()
  384. Me.報價明細表_dgv = New System.Windows.Forms.DataGridView()
  385. Me.Panel5 = New System.Windows.Forms.Panel()
  386. Me.Label75 = New System.Windows.Forms.Label()
  387. Me.Label22 = New System.Windows.Forms.Label()
  388. Me.Label33 = New System.Windows.Forms.Label()
  389. Me.工資_ch = New System.Windows.Forms.CheckBox()
  390. Me.料號_tb = New System.Windows.Forms.TextBox()
  391. Me.單位2_tb = New System.Windows.Forms.TextBox()
  392. Me.Label32 = New System.Windows.Forms.Label()
  393. Me.申請數_lb = New System.Windows.Forms.Label()
  394. Me.ITEM3_cb = New System.Windows.Forms.ComboBox()
  395. Me.申請數_nud = New System.Windows.Forms.NumericUpDown()
  396. Me.利潤表_ch = New System.Windows.Forms.CheckBox()
  397. Me.材料_ch = New System.Windows.Forms.CheckBox()
  398. Me.係數範本_tb = New System.Windows.Forms.Button()
  399. Me.編輯係數_bt = New System.Windows.Forms.Button()
  400. Me.規格顯示修改_bt = New System.Windows.Forms.Button()
  401. Me.修改明細表上的材料指定_bt = New System.Windows.Forms.Button()
  402. Me.選擇材料新增到明細表_bt = New System.Windows.Forms.Button()
  403. Me.新增資料2_bt = New System.Windows.Forms.Button()
  404. Me.總表選擇刪除1_bt = New System.Windows.Forms.Button()
  405. Me.明細表編輯_bt = New System.Windows.Forms.Button()
  406. Me.報價明細表存檔_bt = New System.Windows.Forms.Button()
  407. Me.排序2_bt = New System.Windows.Forms.Button()
  408. Me.物料圖1_pb = New System.Windows.Forms.PictureBox()
  409. Me.工程合約試算表_tc = New System.Windows.Forms.TabPage()
  410. Me.詳細資料3_ch = New System.Windows.Forms.CheckBox()
  411. Me.Label4 = New System.Windows.Forms.Label()
  412. Me.刪除1_bt = New System.Windows.Forms.Button()
  413. Me.係數_nud = New System.Windows.Forms.NumericUpDown()
  414. Me.存檔_bt = New System.Windows.Forms.Button()
  415. Me.使用計算機_ch = New System.Windows.Forms.CheckBox()
  416. Me.直接輸入_ch = New System.Windows.Forms.CheckBox()
  417. Me.材料加入1_bt = New System.Windows.Forms.Button()
  418. Me.修改樓層_迴圈_bt = New System.Windows.Forms.Button()
  419. Me.新增物件_bt = New System.Windows.Forms.Button()
  420. Me.料號_lb = New System.Windows.Forms.Label()
  421. Me.樓層_迴路_cb = New System.Windows.Forms.ComboBox()
  422. Me.料號1_tb = New System.Windows.Forms.TextBox()
  423. Me.Label3 = New System.Windows.Forms.Label()
  424. Me.修改試算表名稱_bt = New System.Windows.Forms.Button()
  425. Me.新增試算表_bt = New System.Windows.Forms.Button()
  426. Me.Label1 = New System.Windows.Forms.Label()
  427. Me.試算表_cb = New System.Windows.Forms.ComboBox()
  428. Me.試算表_dgv = New System.Windows.Forms.DataGridView()
  429. Me.物料圖_pb = New System.Windows.Forms.PictureBox()
  430. Me.連動編號_tb = New System.Windows.Forms.TextBox()
  431. Me.Label43 = New System.Windows.Forms.Label()
  432. Me.Panel1 = New System.Windows.Forms.Panel()
  433. Me.主管_dgv = New System.Windows.Forms.DataGridView()
  434. Me.圖庫清單_dgv = New System.Windows.Forms.DataGridView()
  435. Me.項目流水_tb = New System.Windows.Forms.TextBox()
  436. Me.選擇項3_tb = New System.Windows.Forms.TextBox()
  437. Me.PictureBox2 = New System.Windows.Forms.PictureBox()
  438. Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  439. Me.選擇項2_tb = New System.Windows.Forms.TextBox()
  440. Me.DGV位置2 = New System.Windows.Forms.NumericUpDown()
  441. Me.DGV位置1 = New System.Windows.Forms.NumericUpDown()
  442. Me.明細表流水_tb = New System.Windows.Forms.TextBox()
  443. Me.總表流水_tb = New System.Windows.Forms.TextBox()
  444. Me.Y_3_tb = New System.Windows.Forms.TextBox()
  445. Me.係數合約號_tb = New System.Windows.Forms.TextBox()
  446. Me.係數流水號_tb = New System.Windows.Forms.TextBox()
  447. Me.群組編碼_cb = New System.Windows.Forms.ComboBox()
  448. Me.語言_dgv = New System.Windows.Forms.DataGridView()
  449. Me.X_3_tb = New System.Windows.Forms.TextBox()
  450. Me.存檔比較_dgv = New System.Windows.Forms.DataGridView()
  451. Me.範例文本_dgv = New System.Windows.Forms.DataGridView()
  452. Me.群組碼_tb = New System.Windows.Forms.TextBox()
  453. Me.表號_tb = New System.Windows.Forms.TextBox()
  454. Me.表頭_tb = New System.Windows.Forms.TextBox()
  455. Me.試算控制表_dgv = New System.Windows.Forms.DataGridView()
  456. Me.空間1 = New System.Windows.Forms.Panel()
  457. Me.BOM_p = New System.Windows.Forms.Panel()
  458. Me.詳細資料1_ch = New System.Windows.Forms.CheckBox()
  459. Me.Label73 = New System.Windows.Forms.Label()
  460. Me.BOM新增到明細表_bt = New System.Windows.Forms.Button()
  461. Me.中文小寫3_ch = New System.Windows.Forms.CheckBox()
  462. Me.Label52 = New System.Windows.Forms.Label()
  463. Me.Label51 = New System.Windows.Forms.Label()
  464. Me.主項目_tb = New System.Windows.Forms.TextBox()
  465. Me.BOM表明細_dgv = New System.Windows.Forms.DataGridView()
  466. Me.中文大寫3_ch = New System.Windows.Forms.CheckBox()
  467. Me.ITEM4_cb = New System.Windows.Forms.ComboBox()
  468. Me.BOM表控制_dgv = New System.Windows.Forms.DataGridView()
  469. Me.合約_p = New System.Windows.Forms.Panel()
  470. Me.全部取消_bt = New System.Windows.Forms.Button()
  471. Me.全部選擇_bt = New System.Windows.Forms.Button()
  472. Me.詳細資料_ch = New System.Windows.Forms.CheckBox()
  473. Me.Label77 = New System.Windows.Forms.Label()
  474. Me.合約編號2_cb = New System.Windows.Forms.ComboBox()
  475. Me.合約編號_1_tb = New System.Windows.Forms.TextBox()
  476. Me.Label78 = New System.Windows.Forms.Label()
  477. Me.關鍵字搜尋1_tb = New System.Windows.Forms.TextBox()
  478. Me.查詢1_bt = New System.Windows.Forms.Button()
  479. Me.選取資料新增到明細表_bt = New System.Windows.Forms.Button()
  480. Me.報價明細表2_dgv = New System.Windows.Forms.DataGridView()
  481. Me.合約1_dgv = New System.Windows.Forms.DataGridView()
  482. Me.Label74 = New System.Windows.Forms.Label()
  483. Me.物料_p = New System.Windows.Forms.Panel()
  484. Me.帶上歷史單價_ch = New System.Windows.Forms.CheckBox()
  485. Me.群組編碼_lb = New System.Windows.Forms.Label()
  486. Me.Label50 = New System.Windows.Forms.Label()
  487. Me.歷史單價_tb = New System.Windows.Forms.TextBox()
  488. Me.Label49 = New System.Windows.Forms.Label()
  489. Me.物料規格_dgv = New System.Windows.Forms.DataGridView()
  490. Me.最後採購日_tb = New System.Windows.Forms.TextBox()
  491. Me.大間距_ch = New System.Windows.Forms.CheckBox()
  492. Me.新群組1_cb = New System.Windows.Forms.ComboBox()
  493. Me.搜尋_bt = New System.Windows.Forms.Button()
  494. Me.中間距_ch = New System.Windows.Forms.CheckBox()
  495. Me.小間距_ch = New System.Windows.Forms.CheckBox()
  496. Me.物料清單_dgv = New System.Windows.Forms.DataGridView()
  497. Me.錨點1 = New System.Windows.Forms.TextBox()
  498. Me.視窗4_pl = New System.Windows.Forms.Panel()
  499. Me.Panel6 = New System.Windows.Forms.Panel()
  500. Me.轉移_ch = New System.Windows.Forms.CheckBox()
  501. Me.改版_ch = New System.Windows.Forms.CheckBox()
  502. Me.複製轉移_bt = New System.Windows.Forms.Button()
  503. Me.Label48 = New System.Windows.Forms.Label()
  504. Me.合約編號3_n_tb = New System.Windows.Forms.TextBox()
  505. Me.合約編號2_n_tb = New System.Windows.Forms.TextBox()
  506. Me.合約編號1_n_tb = New System.Windows.Forms.TextBox()
  507. Me.合約編號_n_cb = New System.Windows.Forms.ComboBox()
  508. Me.Label46 = New System.Windows.Forms.Label()
  509. Me.合約編號3_o_tb = New System.Windows.Forms.TextBox()
  510. Me.合約編號2_o_tb = New System.Windows.Forms.TextBox()
  511. Me.合約編號1_o_tb = New System.Windows.Forms.TextBox()
  512. Me.合約編號_o_cb = New System.Windows.Forms.ComboBox()
  513. Me.Label47 = New System.Windows.Forms.Label()
  514. Me.新建_ch = New System.Windows.Forms.CheckBox()
  515. Me.Label72 = New System.Windows.Forms.Label()
  516. Me.Label56 = New System.Windows.Forms.Label()
  517. Me.CanceL4_bt = New System.Windows.Forms.Button()
  518. Me.合約_ch = New System.Windows.Forms.CheckBox()
  519. Me.BOM_ch = New System.Windows.Forms.CheckBox()
  520. Me.空間2.SuspendLayout()
  521. Me.TabControl1.SuspendLayout()
  522. Me.建立合約資料_tc.SuspendLayout()
  523. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  524. Me.視窗2_pl.SuspendLayout()
  525. Me.Panel3.SuspendLayout()
  526. CType(Me.報價明細表1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  527. Me.GroupBox1.SuspendLayout()
  528. CType(Me.NUD_03, System.ComponentModel.ISupportInitialize).BeginInit()
  529. CType(Me.NUD_01, System.ComponentModel.ISupportInitialize).BeginInit()
  530. CType(Me.NUD_02, System.ComponentModel.ISupportInitialize).BeginInit()
  531. Me.GroupBox2.SuspendLayout()
  532. Me.空間3.SuspendLayout()
  533. Me.Panel2.SuspendLayout()
  534. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
  535. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  536. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  537. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  538. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  539. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
  540. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
  541. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  542. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
  543. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
  544. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
  545. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  546. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  547. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  548. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  549. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  550. Me.TabControl2.SuspendLayout()
  551. Me.TabPage5.SuspendLayout()
  552. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  553. Me.TabPage6.SuspendLayout()
  554. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  555. Me.TabPage7.SuspendLayout()
  556. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  557. Me.TabPage8.SuspendLayout()
  558. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  559. Me.TabPage9.SuspendLayout()
  560. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  561. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  562. Me.TabControl3.SuspendLayout()
  563. Me.TabPage1.SuspendLayout()
  564. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  565. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  566. Me.TabPage2.SuspendLayout()
  567. Me.工程合約報價明細_tc.SuspendLayout()
  568. Me.視窗3_pl.SuspendLayout()
  569. Me.Panel4.SuspendLayout()
  570. CType(Me.報價係數1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  571. Me.GroupBox4.SuspendLayout()
  572. CType(Me.NUD_06, System.ComponentModel.ISupportInitialize).BeginInit()
  573. CType(Me.NUD_04, System.ComponentModel.ISupportInitialize).BeginInit()
  574. CType(Me.NUD_05, System.ComponentModel.ISupportInitialize).BeginInit()
  575. Me.GroupBox3.SuspendLayout()
  576. Me.視窗1_pl.SuspendLayout()
  577. Me.物料群組_Panel.SuspendLayout()
  578. CType(Me.係數_nup, System.ComponentModel.ISupportInitialize).BeginInit()
  579. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  580. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  581. Me.Panel5.SuspendLayout()
  582. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  583. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  584. Me.工程合約試算表_tc.SuspendLayout()
  585. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  586. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  587. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  588. Me.Panel1.SuspendLayout()
  589. CType(Me.主管_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  590. CType(Me.圖庫清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  591. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
  592. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  593. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).BeginInit()
  594. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).BeginInit()
  595. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  596. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  597. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  598. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  599. Me.空間1.SuspendLayout()
  600. Me.BOM_p.SuspendLayout()
  601. CType(Me.BOM表明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  602. CType(Me.BOM表控制_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  603. Me.合約_p.SuspendLayout()
  604. CType(Me.報價明細表2_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  605. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  606. Me.物料_p.SuspendLayout()
  607. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  608. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  609. Me.視窗4_pl.SuspendLayout()
  610. Me.Panel6.SuspendLayout()
  611. Me.SuspendLayout()
  612. '
  613. 'Y_2_tb
  614. '
  615. Me.Y_2_tb.Enabled = False
  616. Me.Y_2_tb.ForeColor = System.Drawing.Color.Red
  617. Me.Y_2_tb.Location = New System.Drawing.Point(129, 208)
  618. Me.Y_2_tb.Name = "Y_2_tb"
  619. Me.Y_2_tb.Size = New System.Drawing.Size(35, 23)
  620. Me.Y_2_tb.TabIndex = 1375
  621. Me.Y_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  622. '
  623. 'X_2_tb
  624. '
  625. Me.X_2_tb.Enabled = False
  626. Me.X_2_tb.ForeColor = System.Drawing.Color.Red
  627. Me.X_2_tb.Location = New System.Drawing.Point(3, 234)
  628. Me.X_2_tb.Name = "X_2_tb"
  629. Me.X_2_tb.Size = New System.Drawing.Size(35, 23)
  630. Me.X_2_tb.TabIndex = 1374
  631. Me.X_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  632. '
  633. '空間2
  634. '
  635. Me.空間2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  636. Or System.Windows.Forms.AnchorStyles.Left) _
  637. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  638. Me.空間2.BackColor = System.Drawing.Color.White
  639. Me.空間2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  640. Me.空間2.Controls.Add(Me.物料_ch)
  641. Me.空間2.Controls.Add(Me.Label41)
  642. Me.空間2.Controls.Add(Me.合約編號清單_bt)
  643. Me.空間2.Controls.Add(Me.工程期1_ch)
  644. Me.空間2.Controls.Add(Me.Label40)
  645. Me.空間2.Controls.Add(Me.縮放_bt)
  646. Me.空間2.Controls.Add(Me.合約編號1_cb)
  647. Me.空間2.Controls.Add(Me.Label2)
  648. Me.空間2.Controls.Add(Me.合約編號_tb)
  649. Me.空間2.Controls.Add(Me.TabControl1)
  650. Me.空間2.Location = New System.Drawing.Point(492, 0)
  651. Me.空間2.Name = "空間2"
  652. Me.空間2.Size = New System.Drawing.Size(1421, 1039)
  653. Me.空間2.TabIndex = 1415
  654. '
  655. '物料_ch
  656. '
  657. Me.物料_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  658. Me.物料_ch.AutoSize = True
  659. Me.物料_ch.BackColor = System.Drawing.SystemColors.Control
  660. Me.物料_ch.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.BADD01
  661. Me.物料_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  662. Me.物料_ch.Location = New System.Drawing.Point(1068, 4)
  663. Me.物料_ch.Name = "物料_ch"
  664. Me.物料_ch.Size = New System.Drawing.Size(59, 20)
  665. Me.物料_ch.TabIndex = 1410
  666. Me.物料_ch.Text = " "
  667. Me.物料_ch.UseVisualStyleBackColor = False
  668. '
  669. 'Label41
  670. '
  671. Me.Label41.AutoSize = True
  672. Me.Label41.BackColor = System.Drawing.SystemColors.Control
  673. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  674. Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  675. Me.Label41.Location = New System.Drawing.Point(418, 7)
  676. Me.Label41.Name = "Label41"
  677. Me.Label41.Size = New System.Drawing.Size(55, 16)
  678. Me.Label41.TabIndex = 1409
  679. Me.Label41.Text = "工程期數"
  680. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  681. '
  682. '合約編號清單_bt
  683. '
  684. Me.合約編號清單_bt.BackColor = System.Drawing.SystemColors.Control
  685. Me.合約編號清單_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  686. Me.合約編號清單_bt.Location = New System.Drawing.Point(552, 2)
  687. Me.合約編號清單_bt.Name = "合約編號清單_bt"
  688. Me.合約編號清單_bt.Size = New System.Drawing.Size(90, 26)
  689. Me.合約編號清單_bt.TabIndex = 1362
  690. Me.合約編號清單_bt.Text = "合約編號清單"
  691. Me.合約編號清單_bt.UseVisualStyleBackColor = False
  692. '
  693. '工程期1_ch
  694. '
  695. Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  696. Me.工程期1_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  697. Me.工程期1_ch.FormattingEnabled = True
  698. Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  699. Me.工程期1_ch.Location = New System.Drawing.Point(475, 3)
  700. Me.工程期1_ch.Name = "工程期1_ch"
  701. Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
  702. Me.工程期1_ch.TabIndex = 1408
  703. '
  704. 'Label40
  705. '
  706. Me.Label40.AutoSize = True
  707. Me.Label40.BackColor = System.Drawing.SystemColors.Control
  708. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  709. Me.Label40.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  710. Me.Label40.Location = New System.Drawing.Point(307, 7)
  711. Me.Label40.Name = "Label40"
  712. Me.Label40.Size = New System.Drawing.Size(31, 16)
  713. Me.Label40.TabIndex = 1407
  714. Me.Label40.Text = "甲方"
  715. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  716. '
  717. '縮放_bt
  718. '
  719. Me.縮放_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  720. Me.縮放_bt.BackColor = System.Drawing.SystemColors.Control
  721. Me.縮放_bt.Location = New System.Drawing.Point(972, 1)
  722. Me.縮放_bt.Name = "縮放_bt"
  723. Me.縮放_bt.Size = New System.Drawing.Size(90, 26)
  724. Me.縮放_bt.TabIndex = 1361
  725. Me.縮放_bt.Text = "物料選擇清單"
  726. Me.縮放_bt.UseVisualStyleBackColor = False
  727. '
  728. '合約編號1_cb
  729. '
  730. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  731. Me.合約編號1_cb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  732. Me.合約編號1_cb.FormattingEnabled = True
  733. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  734. Me.合約編號1_cb.Location = New System.Drawing.Point(339, 3)
  735. Me.合約編號1_cb.Name = "合約編號1_cb"
  736. Me.合約編號1_cb.Size = New System.Drawing.Size(74, 24)
  737. Me.合約編號1_cb.TabIndex = 1406
  738. '
  739. 'Label2
  740. '
  741. Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  742. Me.Label2.AutoSize = True
  743. Me.Label2.BackColor = System.Drawing.SystemColors.Control
  744. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  745. Me.Label2.Location = New System.Drawing.Point(1234, 6)
  746. Me.Label2.Name = "Label2"
  747. Me.Label2.Size = New System.Drawing.Size(55, 16)
  748. Me.Label2.TabIndex = 1049
  749. Me.Label2.Text = "合約編號"
  750. Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  751. '
  752. '合約編號_tb
  753. '
  754. Me.合約編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  755. Me.合約編號_tb.Enabled = False
  756. Me.合約編號_tb.Location = New System.Drawing.Point(1290, 2)
  757. Me.合約編號_tb.Name = "合約編號_tb"
  758. Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
  759. Me.合約編號_tb.TabIndex = 1048
  760. '
  761. 'TabControl1
  762. '
  763. Me.TabControl1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  764. Or System.Windows.Forms.AnchorStyles.Left) _
  765. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  766. Me.TabControl1.Appearance = System.Windows.Forms.TabAppearance.Buttons
  767. Me.TabControl1.Controls.Add(Me.建立合約資料_tc)
  768. Me.TabControl1.Controls.Add(Me.工程合約報價明細_tc)
  769. Me.TabControl1.Controls.Add(Me.工程合約試算表_tc)
  770. Me.TabControl1.Location = New System.Drawing.Point(0, 1)
  771. Me.TabControl1.Multiline = True
  772. Me.TabControl1.Name = "TabControl1"
  773. Me.TabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No
  774. Me.TabControl1.SelectedIndex = 0
  775. Me.TabControl1.Size = New System.Drawing.Size(1421, 1038)
  776. Me.TabControl1.TabIndex = 1047
  777. '
  778. '建立合約資料_tc
  779. '
  780. Me.建立合約資料_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  781. Me.建立合約資料_tc.Controls.Add(Me.印尼盾_ch)
  782. Me.建立合約資料_tc.Controls.Add(Me.人民幣_ch)
  783. Me.建立合約資料_tc.Controls.Add(Me.查閱文件_bt)
  784. Me.建立合約資料_tc.Controls.Add(Me.列印成EXCEL_bt)
  785. Me.建立合約資料_tc.Controls.Add(Me.縮放2_bt)
  786. Me.建立合約資料_tc.Controls.Add(Me.合約_dgv)
  787. Me.建立合約資料_tc.Controls.Add(Me.總表範例_bt)
  788. Me.建立合約資料_tc.Controls.Add(Me.合約改版_bt)
  789. Me.建立合約資料_tc.Controls.Add(Me.新增資料1_bt)
  790. Me.建立合約資料_tc.Controls.Add(Me.排序1_bt)
  791. Me.建立合約資料_tc.Controls.Add(Me.總表選擇刪除_bt)
  792. Me.建立合約資料_tc.Controls.Add(Me.總表編輯_bt)
  793. Me.建立合約資料_tc.Controls.Add(Me.報價總表存檔_bt)
  794. Me.建立合約資料_tc.Controls.Add(Me.錨點2)
  795. Me.建立合約資料_tc.Controls.Add(Me.縮放1_bt)
  796. Me.建立合約資料_tc.Controls.Add(Me.查詢_bt)
  797. Me.建立合約資料_tc.Controls.Add(Me.ProgressBar1)
  798. Me.建立合約資料_tc.Controls.Add(Me.關鍵字搜尋_tb)
  799. Me.建立合約資料_tc.Controls.Add(Me.刪除合約_bt)
  800. Me.建立合約資料_tc.Controls.Add(Me.存檔_tb)
  801. Me.建立合約資料_tc.Controls.Add(Me.合約停止_ch)
  802. Me.建立合約資料_tc.Controls.Add(Me.Label53)
  803. Me.建立合約資料_tc.Controls.Add(Me.Label7)
  804. Me.建立合約資料_tc.Controls.Add(Me.工材分離_ch)
  805. Me.建立合約資料_tc.Controls.Add(Me.視窗2_pl)
  806. Me.建立合約資料_tc.Controls.Add(Me.空間3)
  807. Me.建立合約資料_tc.Controls.Add(Me.美金_ch)
  808. Me.建立合約資料_tc.Controls.Add(Me.發送_bt)
  809. Me.建立合約資料_tc.Controls.Add(Me.台幣_ch)
  810. Me.建立合約資料_tc.Location = New System.Drawing.Point(4, 28)
  811. Me.建立合約資料_tc.Name = "建立合約資料_tc"
  812. Me.建立合約資料_tc.Padding = New System.Windows.Forms.Padding(3)
  813. Me.建立合約資料_tc.Size = New System.Drawing.Size(1413, 1006)
  814. Me.建立合約資料_tc.TabIndex = 3
  815. Me.建立合約資料_tc.Text = "建立合約資料"
  816. Me.建立合約資料_tc.UseVisualStyleBackColor = True
  817. '
  818. '印尼盾_ch
  819. '
  820. Me.印尼盾_ch.AutoSize = True
  821. Me.印尼盾_ch.BackColor = System.Drawing.SystemColors.Control
  822. Me.印尼盾_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  823. Me.印尼盾_ch.Checked = True
  824. Me.印尼盾_ch.CheckState = System.Windows.Forms.CheckState.Checked
  825. Me.印尼盾_ch.Location = New System.Drawing.Point(861, 22)
  826. Me.印尼盾_ch.Name = "印尼盾_ch"
  827. Me.印尼盾_ch.Size = New System.Drawing.Size(62, 20)
  828. Me.印尼盾_ch.TabIndex = 1681
  829. Me.印尼盾_ch.Text = "印尼盾"
  830. Me.印尼盾_ch.UseVisualStyleBackColor = False
  831. '
  832. '人民幣_ch
  833. '
  834. Me.人民幣_ch.AutoSize = True
  835. Me.人民幣_ch.BackColor = System.Drawing.SystemColors.Control
  836. Me.人民幣_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  837. Me.人民幣_ch.Location = New System.Drawing.Point(861, 1)
  838. Me.人民幣_ch.Name = "人民幣_ch"
  839. Me.人民幣_ch.Size = New System.Drawing.Size(62, 20)
  840. Me.人民幣_ch.TabIndex = 1680
  841. Me.人民幣_ch.Text = "人民幣"
  842. Me.人民幣_ch.UseVisualStyleBackColor = False
  843. '
  844. '查閱文件_bt
  845. '
  846. Me.查閱文件_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.reports
  847. Me.查閱文件_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  848. Me.查閱文件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  849. Me.查閱文件_bt.ForeColor = System.Drawing.Color.Green
  850. Me.查閱文件_bt.Location = New System.Drawing.Point(317, 1)
  851. Me.查閱文件_bt.Name = "查閱文件_bt"
  852. Me.查閱文件_bt.Size = New System.Drawing.Size(40, 40)
  853. Me.查閱文件_bt.TabIndex = 1676
  854. Me.查閱文件_bt.UseVisualStyleBackColor = True
  855. '
  856. '列印成EXCEL_bt
  857. '
  858. Me.列印成EXCEL_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  859. Me.列印成EXCEL_bt.BackColor = System.Drawing.SystemColors.Control
  860. Me.列印成EXCEL_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.print
  861. Me.列印成EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  862. Me.列印成EXCEL_bt.ForeColor = System.Drawing.Color.Green
  863. Me.列印成EXCEL_bt.Location = New System.Drawing.Point(1327, 1)
  864. Me.列印成EXCEL_bt.Name = "列印成EXCEL_bt"
  865. Me.列印成EXCEL_bt.Size = New System.Drawing.Size(40, 40)
  866. Me.列印成EXCEL_bt.TabIndex = 1414
  867. Me.列印成EXCEL_bt.UseVisualStyleBackColor = False
  868. '
  869. '縮放2_bt
  870. '
  871. Me.縮放2_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.ZOOM01
  872. Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  873. Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  874. Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
  875. Me.縮放2_bt.Location = New System.Drawing.Point(50, 1)
  876. Me.縮放2_bt.Name = "縮放2_bt"
  877. Me.縮放2_bt.Size = New System.Drawing.Size(40, 40)
  878. Me.縮放2_bt.TabIndex = 1674
  879. Me.縮放2_bt.UseVisualStyleBackColor = True
  880. '
  881. '合約_dgv
  882. '
  883. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  884. Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  885. Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  886. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  887. Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  888. Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
  889. Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  890. Me.合約_dgv.Location = New System.Drawing.Point(-1, 42)
  891. Me.合約_dgv.Name = "合約_dgv"
  892. Me.合約_dgv.RowHeadersWidth = 5
  893. Me.合約_dgv.RowTemplate.Height = 24
  894. Me.合約_dgv.Size = New System.Drawing.Size(147, 960)
  895. Me.合約_dgv.TabIndex = 1043
  896. '
  897. '總表範例_bt
  898. '
  899. Me.總表範例_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  900. Me.總表範例_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.總表範例_bt.ForeColor = System.Drawing.Color.Green
  902. Me.總表範例_bt.Location = New System.Drawing.Point(1366, 1)
  903. Me.總表範例_bt.Name = "總表範例_bt"
  904. Me.總表範例_bt.Size = New System.Drawing.Size(40, 40)
  905. Me.總表範例_bt.TabIndex = 1366
  906. Me.總表範例_bt.Text = "總表範例"
  907. Me.總表範例_bt.UseVisualStyleBackColor = True
  908. '
  909. '合約改版_bt
  910. '
  911. Me.合約改版_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping1
  912. Me.合約改版_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  913. Me.合約改版_bt.Location = New System.Drawing.Point(397, 1)
  914. Me.合約改版_bt.Name = "合約改版_bt"
  915. Me.合約改版_bt.Size = New System.Drawing.Size(100, 40)
  916. Me.合約改版_bt.TabIndex = 1366
  917. Me.合約改版_bt.UseVisualStyleBackColor = True
  918. '
  919. '新增資料1_bt
  920. '
  921. Me.新增資料1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.add_2
  922. Me.新增資料1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  923. Me.新增資料1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  924. Me.新增資料1_bt.ForeColor = System.Drawing.Color.Blue
  925. Me.新增資料1_bt.Location = New System.Drawing.Point(969, 1)
  926. Me.新增資料1_bt.Name = "新增資料1_bt"
  927. Me.新增資料1_bt.Size = New System.Drawing.Size(40, 40)
  928. Me.新增資料1_bt.TabIndex = 1363
  929. Me.新增資料1_bt.UseVisualStyleBackColor = True
  930. '
  931. '排序1_bt
  932. '
  933. Me.排序1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Filter_List
  934. Me.排序1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  935. Me.排序1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  936. Me.排序1_bt.ForeColor = System.Drawing.Color.Green
  937. Me.排序1_bt.Location = New System.Drawing.Point(930, 1)
  938. Me.排序1_bt.Name = "排序1_bt"
  939. Me.排序1_bt.Size = New System.Drawing.Size(40, 40)
  940. Me.排序1_bt.TabIndex = 1364
  941. Me.排序1_bt.UseVisualStyleBackColor = True
  942. '
  943. '總表選擇刪除_bt
  944. '
  945. Me.總表選擇刪除_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  946. Me.總表選擇刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  947. Me.總表選擇刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  948. Me.總表選擇刪除_bt.ForeColor = System.Drawing.Color.Red
  949. Me.總表選擇刪除_bt.Location = New System.Drawing.Point(1086, 1)
  950. Me.總表選擇刪除_bt.Name = "總表選擇刪除_bt"
  951. Me.總表選擇刪除_bt.Size = New System.Drawing.Size(40, 40)
  952. Me.總表選擇刪除_bt.TabIndex = 1365
  953. Me.總表選擇刪除_bt.UseVisualStyleBackColor = True
  954. '
  955. '總表編輯_bt
  956. '
  957. Me.總表編輯_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Edit_Text
  958. Me.總表編輯_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  959. Me.總表編輯_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  960. Me.總表編輯_bt.ForeColor = System.Drawing.Color.Green
  961. Me.總表編輯_bt.Location = New System.Drawing.Point(1008, 1)
  962. Me.總表編輯_bt.Name = "總表編輯_bt"
  963. Me.總表編輯_bt.Size = New System.Drawing.Size(40, 40)
  964. Me.總表編輯_bt.TabIndex = 1365
  965. Me.總表編輯_bt.UseVisualStyleBackColor = True
  966. '
  967. '報價總表存檔_bt
  968. '
  969. Me.報價總表存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  970. Me.報價總表存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  971. Me.報價總表存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  972. Me.報價總表存檔_bt.ForeColor = System.Drawing.Color.DarkGreen
  973. Me.報價總表存檔_bt.Location = New System.Drawing.Point(1047, 1)
  974. Me.報價總表存檔_bt.Name = "報價總表存檔_bt"
  975. Me.報價總表存檔_bt.Size = New System.Drawing.Size(40, 40)
  976. Me.報價總表存檔_bt.TabIndex = 1364
  977. Me.報價總表存檔_bt.UseVisualStyleBackColor = True
  978. '
  979. '錨點2
  980. '
  981. Me.錨點2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  982. Me.錨點2.Location = New System.Drawing.Point(145, 1005)
  983. Me.錨點2.Name = "錨點2"
  984. Me.錨點2.Size = New System.Drawing.Size(25, 23)
  985. Me.錨點2.TabIndex = 1363
  986. Me.錨點2.Visible = False
  987. '
  988. '縮放1_bt
  989. '
  990. Me.縮放1_bt.Location = New System.Drawing.Point(1, 1)
  991. Me.縮放1_bt.Name = "縮放1_bt"
  992. Me.縮放1_bt.Size = New System.Drawing.Size(50, 40)
  993. Me.縮放1_bt.TabIndex = 1362
  994. Me.縮放1_bt.Text = "合約清單"
  995. Me.縮放1_bt.UseVisualStyleBackColor = True
  996. '
  997. '查詢_bt
  998. '
  999. Me.查詢_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.下載
  1000. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1001. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1002. Me.查詢_bt.Location = New System.Drawing.Point(195, 1)
  1003. Me.查詢_bt.Name = "查詢_bt"
  1004. Me.查詢_bt.Size = New System.Drawing.Size(40, 40)
  1005. Me.查詢_bt.TabIndex = 1046
  1006. Me.查詢_bt.UseVisualStyleBackColor = True
  1007. '
  1008. 'ProgressBar1
  1009. '
  1010. Me.ProgressBar1.Location = New System.Drawing.Point(237, 20)
  1011. Me.ProgressBar1.Maximum = 10000
  1012. Me.ProgressBar1.Name = "ProgressBar1"
  1013. Me.ProgressBar1.Size = New System.Drawing.Size(78, 20)
  1014. Me.ProgressBar1.TabIndex = 1150
  1015. '
  1016. '關鍵字搜尋_tb
  1017. '
  1018. Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(91, 16)
  1019. Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
  1020. Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(104, 23)
  1021. Me.關鍵字搜尋_tb.TabIndex = 1044
  1022. '
  1023. '刪除合約_bt
  1024. '
  1025. Me.刪除合約_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  1026. Me.刪除合約_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1027. Me.刪除合約_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1028. Me.刪除合約_bt.ForeColor = System.Drawing.Color.Red
  1029. Me.刪除合約_bt.Location = New System.Drawing.Point(498, 1)
  1030. Me.刪除合約_bt.Name = "刪除合約_bt"
  1031. Me.刪除合約_bt.Size = New System.Drawing.Size(40, 40)
  1032. Me.刪除合約_bt.TabIndex = 1148
  1033. Me.刪除合約_bt.UseVisualStyleBackColor = True
  1034. '
  1035. '存檔_tb
  1036. '
  1037. Me.存檔_tb.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER2
  1038. Me.存檔_tb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1039. Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1040. Me.存檔_tb.ForeColor = System.Drawing.Color.Green
  1041. Me.存檔_tb.Location = New System.Drawing.Point(357, 1)
  1042. Me.存檔_tb.Name = "存檔_tb"
  1043. Me.存檔_tb.Size = New System.Drawing.Size(40, 40)
  1044. Me.存檔_tb.TabIndex = 1141
  1045. Me.存檔_tb.UseVisualStyleBackColor = True
  1046. '
  1047. '合約停止_ch
  1048. '
  1049. Me.合約停止_ch.AutoSize = True
  1050. Me.合約停止_ch.BackColor = System.Drawing.SystemColors.Control
  1051. Me.合約停止_ch.Location = New System.Drawing.Point(241, 2)
  1052. Me.合約停止_ch.Name = "合約停止_ch"
  1053. Me.合約停止_ch.Size = New System.Drawing.Size(74, 20)
  1054. Me.合約停止_ch.TabIndex = 1415
  1055. Me.合約停止_ch.Text = "合約停止"
  1056. Me.合約停止_ch.UseVisualStyleBackColor = False
  1057. '
  1058. 'Label53
  1059. '
  1060. Me.Label53.AutoSize = True
  1061. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1062. Me.Label53.ForeColor = System.Drawing.Color.Red
  1063. Me.Label53.Location = New System.Drawing.Point(1125, 5)
  1064. Me.Label53.Name = "Label53"
  1065. Me.Label53.Size = New System.Drawing.Size(127, 32)
  1066. Me.Label53.TabIndex = 1675
  1067. Me.Label53.Text = "連點兩下就可將明細連" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "動帶入總表選定的位置"
  1068. Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1069. '
  1070. 'Label7
  1071. '
  1072. Me.Label7.AutoSize = True
  1073. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1074. Me.Label7.Location = New System.Drawing.Point(90, 2)
  1075. Me.Label7.Name = "Label7"
  1076. Me.Label7.Size = New System.Drawing.Size(67, 16)
  1077. Me.Label7.TabIndex = 1045
  1078. Me.Label7.Text = "合約號搜尋"
  1079. Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1080. '
  1081. '工材分離_ch
  1082. '
  1083. Me.工材分離_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1084. Me.工材分離_ch.AutoSize = True
  1085. Me.工材分離_ch.BackColor = System.Drawing.SystemColors.Control
  1086. Me.工材分離_ch.ForeColor = System.Drawing.Color.Green
  1087. Me.工材分離_ch.Location = New System.Drawing.Point(1256, 3)
  1088. Me.工材分離_ch.Name = "工材分離_ch"
  1089. Me.工材分離_ch.Size = New System.Drawing.Size(74, 36)
  1090. Me.工材分離_ch.TabIndex = 1414
  1091. Me.工材分離_ch.Text = "工資材料" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "分離格式"
  1092. Me.工材分離_ch.UseVisualStyleBackColor = False
  1093. '
  1094. '視窗2_pl
  1095. '
  1096. Me.視窗2_pl.BackColor = System.Drawing.Color.White
  1097. Me.視窗2_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1098. Me.視窗2_pl.Controls.Add(Me.Panel3)
  1099. Me.視窗2_pl.Controls.Add(Me.Label16)
  1100. Me.視窗2_pl.Controls.Add(Me.CanceL2_bt)
  1101. Me.視窗2_pl.Location = New System.Drawing.Point(610, 150)
  1102. Me.視窗2_pl.Name = "視窗2_pl"
  1103. Me.視窗2_pl.Size = New System.Drawing.Size(709, 479)
  1104. Me.視窗2_pl.TabIndex = 1402
  1105. '
  1106. 'Panel3
  1107. '
  1108. Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1109. Or System.Windows.Forms.AnchorStyles.Left) _
  1110. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1111. Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1112. Me.Panel3.Controls.Add(Me.Label44)
  1113. Me.Panel3.Controls.Add(Me.報價明細表1_dgv)
  1114. Me.Panel3.Controls.Add(Me.GroupBox1)
  1115. Me.Panel3.Controls.Add(Me.座標_lb)
  1116. Me.Panel3.Controls.Add(Me.結果_tb)
  1117. Me.Panel3.Controls.Add(Me.文字資料輸入1_bt)
  1118. Me.Panel3.Controls.Add(Me.計算式_tb)
  1119. Me.Panel3.Controls.Add(Me.Label24)
  1120. Me.Panel3.Controls.Add(Me.數值1_tb)
  1121. Me.Panel3.Controls.Add(Me.數值2_tb)
  1122. Me.Panel3.Controls.Add(Me.選擇項_tb)
  1123. Me.Panel3.Controls.Add(Me.GroupBox2)
  1124. Me.Panel3.Controls.Add(Me.Label23)
  1125. Me.Panel3.Location = New System.Drawing.Point(3, 28)
  1126. Me.Panel3.Name = "Panel3"
  1127. Me.Panel3.Size = New System.Drawing.Size(702, 447)
  1128. Me.Panel3.TabIndex = 1367
  1129. '
  1130. 'Label44
  1131. '
  1132. Me.Label44.AutoSize = True
  1133. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1134. Me.Label44.ForeColor = System.Drawing.Color.Red
  1135. Me.Label44.Location = New System.Drawing.Point(324, 3)
  1136. Me.Label44.Name = "Label44"
  1137. Me.Label44.Size = New System.Drawing.Size(247, 16)
  1138. Me.Label44.TabIndex = 1386
  1139. Me.Label44.Text = "連點兩下就可將明細連動帶入總表選定的位置"
  1140. Me.Label44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1141. '
  1142. '報價明細表1_dgv
  1143. '
  1144. Me.報價明細表1_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1145. Or System.Windows.Forms.AnchorStyles.Left) _
  1146. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1147. Me.報價明細表1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1148. Me.報價明細表1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1149. Me.報價明細表1_dgv.Location = New System.Drawing.Point(320, 22)
  1150. Me.報價明細表1_dgv.Name = "報價明細表1_dgv"
  1151. Me.報價明細表1_dgv.RowHeadersWidth = 5
  1152. Me.報價明細表1_dgv.RowTemplate.Height = 24
  1153. Me.報價明細表1_dgv.Size = New System.Drawing.Size(376, 417)
  1154. Me.報價明細表1_dgv.TabIndex = 1385
  1155. '
  1156. 'GroupBox1
  1157. '
  1158. Me.GroupBox1.Controls.Add(Me.等於_bt)
  1159. Me.GroupBox1.Controls.Add(Me.NUD_03)
  1160. Me.GroupBox1.Controls.Add(Me.清除_bt)
  1161. Me.GroupBox1.Controls.Add(Me.NUD_01)
  1162. Me.GroupBox1.Controls.Add(Me.小數點_bt)
  1163. Me.GroupBox1.Controls.Add(Me.倒退_bt)
  1164. Me.GroupBox1.Controls.Add(Me.計算1_ch)
  1165. Me.GroupBox1.Controls.Add(Me.b0_bt)
  1166. Me.GroupBox1.Controls.Add(Me.b9_bt)
  1167. Me.GroupBox1.Controls.Add(Me.NUD_02)
  1168. Me.GroupBox1.Controls.Add(Me.b8_bt)
  1169. Me.GroupBox1.Controls.Add(Me.b7_bt)
  1170. Me.GroupBox1.Controls.Add(Me.b6_bt)
  1171. Me.GroupBox1.Controls.Add(Me.b5_bt)
  1172. Me.GroupBox1.Controls.Add(Me.b4_bt)
  1173. Me.GroupBox1.Controls.Add(Me.b3_bt)
  1174. Me.GroupBox1.Controls.Add(Me.b2_bt)
  1175. Me.GroupBox1.Controls.Add(Me.b1_bt)
  1176. Me.GroupBox1.Controls.Add(Me.除_bt)
  1177. Me.GroupBox1.Controls.Add(Me.乘_bt)
  1178. Me.GroupBox1.Controls.Add(Me.減_bt)
  1179. Me.GroupBox1.Controls.Add(Me.加_bt)
  1180. Me.GroupBox1.Controls.Add(Me.選擇_lb)
  1181. Me.GroupBox1.Controls.Add(Me.鍵盤鎖定1_ch)
  1182. Me.GroupBox1.ForeColor = System.Drawing.Color.Green
  1183. Me.GroupBox1.Location = New System.Drawing.Point(3, 197)
  1184. Me.GroupBox1.Name = "GroupBox1"
  1185. Me.GroupBox1.Size = New System.Drawing.Size(315, 245)
  1186. Me.GroupBox1.TabIndex = 1379
  1187. Me.GroupBox1.TabStop = False
  1188. Me.GroupBox1.Text = "數值計算"
  1189. '
  1190. '等於_bt
  1191. '
  1192. Me.等於_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1193. Me.等於_bt.Location = New System.Drawing.Point(245, 154)
  1194. Me.等於_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1195. Me.等於_bt.Name = "等於_bt"
  1196. Me.等於_bt.Size = New System.Drawing.Size(66, 72)
  1197. Me.等於_bt.TabIndex = 1401
  1198. Me.等於_bt.Text = "="
  1199. Me.等於_bt.UseVisualStyleBackColor = True
  1200. '
  1201. 'NUD_03
  1202. '
  1203. Me.NUD_03.Location = New System.Drawing.Point(4, 59)
  1204. Me.NUD_03.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1205. Me.NUD_03.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1206. Me.NUD_03.Name = "NUD_03"
  1207. Me.NUD_03.Size = New System.Drawing.Size(306, 23)
  1208. Me.NUD_03.TabIndex = 1092
  1209. Me.NUD_03.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1210. Me.NUD_03.ThousandsSeparator = True
  1211. '
  1212. '清除_bt
  1213. '
  1214. Me.清除_bt.DialogResult = System.Windows.Forms.DialogResult.Cancel
  1215. Me.清除_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1216. Me.清除_bt.Location = New System.Drawing.Point(119, 190)
  1217. Me.清除_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1218. Me.清除_bt.Name = "清除_bt"
  1219. Me.清除_bt.Size = New System.Drawing.Size(58, 36)
  1220. Me.清除_bt.TabIndex = 1400
  1221. Me.清除_bt.Text = "AC"
  1222. Me.清除_bt.UseVisualStyleBackColor = True
  1223. '
  1224. 'NUD_01
  1225. '
  1226. Me.NUD_01.DecimalPlaces = 2
  1227. Me.NUD_01.Location = New System.Drawing.Point(4, 34)
  1228. Me.NUD_01.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1229. Me.NUD_01.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1230. Me.NUD_01.Name = "NUD_01"
  1231. Me.NUD_01.Size = New System.Drawing.Size(132, 23)
  1232. Me.NUD_01.TabIndex = 1087
  1233. Me.NUD_01.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1234. Me.NUD_01.ThousandsSeparator = True
  1235. '
  1236. '小數點_bt
  1237. '
  1238. Me.小數點_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1239. Me.小數點_bt.Location = New System.Drawing.Point(60, 190)
  1240. Me.小數點_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1241. Me.小數點_bt.Name = "小數點_bt"
  1242. Me.小數點_bt.Size = New System.Drawing.Size(58, 36)
  1243. Me.小數點_bt.TabIndex = 1399
  1244. Me.小數點_bt.Text = "."
  1245. Me.小數點_bt.UseVisualStyleBackColor = True
  1246. '
  1247. '倒退_bt
  1248. '
  1249. Me.倒退_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1250. Me.倒退_bt.Location = New System.Drawing.Point(245, 82)
  1251. Me.倒退_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1252. Me.倒退_bt.Name = "倒退_bt"
  1253. Me.倒退_bt.Size = New System.Drawing.Size(66, 72)
  1254. Me.倒退_bt.TabIndex = 1398
  1255. Me.倒退_bt.Text = "➨"
  1256. Me.倒退_bt.UseVisualStyleBackColor = True
  1257. '
  1258. '計算1_ch
  1259. '
  1260. Me.計算1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  1261. Me.計算1_ch.ForeColor = System.Drawing.Color.Blue
  1262. Me.計算1_ch.FormattingEnabled = True
  1263. Me.計算1_ch.Items.AddRange(New Object() {"", "+", "-", "X", "/"})
  1264. Me.計算1_ch.Location = New System.Drawing.Point(140, 34)
  1265. Me.計算1_ch.Name = "計算1_ch"
  1266. Me.計算1_ch.Size = New System.Drawing.Size(33, 24)
  1267. Me.計算1_ch.TabIndex = 1089
  1268. '
  1269. 'b0_bt
  1270. '
  1271. Me.b0_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1272. Me.b0_bt.Location = New System.Drawing.Point(2, 190)
  1273. Me.b0_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1274. Me.b0_bt.Name = "b0_bt"
  1275. Me.b0_bt.Size = New System.Drawing.Size(58, 36)
  1276. Me.b0_bt.TabIndex = 1397
  1277. Me.b0_bt.Text = "0"
  1278. Me.b0_bt.UseVisualStyleBackColor = True
  1279. '
  1280. 'b9_bt
  1281. '
  1282. Me.b9_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1283. Me.b9_bt.Location = New System.Drawing.Point(118, 82)
  1284. Me.b9_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1285. Me.b9_bt.Name = "b9_bt"
  1286. Me.b9_bt.Size = New System.Drawing.Size(58, 36)
  1287. Me.b9_bt.TabIndex = 1396
  1288. Me.b9_bt.Text = "9"
  1289. Me.b9_bt.UseVisualStyleBackColor = True
  1290. '
  1291. 'NUD_02
  1292. '
  1293. Me.NUD_02.DecimalPlaces = 2
  1294. Me.NUD_02.Location = New System.Drawing.Point(177, 34)
  1295. Me.NUD_02.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  1296. Me.NUD_02.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  1297. Me.NUD_02.Name = "NUD_02"
  1298. Me.NUD_02.Size = New System.Drawing.Size(132, 23)
  1299. Me.NUD_02.TabIndex = 1090
  1300. Me.NUD_02.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1301. Me.NUD_02.ThousandsSeparator = True
  1302. '
  1303. 'b8_bt
  1304. '
  1305. Me.b8_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1306. Me.b8_bt.Location = New System.Drawing.Point(60, 82)
  1307. Me.b8_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1308. Me.b8_bt.Name = "b8_bt"
  1309. Me.b8_bt.Size = New System.Drawing.Size(58, 36)
  1310. Me.b8_bt.TabIndex = 1395
  1311. Me.b8_bt.Text = "8"
  1312. Me.b8_bt.UseVisualStyleBackColor = True
  1313. '
  1314. 'b7_bt
  1315. '
  1316. Me.b7_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1317. Me.b7_bt.Location = New System.Drawing.Point(2, 82)
  1318. Me.b7_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1319. Me.b7_bt.Name = "b7_bt"
  1320. Me.b7_bt.Size = New System.Drawing.Size(58, 36)
  1321. Me.b7_bt.TabIndex = 1394
  1322. Me.b7_bt.Text = "7"
  1323. Me.b7_bt.UseVisualStyleBackColor = True
  1324. '
  1325. 'b6_bt
  1326. '
  1327. Me.b6_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1328. Me.b6_bt.Location = New System.Drawing.Point(118, 118)
  1329. Me.b6_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1330. Me.b6_bt.Name = "b6_bt"
  1331. Me.b6_bt.Size = New System.Drawing.Size(58, 36)
  1332. Me.b6_bt.TabIndex = 1393
  1333. Me.b6_bt.Text = "6"
  1334. Me.b6_bt.UseVisualStyleBackColor = True
  1335. '
  1336. 'b5_bt
  1337. '
  1338. Me.b5_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1339. Me.b5_bt.Location = New System.Drawing.Point(60, 118)
  1340. Me.b5_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1341. Me.b5_bt.Name = "b5_bt"
  1342. Me.b5_bt.Size = New System.Drawing.Size(58, 36)
  1343. Me.b5_bt.TabIndex = 1392
  1344. Me.b5_bt.Text = "5"
  1345. Me.b5_bt.UseVisualStyleBackColor = True
  1346. '
  1347. 'b4_bt
  1348. '
  1349. Me.b4_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1350. Me.b4_bt.Location = New System.Drawing.Point(2, 118)
  1351. Me.b4_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1352. Me.b4_bt.Name = "b4_bt"
  1353. Me.b4_bt.Size = New System.Drawing.Size(58, 36)
  1354. Me.b4_bt.TabIndex = 1391
  1355. Me.b4_bt.Text = "4"
  1356. Me.b4_bt.UseVisualStyleBackColor = True
  1357. '
  1358. 'b3_bt
  1359. '
  1360. Me.b3_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1361. Me.b3_bt.Location = New System.Drawing.Point(118, 154)
  1362. Me.b3_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1363. Me.b3_bt.Name = "b3_bt"
  1364. Me.b3_bt.Size = New System.Drawing.Size(58, 36)
  1365. Me.b3_bt.TabIndex = 1390
  1366. Me.b3_bt.Text = "3"
  1367. Me.b3_bt.UseVisualStyleBackColor = True
  1368. '
  1369. 'b2_bt
  1370. '
  1371. Me.b2_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1372. Me.b2_bt.Location = New System.Drawing.Point(60, 154)
  1373. Me.b2_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1374. Me.b2_bt.Name = "b2_bt"
  1375. Me.b2_bt.Size = New System.Drawing.Size(58, 36)
  1376. Me.b2_bt.TabIndex = 1389
  1377. Me.b2_bt.Text = "2"
  1378. Me.b2_bt.UseVisualStyleBackColor = True
  1379. '
  1380. 'b1_bt
  1381. '
  1382. Me.b1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1383. Me.b1_bt.Location = New System.Drawing.Point(2, 154)
  1384. Me.b1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1385. Me.b1_bt.Name = "b1_bt"
  1386. Me.b1_bt.Size = New System.Drawing.Size(58, 36)
  1387. Me.b1_bt.TabIndex = 1388
  1388. Me.b1_bt.Text = "1"
  1389. Me.b1_bt.UseVisualStyleBackColor = True
  1390. '
  1391. '除_bt
  1392. '
  1393. Me.除_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1394. Me.除_bt.Location = New System.Drawing.Point(179, 118)
  1395. Me.除_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1396. Me.除_bt.Name = "除_bt"
  1397. Me.除_bt.Size = New System.Drawing.Size(66, 36)
  1398. Me.除_bt.TabIndex = 1387
  1399. Me.除_bt.Text = "/"
  1400. Me.除_bt.UseVisualStyleBackColor = True
  1401. '
  1402. '乘_bt
  1403. '
  1404. Me.乘_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1405. Me.乘_bt.Location = New System.Drawing.Point(179, 82)
  1406. Me.乘_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1407. Me.乘_bt.Name = "乘_bt"
  1408. Me.乘_bt.Size = New System.Drawing.Size(66, 36)
  1409. Me.乘_bt.TabIndex = 1386
  1410. Me.乘_bt.Text = "X"
  1411. Me.乘_bt.UseVisualStyleBackColor = True
  1412. '
  1413. '減_bt
  1414. '
  1415. Me.減_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1416. Me.減_bt.Location = New System.Drawing.Point(179, 190)
  1417. Me.減_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1418. Me.減_bt.Name = "減_bt"
  1419. Me.減_bt.Size = New System.Drawing.Size(66, 36)
  1420. Me.減_bt.TabIndex = 1385
  1421. Me.減_bt.Text = "-"
  1422. Me.減_bt.UseVisualStyleBackColor = True
  1423. '
  1424. '加_bt
  1425. '
  1426. Me.加_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1427. Me.加_bt.Location = New System.Drawing.Point(179, 154)
  1428. Me.加_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1429. Me.加_bt.Name = "加_bt"
  1430. Me.加_bt.Size = New System.Drawing.Size(66, 36)
  1431. Me.加_bt.TabIndex = 1384
  1432. Me.加_bt.Text = "+"
  1433. Me.加_bt.UseVisualStyleBackColor = True
  1434. '
  1435. '選擇_lb
  1436. '
  1437. Me.選擇_lb.AutoSize = True
  1438. Me.選擇_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1439. Me.選擇_lb.ForeColor = System.Drawing.Color.Red
  1440. Me.選擇_lb.Location = New System.Drawing.Point(35, 226)
  1441. Me.選擇_lb.Name = "選擇_lb"
  1442. Me.選擇_lb.Size = New System.Drawing.Size(235, 16)
  1443. Me.選擇_lb.TabIndex = 1373
  1444. Me.選擇_lb.Text = "在總表要帶入的位置連點兩下就可帶入結果"
  1445. Me.選擇_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1446. '
  1447. '鍵盤鎖定1_ch
  1448. '
  1449. Me.鍵盤鎖定1_ch.AutoSize = True
  1450. Me.鍵盤鎖定1_ch.Location = New System.Drawing.Point(7, 16)
  1451. Me.鍵盤鎖定1_ch.Name = "鍵盤鎖定1_ch"
  1452. Me.鍵盤鎖定1_ch.Size = New System.Drawing.Size(194, 20)
  1453. Me.鍵盤鎖定1_ch.TabIndex = 1402
  1454. Me.鍵盤鎖定1_ch.Text = "鍵盤鎖定 (用鍵盤F1可快速切換)"
  1455. Me.鍵盤鎖定1_ch.UseVisualStyleBackColor = True
  1456. '
  1457. '座標_lb
  1458. '
  1459. Me.座標_lb.AutoSize = True
  1460. Me.座標_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1461. Me.座標_lb.ForeColor = System.Drawing.Color.Green
  1462. Me.座標_lb.Location = New System.Drawing.Point(170, 7)
  1463. Me.座標_lb.Name = "座標_lb"
  1464. Me.座標_lb.Size = New System.Drawing.Size(55, 16)
  1465. Me.座標_lb.TabIndex = 1378
  1466. Me.座標_lb.Text = "讀取資料"
  1467. Me.座標_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1468. '
  1469. '結果_tb
  1470. '
  1471. Me.結果_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1472. Me.結果_tb.Location = New System.Drawing.Point(246, 352)
  1473. Me.結果_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1474. Me.結果_tb.Name = "結果_tb"
  1475. Me.結果_tb.Size = New System.Drawing.Size(234, 23)
  1476. Me.結果_tb.TabIndex = 1355
  1477. Me.結果_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1478. Me.結果_tb.Visible = False
  1479. '
  1480. '文字資料輸入1_bt
  1481. '
  1482. Me.文字資料輸入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1483. Me.文字資料輸入1_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1484. Me.文字資料輸入1_bt.Location = New System.Drawing.Point(228, 2)
  1485. Me.文字資料輸入1_bt.Name = "文字資料輸入1_bt"
  1486. Me.文字資料輸入1_bt.Size = New System.Drawing.Size(86, 26)
  1487. Me.文字資料輸入1_bt.TabIndex = 1383
  1488. Me.文字資料輸入1_bt.Text = "文字資料輸入"
  1489. Me.文字資料輸入1_bt.UseVisualStyleBackColor = True
  1490. '
  1491. '計算式_tb
  1492. '
  1493. Me.計算式_tb.Location = New System.Drawing.Point(91, 352)
  1494. Me.計算式_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1495. Me.計算式_tb.Name = "計算式_tb"
  1496. Me.計算式_tb.Size = New System.Drawing.Size(63, 23)
  1497. Me.計算式_tb.TabIndex = 1354
  1498. Me.計算式_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1499. Me.計算式_tb.Visible = False
  1500. '
  1501. 'Label24
  1502. '
  1503. Me.Label24.AutoSize = True
  1504. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1505. Me.Label24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1506. Me.Label24.Location = New System.Drawing.Point(7, 6)
  1507. Me.Label24.Name = "Label24"
  1508. Me.Label24.Size = New System.Drawing.Size(67, 16)
  1509. Me.Label24.TabIndex = 1382
  1510. Me.Label24.Text = "目前選擇項"
  1511. Me.Label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1512. '
  1513. '數值1_tb
  1514. '
  1515. Me.數值1_tb.Location = New System.Drawing.Point(7, 352)
  1516. Me.數值1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1517. Me.數值1_tb.Name = "數值1_tb"
  1518. Me.數值1_tb.Size = New System.Drawing.Size(80, 23)
  1519. Me.數值1_tb.TabIndex = 1353
  1520. Me.數值1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1521. Me.數值1_tb.Visible = False
  1522. '
  1523. '數值2_tb
  1524. '
  1525. Me.數值2_tb.Location = New System.Drawing.Point(160, 352)
  1526. Me.數值2_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1527. Me.數值2_tb.Name = "數值2_tb"
  1528. Me.數值2_tb.Size = New System.Drawing.Size(80, 23)
  1529. Me.數值2_tb.TabIndex = 1352
  1530. Me.數值2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1531. Me.數值2_tb.Visible = False
  1532. '
  1533. '選擇項_tb
  1534. '
  1535. Me.選擇項_tb.Enabled = False
  1536. Me.選擇項_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1537. Me.選擇項_tb.Location = New System.Drawing.Point(75, 3)
  1538. Me.選擇項_tb.Name = "選擇項_tb"
  1539. Me.選擇項_tb.Size = New System.Drawing.Size(35, 23)
  1540. Me.選擇項_tb.TabIndex = 1381
  1541. Me.選擇項_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1542. '
  1543. 'GroupBox2
  1544. '
  1545. Me.GroupBox2.Controls.Add(Me.數量_tb)
  1546. Me.GroupBox2.Controls.Add(Me.Label45)
  1547. Me.GroupBox2.Controls.Add(Me.Label31)
  1548. Me.GroupBox2.Controls.Add(Me.合計項_cb)
  1549. Me.GroupBox2.Controls.Add(Me.Label30)
  1550. Me.GroupBox2.Controls.Add(Me.單位_tb)
  1551. Me.GroupBox2.Controls.Add(Me.備註_tb)
  1552. Me.GroupBox2.Controls.Add(Me.內容_tb)
  1553. Me.GroupBox2.Controls.Add(Me.數字1_ch)
  1554. Me.GroupBox2.Controls.Add(Me.中文小寫1_ch)
  1555. Me.GroupBox2.Controls.Add(Me.中文大寫1_ch)
  1556. Me.GroupBox2.Controls.Add(Me.ITEM1_cb)
  1557. Me.GroupBox2.Controls.Add(Me.Label25)
  1558. Me.GroupBox2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1559. Me.GroupBox2.Location = New System.Drawing.Point(3, 27)
  1560. Me.GroupBox2.Name = "GroupBox2"
  1561. Me.GroupBox2.Size = New System.Drawing.Size(315, 166)
  1562. Me.GroupBox2.TabIndex = 1380
  1563. Me.GroupBox2.TabStop = False
  1564. Me.GroupBox2.Text = "文字輸入"
  1565. '
  1566. '數量_tb
  1567. '
  1568. Me.數量_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1569. Me.數量_tb.Location = New System.Drawing.Point(263, 136)
  1570. Me.數量_tb.Name = "數量_tb"
  1571. Me.數量_tb.Size = New System.Drawing.Size(48, 23)
  1572. Me.數量_tb.TabIndex = 1396
  1573. Me.數量_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1574. '
  1575. 'Label45
  1576. '
  1577. Me.Label45.AutoSize = True
  1578. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1579. Me.Label45.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1580. Me.Label45.Location = New System.Drawing.Point(225, 139)
  1581. Me.Label45.Name = "Label45"
  1582. Me.Label45.Size = New System.Drawing.Size(31, 16)
  1583. Me.Label45.TabIndex = 1397
  1584. Me.Label45.Text = "數量"
  1585. Me.Label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1586. '
  1587. 'Label31
  1588. '
  1589. Me.Label31.AutoSize = True
  1590. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1591. Me.Label31.Location = New System.Drawing.Point(7, 140)
  1592. Me.Label31.Name = "Label31"
  1593. Me.Label31.Size = New System.Drawing.Size(43, 16)
  1594. Me.Label31.TabIndex = 1393
  1595. Me.Label31.Text = "合計項"
  1596. Me.Label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1597. '
  1598. '合計項_cb
  1599. '
  1600. Me.合計項_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1601. Me.合計項_cb.ForeColor = System.Drawing.Color.Blue
  1602. Me.合計項_cb.FormattingEnabled = True
  1603. Me.合計項_cb.Items.AddRange(New Object() {"", "折讓 Discount", "合 計 Total", "管理費 0%", "管理費 1%", "管理費 2%", "管理費 3%", "管理費 4%", "管理費 5%", "管理費 6%", "管理費 7%", "管理費 8%", "管理費 9%", "管理費 10%", "稅金 10% Tax", "稅金 11% Tax", "總計 Grand Total"})
  1604. Me.合計項_cb.Location = New System.Drawing.Point(52, 136)
  1605. Me.合計項_cb.Name = "合計項_cb"
  1606. Me.合計項_cb.Size = New System.Drawing.Size(171, 24)
  1607. Me.合計項_cb.TabIndex = 1392
  1608. '
  1609. 'Label30
  1610. '
  1611. Me.Label30.AutoSize = True
  1612. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1613. Me.Label30.Location = New System.Drawing.Point(7, 94)
  1614. Me.Label30.Name = "Label30"
  1615. Me.Label30.Size = New System.Drawing.Size(36, 16)
  1616. Me.Label30.TabIndex = 1391
  1617. Me.Label30.Text = "UNIT"
  1618. Me.Label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1619. '
  1620. '單位_tb
  1621. '
  1622. Me.單位_tb.Location = New System.Drawing.Point(7, 111)
  1623. Me.單位_tb.Name = "單位_tb"
  1624. Me.單位_tb.Size = New System.Drawing.Size(78, 23)
  1625. Me.單位_tb.TabIndex = 1390
  1626. Me.單位_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1627. '
  1628. '備註_tb
  1629. '
  1630. Me.備註_tb.Location = New System.Drawing.Point(87, 95)
  1631. Me.備註_tb.Multiline = True
  1632. Me.備註_tb.Name = "備註_tb"
  1633. Me.備註_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1634. Me.備註_tb.Size = New System.Drawing.Size(223, 39)
  1635. Me.備註_tb.TabIndex = 1389
  1636. '
  1637. '內容_tb
  1638. '
  1639. Me.內容_tb.Location = New System.Drawing.Point(6, 40)
  1640. Me.內容_tb.Multiline = True
  1641. Me.內容_tb.Name = "內容_tb"
  1642. Me.內容_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1643. Me.內容_tb.Size = New System.Drawing.Size(305, 52)
  1644. Me.內容_tb.TabIndex = 1388
  1645. '
  1646. '數字1_ch
  1647. '
  1648. Me.數字1_ch.AutoSize = True
  1649. Me.數字1_ch.Location = New System.Drawing.Point(263, 17)
  1650. Me.數字1_ch.Name = "數字1_ch"
  1651. Me.數字1_ch.Size = New System.Drawing.Size(50, 20)
  1652. Me.數字1_ch.TabIndex = 1387
  1653. Me.數字1_ch.Text = "數字"
  1654. Me.數字1_ch.UseVisualStyleBackColor = True
  1655. '
  1656. '中文小寫1_ch
  1657. '
  1658. Me.中文小寫1_ch.AutoSize = True
  1659. Me.中文小寫1_ch.Location = New System.Drawing.Point(182, 17)
  1660. Me.中文小寫1_ch.Name = "中文小寫1_ch"
  1661. Me.中文小寫1_ch.Size = New System.Drawing.Size(74, 20)
  1662. Me.中文小寫1_ch.TabIndex = 1386
  1663. Me.中文小寫1_ch.Text = "中文小寫"
  1664. Me.中文小寫1_ch.UseVisualStyleBackColor = True
  1665. '
  1666. '中文大寫1_ch
  1667. '
  1668. Me.中文大寫1_ch.AutoSize = True
  1669. Me.中文大寫1_ch.Checked = True
  1670. Me.中文大寫1_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1671. Me.中文大寫1_ch.Location = New System.Drawing.Point(101, 17)
  1672. Me.中文大寫1_ch.Name = "中文大寫1_ch"
  1673. Me.中文大寫1_ch.Size = New System.Drawing.Size(74, 20)
  1674. Me.中文大寫1_ch.TabIndex = 1385
  1675. Me.中文大寫1_ch.Text = "中文大寫"
  1676. Me.中文大寫1_ch.UseVisualStyleBackColor = True
  1677. '
  1678. 'ITEM1_cb
  1679. '
  1680. Me.ITEM1_cb.ForeColor = System.Drawing.Color.Blue
  1681. Me.ITEM1_cb.FormattingEnabled = True
  1682. Me.ITEM1_cb.Location = New System.Drawing.Point(44, 15)
  1683. Me.ITEM1_cb.Name = "ITEM1_cb"
  1684. Me.ITEM1_cb.Size = New System.Drawing.Size(51, 24)
  1685. Me.ITEM1_cb.TabIndex = 1384
  1686. '
  1687. 'Label25
  1688. '
  1689. Me.Label25.AutoSize = True
  1690. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1691. Me.Label25.Location = New System.Drawing.Point(7, 19)
  1692. Me.Label25.Name = "Label25"
  1693. Me.Label25.Size = New System.Drawing.Size(36, 16)
  1694. Me.Label25.TabIndex = 1383
  1695. Me.Label25.Text = "ITEM"
  1696. Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1697. '
  1698. 'Label23
  1699. '
  1700. Me.Label23.AutoSize = True
  1701. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1702. Me.Label23.ForeColor = System.Drawing.Color.Green
  1703. Me.Label23.Location = New System.Drawing.Point(111, 7)
  1704. Me.Label23.Name = "Label23"
  1705. Me.Label23.Size = New System.Drawing.Size(64, 16)
  1706. Me.Label23.TabIndex = 1377
  1707. Me.Label23.Text = "目前選擇 : "
  1708. Me.Label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1709. '
  1710. 'Label16
  1711. '
  1712. Me.Label16.AutoSize = True
  1713. Me.Label16.Location = New System.Drawing.Point(5, 7)
  1714. Me.Label16.Name = "Label16"
  1715. Me.Label16.Size = New System.Drawing.Size(55, 16)
  1716. Me.Label16.TabIndex = 1375
  1717. Me.Label16.Text = "總表編輯"
  1718. '
  1719. 'CanceL2_bt
  1720. '
  1721. Me.CanceL2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1722. Me.CanceL2_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  1723. Me.CanceL2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1724. Me.CanceL2_bt.ForeColor = System.Drawing.Color.Black
  1725. Me.CanceL2_bt.Location = New System.Drawing.Point(677, 2)
  1726. Me.CanceL2_bt.Name = "CanceL2_bt"
  1727. Me.CanceL2_bt.Size = New System.Drawing.Size(26, 26)
  1728. Me.CanceL2_bt.TabIndex = 1374
  1729. Me.CanceL2_bt.Text = "X"
  1730. Me.CanceL2_bt.UseVisualStyleBackColor = False
  1731. '
  1732. '空間3
  1733. '
  1734. Me.空間3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1735. Or System.Windows.Forms.AnchorStyles.Left) _
  1736. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1737. Me.空間3.AutoScroll = True
  1738. Me.空間3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1739. Me.空間3.Controls.Add(Me.歸零數_tb)
  1740. Me.空間3.Controls.Add(Me.Label76)
  1741. Me.空間3.Controls.Add(Me.利潤比4_tb)
  1742. Me.空間3.Controls.Add(Me.Label71)
  1743. Me.空間3.Controls.Add(Me.Label70)
  1744. Me.空間3.Controls.Add(Me.Label69)
  1745. Me.空間3.Controls.Add(Me.Label68)
  1746. Me.空間3.Controls.Add(Me.Label67)
  1747. Me.空間3.Controls.Add(Me.Label64)
  1748. Me.空間3.Controls.Add(Me.Label63)
  1749. Me.空間3.Controls.Add(Me.利潤比3_tb)
  1750. Me.空間3.Controls.Add(Me.Label60)
  1751. Me.空間3.Controls.Add(Me.總報價_tb)
  1752. Me.空間3.Controls.Add(Me.總成本_tb)
  1753. Me.空間3.Controls.Add(Me.彙總存檔_bt)
  1754. Me.空間3.Controls.Add(Me.Label58)
  1755. Me.空間3.Controls.Add(Me.Label59)
  1756. Me.空間3.Controls.Add(Me.利潤比2_tb)
  1757. Me.空間3.Controls.Add(Me.Label57)
  1758. Me.空間3.Controls.Add(Me.利潤比1_tb)
  1759. Me.空間3.Controls.Add(Me.預估利潤_tb)
  1760. Me.空間3.Controls.Add(Me.預估材料總報價_tb)
  1761. Me.空間3.Controls.Add(Me.Panel2)
  1762. Me.空間3.Controls.Add(Me.預估工資總報價_tb)
  1763. Me.空間3.Controls.Add(Me.預估材料總成本_tb)
  1764. Me.空間3.Controls.Add(Me.Label54)
  1765. Me.空間3.Controls.Add(Me.預估工資總成本_tb)
  1766. Me.空間3.Controls.Add(Me.Label55)
  1767. Me.空間3.Controls.Add(Me.Label65)
  1768. Me.空間3.Controls.Add(Me.Label62)
  1769. Me.空間3.Controls.Add(Me.Label66)
  1770. Me.空間3.Controls.Add(Me.Label61)
  1771. Me.空間3.Controls.Add(Me.報價總表_dgv)
  1772. Me.空間3.Controls.Add(Me.TabControl3)
  1773. Me.空間3.Location = New System.Drawing.Point(145, 42)
  1774. Me.空間3.Name = "空間3"
  1775. Me.空間3.Size = New System.Drawing.Size(1264, 960)
  1776. Me.空間3.TabIndex = 1353
  1777. '
  1778. '歸零數_tb
  1779. '
  1780. Me.歸零數_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1781. Me.歸零數_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1782. Me.歸零數_tb.Location = New System.Drawing.Point(721, 859)
  1783. Me.歸零數_tb.Name = "歸零數_tb"
  1784. Me.歸零數_tb.Size = New System.Drawing.Size(47, 16)
  1785. Me.歸零數_tb.TabIndex = 1710
  1786. Me.歸零數_tb.Text = "0"
  1787. Me.歸零數_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1788. '
  1789. 'Label76
  1790. '
  1791. Me.Label76.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1792. Me.Label76.AutoSize = True
  1793. Me.Label76.ForeColor = System.Drawing.Color.Red
  1794. Me.Label76.Location = New System.Drawing.Point(856, 859)
  1795. Me.Label76.Name = "Label76"
  1796. Me.Label76.Size = New System.Drawing.Size(285, 16)
  1797. Me.Label76.TabIndex = 1677
  1798. Me.Label76.Text = "請注意 : 表中的 * 與 @ 為系統供自計算所需請勿刪除"
  1799. '
  1800. '利潤比4_tb
  1801. '
  1802. Me.利潤比4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1803. Me.利潤比4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1804. Me.利潤比4_tb.Location = New System.Drawing.Point(1205, 941)
  1805. Me.利潤比4_tb.Name = "利潤比4_tb"
  1806. Me.利潤比4_tb.Size = New System.Drawing.Size(47, 16)
  1807. Me.利潤比4_tb.TabIndex = 1702
  1808. Me.利潤比4_tb.Text = "100%"
  1809. Me.利潤比4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1810. '
  1811. 'Label71
  1812. '
  1813. Me.Label71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1814. Me.Label71.AutoSize = True
  1815. Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1816. Me.Label71.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1817. Me.Label71.Location = New System.Drawing.Point(1101, 942)
  1818. Me.Label71.Name = "Label71"
  1819. Me.Label71.Size = New System.Drawing.Size(105, 16)
  1820. Me.Label71.TabIndex = 1703
  1821. Me.Label71.Text = "利 潤 比 (含折讓) :"
  1822. Me.Label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1823. '
  1824. 'Label70
  1825. '
  1826. Me.Label70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1827. Me.Label70.AutoSize = True
  1828. Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1829. Me.Label70.Location = New System.Drawing.Point(917, 941)
  1830. Me.Label70.Name = "Label70"
  1831. Me.Label70.Size = New System.Drawing.Size(26, 16)
  1832. Me.Label70.TabIndex = 1701
  1833. Me.Label70.Text = ") = "
  1834. Me.Label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1835. '
  1836. 'Label69
  1837. '
  1838. Me.Label69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1839. Me.Label69.AutoSize = True
  1840. Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1841. Me.Label69.ForeColor = System.Drawing.Color.Red
  1842. Me.Label69.Location = New System.Drawing.Point(856, 942)
  1843. Me.Label69.Name = "Label69"
  1844. Me.Label69.Size = New System.Drawing.Size(55, 16)
  1845. Me.Label69.TabIndex = 1700
  1846. Me.Label69.Text = "折讓金額"
  1847. Me.Label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1848. '
  1849. 'Label68
  1850. '
  1851. Me.Label68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1852. Me.Label68.AutoSize = True
  1853. Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1854. Me.Label68.Location = New System.Drawing.Point(838, 940)
  1855. Me.Label68.Name = "Label68"
  1856. Me.Label68.Size = New System.Drawing.Size(12, 16)
  1857. Me.Label68.TabIndex = 1699
  1858. Me.Label68.Text = "-"
  1859. Me.Label68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1860. '
  1861. 'Label67
  1862. '
  1863. Me.Label67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1864. Me.Label67.AutoSize = True
  1865. Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1866. Me.Label67.ForeColor = System.Drawing.Color.Green
  1867. Me.Label67.Location = New System.Drawing.Point(718, 941)
  1868. Me.Label67.Name = "Label67"
  1869. Me.Label67.Size = New System.Drawing.Size(43, 16)
  1870. Me.Label67.TabIndex = 1698
  1871. Me.Label67.Text = "總報價"
  1872. Me.Label67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1873. '
  1874. 'Label64
  1875. '
  1876. Me.Label64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1877. Me.Label64.AutoSize = True
  1878. Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1879. Me.Label64.Location = New System.Drawing.Point(763, 940)
  1880. Me.Label64.Name = "Label64"
  1881. Me.Label64.Size = New System.Drawing.Size(19, 16)
  1882. Me.Label64.TabIndex = 1697
  1883. Me.Label64.Text = "- ("
  1884. Me.Label64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1885. '
  1886. 'Label63
  1887. '
  1888. Me.Label63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1889. Me.Label63.AutoSize = True
  1890. Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1891. Me.Label63.ForeColor = System.Drawing.Color.Red
  1892. Me.Label63.Location = New System.Drawing.Point(786, 941)
  1893. Me.Label63.Name = "Label63"
  1894. Me.Label63.Size = New System.Drawing.Size(46, 16)
  1895. Me.Label63.TabIndex = 1696
  1896. Me.Label63.Text = "總成本 "
  1897. Me.Label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1898. '
  1899. '利潤比3_tb
  1900. '
  1901. Me.利潤比3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1902. Me.利潤比3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1903. Me.利潤比3_tb.Location = New System.Drawing.Point(1205, 922)
  1904. Me.利潤比3_tb.Name = "利潤比3_tb"
  1905. Me.利潤比3_tb.Size = New System.Drawing.Size(47, 16)
  1906. Me.利潤比3_tb.TabIndex = 1694
  1907. Me.利潤比3_tb.Text = "100%"
  1908. Me.利潤比3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1909. '
  1910. 'Label60
  1911. '
  1912. Me.Label60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1913. Me.Label60.AutoSize = True
  1914. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1915. Me.Label60.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1916. Me.Label60.Location = New System.Drawing.Point(1101, 923)
  1917. Me.Label60.Name = "Label60"
  1918. Me.Label60.Size = New System.Drawing.Size(105, 16)
  1919. Me.Label60.TabIndex = 1695
  1920. Me.Label60.Text = "利潤比(不含折讓) :"
  1921. Me.Label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1922. '
  1923. '總報價_tb
  1924. '
  1925. Me.總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1926. Me.總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1927. Me.總報價_tb.Location = New System.Drawing.Point(1006, 922)
  1928. Me.總報價_tb.Name = "總報價_tb"
  1929. Me.總報價_tb.Size = New System.Drawing.Size(90, 16)
  1930. Me.總報價_tb.TabIndex = 1691
  1931. Me.總報價_tb.Text = "99,999,999,999"
  1932. Me.總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1933. '
  1934. '總成本_tb
  1935. '
  1936. Me.總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1937. Me.總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1938. Me.總成本_tb.Location = New System.Drawing.Point(812, 922)
  1939. Me.總成本_tb.Name = "總成本_tb"
  1940. Me.總成本_tb.Size = New System.Drawing.Size(90, 16)
  1941. Me.總成本_tb.TabIndex = 1690
  1942. Me.總成本_tb.Text = "99,999,999,999"
  1943. Me.總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1944. '
  1945. '彙總存檔_bt
  1946. '
  1947. Me.彙總存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1948. Me.彙總存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER2
  1949. Me.彙總存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1950. Me.彙總存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1951. Me.彙總存檔_bt.ForeColor = System.Drawing.Color.Green
  1952. Me.彙總存檔_bt.Location = New System.Drawing.Point(1235, 857)
  1953. Me.彙總存檔_bt.Name = "彙總存檔_bt"
  1954. Me.彙總存檔_bt.Size = New System.Drawing.Size(24, 24)
  1955. Me.彙總存檔_bt.TabIndex = 1704
  1956. Me.彙總存檔_bt.UseVisualStyleBackColor = True
  1957. '
  1958. 'Label58
  1959. '
  1960. Me.Label58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1961. Me.Label58.AutoSize = True
  1962. Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1963. Me.Label58.ForeColor = System.Drawing.Color.Red
  1964. Me.Label58.Location = New System.Drawing.Point(716, 921)
  1965. Me.Label58.Name = "Label58"
  1966. Me.Label58.Size = New System.Drawing.Size(97, 16)
  1967. Me.Label58.TabIndex = 1692
  1968. Me.Label58.Text = "總 成 本 :"
  1969. Me.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1970. '
  1971. 'Label59
  1972. '
  1973. Me.Label59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1974. Me.Label59.AutoSize = True
  1975. Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1976. Me.Label59.ForeColor = System.Drawing.Color.Green
  1977. Me.Label59.Location = New System.Drawing.Point(911, 921)
  1978. Me.Label59.Name = "Label59"
  1979. Me.Label59.Size = New System.Drawing.Size(97, 16)
  1980. Me.Label59.TabIndex = 1693
  1981. Me.Label59.Text = "總 報 價 :"
  1982. Me.Label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1983. '
  1984. '利潤比2_tb
  1985. '
  1986. Me.利潤比2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1987. Me.利潤比2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1988. Me.利潤比2_tb.Location = New System.Drawing.Point(1206, 902)
  1989. Me.利潤比2_tb.Name = "利潤比2_tb"
  1990. Me.利潤比2_tb.Size = New System.Drawing.Size(47, 16)
  1991. Me.利潤比2_tb.TabIndex = 1688
  1992. Me.利潤比2_tb.Text = "100%"
  1993. Me.利潤比2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1994. '
  1995. 'Label57
  1996. '
  1997. Me.Label57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1998. Me.Label57.AutoSize = True
  1999. Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2000. Me.Label57.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2001. Me.Label57.Location = New System.Drawing.Point(1102, 903)
  2002. Me.Label57.Name = "Label57"
  2003. Me.Label57.Size = New System.Drawing.Size(103, 16)
  2004. Me.Label57.TabIndex = 1689
  2005. Me.Label57.Text = "利 潤 比 :"
  2006. Me.Label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2007. '
  2008. '利潤比1_tb
  2009. '
  2010. Me.利潤比1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2011. Me.利潤比1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2012. Me.利潤比1_tb.Location = New System.Drawing.Point(1205, 883)
  2013. Me.利潤比1_tb.Name = "利潤比1_tb"
  2014. Me.利潤比1_tb.Size = New System.Drawing.Size(47, 16)
  2015. Me.利潤比1_tb.TabIndex = 1412
  2016. Me.利潤比1_tb.Text = "100%"
  2017. Me.利潤比1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2018. '
  2019. '預估利潤_tb
  2020. '
  2021. Me.預估利潤_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2022. Me.預估利潤_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2023. Me.預估利潤_tb.Location = New System.Drawing.Point(1006, 942)
  2024. Me.預估利潤_tb.Name = "預估利潤_tb"
  2025. Me.預估利潤_tb.Size = New System.Drawing.Size(90, 16)
  2026. Me.預估利潤_tb.TabIndex = 1411
  2027. Me.預估利潤_tb.Text = "99,999,999,999"
  2028. Me.預估利潤_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2029. '
  2030. '預估材料總報價_tb
  2031. '
  2032. Me.預估材料總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2033. Me.預估材料總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2034. Me.預估材料總報價_tb.Location = New System.Drawing.Point(1006, 902)
  2035. Me.預估材料總報價_tb.Name = "預估材料總報價_tb"
  2036. Me.預估材料總報價_tb.Size = New System.Drawing.Size(90, 16)
  2037. Me.預估材料總報價_tb.TabIndex = 1410
  2038. Me.預估材料總報價_tb.Text = "99,999,999,999"
  2039. Me.預估材料總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2040. '
  2041. 'Panel2
  2042. '
  2043. Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2044. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2045. Me.Panel2.AutoScroll = True
  2046. Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2047. Me.Panel2.Controls.Add(Me.Label42)
  2048. Me.Panel2.Controls.Add(Me.Label379)
  2049. Me.Panel2.Controls.Add(Me.工程期_ch)
  2050. Me.Panel2.Controls.Add(Me.Label19)
  2051. Me.Panel2.Controls.Add(Me.Label15)
  2052. Me.Panel2.Controls.Add(Me.最末頁_cb)
  2053. Me.Panel2.Controls.Add(Me.Label20)
  2054. Me.Panel2.Controls.Add(Me.合約編號3_tb)
  2055. Me.Panel2.Controls.Add(Me.合約編號2_tb)
  2056. Me.Panel2.Controls.Add(Me.明細選項_bt)
  2057. Me.Panel2.Controls.Add(Me.合約編號1_tb)
  2058. Me.Panel2.Controls.Add(Me.刪除資料_bt)
  2059. Me.Panel2.Controls.Add(Me.合約編號_cb)
  2060. Me.Panel2.Controls.Add(Me.新增資料_bt)
  2061. Me.Panel2.Controls.Add(Me.自動讀取_bt)
  2062. Me.Panel2.Controls.Add(Me.Label397)
  2063. Me.Panel2.Controls.Add(Me.手動輸入_bt)
  2064. Me.Panel2.Controls.Add(Me.金額6_und)
  2065. Me.Panel2.Controls.Add(Me.Label5)
  2066. Me.Panel2.Controls.Add(Me.工程款6_nud)
  2067. Me.Panel2.Controls.Add(Me.最高扣款_bt)
  2068. Me.Panel2.Controls.Add(Me.合約種類_tb)
  2069. Me.Panel2.Controls.Add(Me.NUD2)
  2070. Me.Panel2.Controls.Add(Me.NUD1)
  2071. Me.Panel2.Controls.Add(Me.Label372)
  2072. Me.Panel2.Controls.Add(Me.Label394)
  2073. Me.Panel2.Controls.Add(Me.客戶名稱_tb)
  2074. Me.Panel2.Controls.Add(Me.Label396)
  2075. Me.Panel2.Controls.Add(Me.Label373)
  2076. Me.Panel2.Controls.Add(Me.NUD3)
  2077. Me.Panel2.Controls.Add(Me.Label374)
  2078. Me.Panel2.Controls.Add(Me.合約種類_cb)
  2079. Me.Panel2.Controls.Add(Me.Label375)
  2080. Me.Panel2.Controls.Add(Me.逾期_bt)
  2081. Me.Panel2.Controls.Add(Me.工程名稱_中_tb)
  2082. Me.Panel2.Controls.Add(Me.Label395)
  2083. Me.Panel2.Controls.Add(Me.客戶地址_tb)
  2084. Me.Panel2.Controls.Add(Me.Label393)
  2085. Me.Panel2.Controls.Add(Me.金額5_und)
  2086. Me.Panel2.Controls.Add(Me.Label380)
  2087. Me.Panel2.Controls.Add(Me.工程地點_tb)
  2088. Me.Panel2.Controls.Add(Me.Label406)
  2089. Me.Panel2.Controls.Add(Me.金額4_und)
  2090. Me.Panel2.Controls.Add(Me.逾期_英_bt)
  2091. Me.Panel2.Controls.Add(Me.Label376)
  2092. Me.Panel2.Controls.Add(Me.工期_nud)
  2093. Me.Panel2.Controls.Add(Me.金額3_und)
  2094. Me.Panel2.Controls.Add(Me.最高扣款_英_bt)
  2095. Me.Panel2.Controls.Add(Me.Label414)
  2096. Me.Panel2.Controls.Add(Me.Label391)
  2097. Me.Panel2.Controls.Add(Me.金額2_und)
  2098. Me.Panel2.Controls.Add(Me.Label403)
  2099. Me.Panel2.Controls.Add(Me.選擇公司_cb)
  2100. Me.Panel2.Controls.Add(Me.負責人_B_cb)
  2101. Me.Panel2.Controls.Add(Me.金額1_und)
  2102. Me.Panel2.Controls.Add(Me.Label407)
  2103. Me.Panel2.Controls.Add(Me.立約日期_dtp)
  2104. Me.Panel2.Controls.Add(Me.Label410)
  2105. Me.Panel2.Controls.Add(Me.工程款5_nud)
  2106. Me.Panel2.Controls.Add(Me.Label408)
  2107. Me.Panel2.Controls.Add(Me.Label377)
  2108. Me.Panel2.Controls.Add(Me.Label405)
  2109. Me.Panel2.Controls.Add(Me.工程款4_nud)
  2110. Me.Panel2.Controls.Add(Me.減價_bt)
  2111. Me.Panel2.Controls.Add(Me.頁數_bt)
  2112. Me.Panel2.Controls.Add(Me.Label409)
  2113. Me.Panel2.Controls.Add(Me.Label399)
  2114. Me.Panel2.Controls.Add(Me.負責人_A_cb)
  2115. Me.Panel2.Controls.Add(Me.我司地址_tb)
  2116. Me.Panel2.Controls.Add(Me.工程名稱_英_tb)
  2117. Me.Panel2.Controls.Add(Me.工程款3_nud)
  2118. Me.Panel2.Controls.Add(Me.Label404)
  2119. Me.Panel2.Controls.Add(Me.Label413)
  2120. Me.Panel2.Controls.Add(Me.Label412)
  2121. Me.Panel2.Controls.Add(Me.Label400)
  2122. Me.Panel2.Controls.Add(Me.工程款1_nud)
  2123. Me.Panel2.Controls.Add(Me.Label378)
  2124. Me.Panel2.Controls.Add(Me.廠區_中文_tb)
  2125. Me.Panel2.Controls.Add(Me.工程款2_nud)
  2126. Me.Panel2.Controls.Add(Me.Label28)
  2127. Me.Panel2.Controls.Add(Me.Label382)
  2128. Me.Panel2.Controls.Add(Me.稅額顯示_lb)
  2129. Me.Panel2.Controls.Add(Me.CH2)
  2130. Me.Panel2.Controls.Add(Me.CH1)
  2131. Me.Panel2.Controls.Add(Me.Label402)
  2132. Me.Panel2.Controls.Add(Me.Label392)
  2133. Me.Panel2.Controls.Add(Me.Label381)
  2134. Me.Panel2.Controls.Add(Me.Label386)
  2135. Me.Panel2.Controls.Add(Me.Label21)
  2136. Me.Panel2.Controls.Add(Me.TabControl2)
  2137. Me.Panel2.Controls.Add(Me.Label388)
  2138. Me.Panel2.Controls.Add(Me.Label387)
  2139. Me.Panel2.Controls.Add(Me.Label390)
  2140. Me.Panel2.Controls.Add(Me.Label389)
  2141. Me.Panel2.Controls.Add(Me.Label411)
  2142. Me.Panel2.Controls.Add(Me.Label29)
  2143. Me.Panel2.Controls.Add(Me.Label35)
  2144. Me.Panel2.Controls.Add(Me.Label34)
  2145. Me.Panel2.Location = New System.Drawing.Point(-1, -1)
  2146. Me.Panel2.Name = "Panel2"
  2147. Me.Panel2.Size = New System.Drawing.Size(713, 960)
  2148. Me.Panel2.TabIndex = 1408
  2149. '
  2150. 'Label42
  2151. '
  2152. Me.Label42.AutoSize = True
  2153. Me.Label42.ForeColor = System.Drawing.Color.Green
  2154. Me.Label42.Location = New System.Drawing.Point(6, 772)
  2155. Me.Label42.Name = "Label42"
  2156. Me.Label42.Size = New System.Drawing.Size(478, 16)
  2157. Me.Label42.TabIndex = 1406
  2158. Me.Label42.Text = "如遇有拆除困難,經A方同意在不影響結構安全下應由B方出具保證切結書,得減價收受。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2159. '
  2160. 'Label379
  2161. '
  2162. Me.Label379.AutoSize = True
  2163. Me.Label379.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2164. Me.Label379.Location = New System.Drawing.Point(-1, 3)
  2165. Me.Label379.Name = "Label379"
  2166. Me.Label379.Size = New System.Drawing.Size(39, 38)
  2167. Me.Label379.TabIndex = 1037
  2168. Me.Label379.Text = "合約" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "編號"
  2169. Me.Label379.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2170. '
  2171. '工程期_ch
  2172. '
  2173. Me.工程期_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2174. Me.工程期_ch.ForeColor = System.Drawing.Color.Blue
  2175. Me.工程期_ch.FormattingEnabled = True
  2176. Me.工程期_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  2177. Me.工程期_ch.Location = New System.Drawing.Point(257, 17)
  2178. Me.工程期_ch.Name = "工程期_ch"
  2179. Me.工程期_ch.Size = New System.Drawing.Size(74, 24)
  2180. Me.工程期_ch.TabIndex = 1404
  2181. '
  2182. 'Label19
  2183. '
  2184. Me.Label19.AutoSize = True
  2185. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2186. Me.Label19.Location = New System.Drawing.Point(449, 475)
  2187. Me.Label19.Name = "Label19"
  2188. Me.Label19.Size = New System.Drawing.Size(235, 16)
  2189. Me.Label19.TabIndex = 1147
  2190. Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
  2191. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2192. '
  2193. 'Label15
  2194. '
  2195. Me.Label15.AutoSize = True
  2196. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2197. Me.Label15.Location = New System.Drawing.Point(333, 2)
  2198. Me.Label15.Name = "Label15"
  2199. Me.Label15.Size = New System.Drawing.Size(302, 16)
  2200. Me.Label15.TabIndex = 1403
  2201. Me.Label15.Text = "立約日期的格式為YYMMDD (年兩位,月兩位,日兩位)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2202. Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2203. '
  2204. '最末頁_cb
  2205. '
  2206. Me.最末頁_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2207. Me.最末頁_cb.ForeColor = System.Drawing.Color.Blue
  2208. Me.最末頁_cb.FormattingEnabled = True
  2209. Me.最末頁_cb.Items.AddRange(New Object() {"16", "17", "18", "19", "20"})
  2210. Me.最末頁_cb.Location = New System.Drawing.Point(604, 18)
  2211. Me.最末頁_cb.Name = "最末頁_cb"
  2212. Me.最末頁_cb.Size = New System.Drawing.Size(78, 24)
  2213. Me.最末頁_cb.TabIndex = 1352
  2214. '
  2215. 'Label20
  2216. '
  2217. Me.Label20.AutoSize = True
  2218. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2219. Me.Label20.Location = New System.Drawing.Point(523, 22)
  2220. Me.Label20.Name = "Label20"
  2221. Me.Label20.Size = New System.Drawing.Size(79, 16)
  2222. Me.Label20.TabIndex = 1351
  2223. Me.Label20.Text = "設定最末頁為"
  2224. Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2225. '
  2226. '合約編號3_tb
  2227. '
  2228. Me.合約編號3_tb.Location = New System.Drawing.Point(220, 18)
  2229. Me.合約編號3_tb.Name = "合約編號3_tb"
  2230. Me.合約編號3_tb.Size = New System.Drawing.Size(35, 23)
  2231. Me.合約編號3_tb.TabIndex = 1041
  2232. '
  2233. '合約編號2_tb
  2234. '
  2235. Me.合約編號2_tb.Location = New System.Drawing.Point(154, 18)
  2236. Me.合約編號2_tb.MaxLength = 6
  2237. Me.合約編號2_tb.Name = "合約編號2_tb"
  2238. Me.合約編號2_tb.Size = New System.Drawing.Size(65, 23)
  2239. Me.合約編號2_tb.TabIndex = 1040
  2240. '
  2241. '明細選項_bt
  2242. '
  2243. Me.明細選項_bt.Enabled = False
  2244. Me.明細選項_bt.Location = New System.Drawing.Point(254, 469)
  2245. Me.明細選項_bt.Name = "明細選項_bt"
  2246. Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
  2247. Me.明細選項_bt.TabIndex = 1145
  2248. '
  2249. '合約編號1_tb
  2250. '
  2251. Me.合約編號1_tb.Location = New System.Drawing.Point(103, 18)
  2252. Me.合約編號1_tb.Name = "合約編號1_tb"
  2253. Me.合約編號1_tb.Size = New System.Drawing.Size(50, 23)
  2254. Me.合約編號1_tb.TabIndex = 1039
  2255. '
  2256. '刪除資料_bt
  2257. '
  2258. Me.刪除資料_bt.ForeColor = System.Drawing.Color.Red
  2259. Me.刪除資料_bt.Location = New System.Drawing.Point(375, 467)
  2260. Me.刪除資料_bt.Name = "刪除資料_bt"
  2261. Me.刪除資料_bt.Size = New System.Drawing.Size(75, 26)
  2262. Me.刪除資料_bt.TabIndex = 1144
  2263. Me.刪除資料_bt.Text = "刪除資料"
  2264. Me.刪除資料_bt.UseVisualStyleBackColor = True
  2265. '
  2266. '合約編號_cb
  2267. '
  2268. Me.合約編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2269. Me.合約編號_cb.ForeColor = System.Drawing.Color.Blue
  2270. Me.合約編號_cb.FormattingEnabled = True
  2271. Me.合約編號_cb.Items.AddRange(New Object() {"HX", "PGS"})
  2272. Me.合約編號_cb.Location = New System.Drawing.Point(39, 17)
  2273. Me.合約編號_cb.Name = "合約編號_cb"
  2274. Me.合約編號_cb.Size = New System.Drawing.Size(62, 24)
  2275. Me.合約編號_cb.TabIndex = 1038
  2276. '
  2277. '新增資料_bt
  2278. '
  2279. Me.新增資料_bt.ForeColor = System.Drawing.Color.Blue
  2280. Me.新增資料_bt.Location = New System.Drawing.Point(300, 467)
  2281. Me.新增資料_bt.Name = "新增資料_bt"
  2282. Me.新增資料_bt.Size = New System.Drawing.Size(75, 26)
  2283. Me.新增資料_bt.TabIndex = 1143
  2284. Me.新增資料_bt.Text = "新增資料"
  2285. Me.新增資料_bt.UseVisualStyleBackColor = True
  2286. '
  2287. '自動讀取_bt
  2288. '
  2289. Me.自動讀取_bt.Location = New System.Drawing.Point(333, 18)
  2290. Me.自動讀取_bt.Name = "自動讀取_bt"
  2291. Me.自動讀取_bt.Size = New System.Drawing.Size(81, 23)
  2292. Me.自動讀取_bt.TabIndex = 1042
  2293. Me.自動讀取_bt.Text = "自動讀取"
  2294. Me.自動讀取_bt.UseVisualStyleBackColor = True
  2295. '
  2296. 'Label397
  2297. '
  2298. Me.Label397.AutoSize = True
  2299. Me.Label397.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2300. Me.Label397.Location = New System.Drawing.Point(3, 45)
  2301. Me.Label397.Name = "Label397"
  2302. Me.Label397.Size = New System.Drawing.Size(74, 21)
  2303. Me.Label397.TabIndex = 1114
  2304. Me.Label397.Text = "工程合約"
  2305. Me.Label397.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2306. '
  2307. '手動輸入_bt
  2308. '
  2309. Me.手動輸入_bt.Location = New System.Drawing.Point(414, 18)
  2310. Me.手動輸入_bt.Name = "手動輸入_bt"
  2311. Me.手動輸入_bt.Size = New System.Drawing.Size(81, 23)
  2312. Me.手動輸入_bt.TabIndex = 1043
  2313. Me.手動輸入_bt.Text = "手動輸入"
  2314. Me.手動輸入_bt.UseVisualStyleBackColor = True
  2315. '
  2316. '金額6_und
  2317. '
  2318. Me.金額6_und.Enabled = False
  2319. Me.金額6_und.Location = New System.Drawing.Point(577, 440)
  2320. Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2321. Me.金額6_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2322. Me.金額6_und.Name = "金額6_und"
  2323. Me.金額6_und.Size = New System.Drawing.Size(105, 23)
  2324. Me.金額6_und.TabIndex = 1140
  2325. Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2326. Me.金額6_und.ThousandsSeparator = True
  2327. '
  2328. 'Label5
  2329. '
  2330. Me.Label5.AutoSize = True
  2331. Me.Label5.Location = New System.Drawing.Point(-2, 30)
  2332. Me.Label5.Name = "Label5"
  2333. Me.Label5.Size = New System.Drawing.Size(687, 16)
  2334. Me.Label5.TabIndex = 1151
  2335. Me.Label5.Text = "_________________________________________________________________________________" &
  2336. "_______________________________________________________"
  2337. '
  2338. '工程款6_nud
  2339. '
  2340. Me.工程款6_nud.Enabled = False
  2341. Me.工程款6_nud.Location = New System.Drawing.Point(536, 440)
  2342. Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
  2343. Me.工程款6_nud.Name = "工程款6_nud"
  2344. Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
  2345. Me.工程款6_nud.TabIndex = 1139
  2346. Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2347. Me.工程款6_nud.ThousandsSeparator = True
  2348. Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
  2349. '
  2350. '最高扣款_bt
  2351. '
  2352. Me.最高扣款_bt.Location = New System.Drawing.Point(536, 676)
  2353. Me.最高扣款_bt.Name = "最高扣款_bt"
  2354. Me.最高扣款_bt.Size = New System.Drawing.Size(147, 23)
  2355. Me.最高扣款_bt.TabIndex = 1109
  2356. Me.最高扣款_bt.Text = "5% (百分之五)"
  2357. Me.最高扣款_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2358. '
  2359. '合約種類_tb
  2360. '
  2361. Me.合約種類_tb.Location = New System.Drawing.Point(190, 68)
  2362. Me.合約種類_tb.Name = "合約種類_tb"
  2363. Me.合約種類_tb.Size = New System.Drawing.Size(494, 23)
  2364. Me.合約種類_tb.TabIndex = 1081
  2365. Me.合約種類_tb.Text = "MECHANICAL ELECTRICAL CONSTRUCTION CONTRACT"
  2366. '
  2367. 'NUD2
  2368. '
  2369. Me.NUD2.Enabled = False
  2370. Me.NUD2.Location = New System.Drawing.Point(359, 366)
  2371. Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2372. Me.NUD2.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2373. Me.NUD2.Name = "NUD2"
  2374. Me.NUD2.Size = New System.Drawing.Size(105, 23)
  2375. Me.NUD2.TabIndex = 1086
  2376. Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2377. Me.NUD2.ThousandsSeparator = True
  2378. '
  2379. 'NUD1
  2380. '
  2381. Me.NUD1.Enabled = False
  2382. Me.NUD1.Location = New System.Drawing.Point(132, 366)
  2383. Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2384. Me.NUD1.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2385. Me.NUD1.Name = "NUD1"
  2386. Me.NUD1.Size = New System.Drawing.Size(105, 23)
  2387. Me.NUD1.TabIndex = 1085
  2388. Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2389. Me.NUD1.ThousandsSeparator = True
  2390. '
  2391. 'Label372
  2392. '
  2393. Me.Label372.AutoSize = True
  2394. Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2395. Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2396. Me.Label372.Location = New System.Drawing.Point(1, 121)
  2397. Me.Label372.Name = "Label372"
  2398. Me.Label372.Size = New System.Drawing.Size(55, 16)
  2399. Me.Label372.TabIndex = 1065
  2400. Me.Label372.Text = "客戶名稱"
  2401. Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2402. '
  2403. 'Label394
  2404. '
  2405. Me.Label394.AutoSize = True
  2406. Me.Label394.ForeColor = System.Drawing.Color.Green
  2407. Me.Label394.Location = New System.Drawing.Point(450, 679)
  2408. Me.Label394.Name = "Label394"
  2409. Me.Label394.Size = New System.Drawing.Size(79, 16)
  2410. Me.Label394.TabIndex = 1108
  2411. Me.Label394.Text = ",最高扣罰至"
  2412. '
  2413. '客戶名稱_tb
  2414. '
  2415. Me.客戶名稱_tb.FormattingEnabled = True
  2416. Me.客戶名稱_tb.Location = New System.Drawing.Point(58, 118)
  2417. Me.客戶名稱_tb.Name = "客戶名稱_tb"
  2418. Me.客戶名稱_tb.Size = New System.Drawing.Size(369, 24)
  2419. Me.客戶名稱_tb.TabIndex = 1066
  2420. Me.客戶名稱_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  2421. '
  2422. 'Label396
  2423. '
  2424. Me.Label396.AutoSize = True
  2425. Me.Label396.ForeColor = System.Drawing.Color.Green
  2426. Me.Label396.Location = New System.Drawing.Point(4, 704)
  2427. Me.Label396.Name = "Label396"
  2428. Me.Label396.Size = New System.Drawing.Size(233, 16)
  2429. Me.Label396.TabIndex = 1110
  2430. Me.Label396.Text = "The penalty of the delay of the project is"
  2431. '
  2432. 'Label373
  2433. '
  2434. Me.Label373.AutoSize = True
  2435. Me.Label373.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2436. Me.Label373.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2437. Me.Label373.Location = New System.Drawing.Point(1, 146)
  2438. Me.Label373.Name = "Label373"
  2439. Me.Label373.Size = New System.Drawing.Size(55, 16)
  2440. Me.Label373.TabIndex = 1067
  2441. Me.Label373.Text = "工程地點"
  2442. Me.Label373.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2443. '
  2444. 'NUD3
  2445. '
  2446. Me.NUD3.Location = New System.Drawing.Point(578, 366)
  2447. Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2448. Me.NUD3.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2449. Me.NUD3.Name = "NUD3"
  2450. Me.NUD3.Size = New System.Drawing.Size(105, 23)
  2451. Me.NUD3.TabIndex = 1087
  2452. Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2453. Me.NUD3.ThousandsSeparator = True
  2454. '
  2455. 'Label374
  2456. '
  2457. Me.Label374.AutoSize = True
  2458. Me.Label374.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2459. Me.Label374.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2460. Me.Label374.Location = New System.Drawing.Point(1, 186)
  2461. Me.Label374.Name = "Label374"
  2462. Me.Label374.Size = New System.Drawing.Size(43, 16)
  2463. Me.Label374.TabIndex = 1068
  2464. Me.Label374.Text = "地 址"
  2465. Me.Label374.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2466. '
  2467. '合約種類_cb
  2468. '
  2469. Me.合約種類_cb.ForeColor = System.Drawing.Color.Black
  2470. Me.合約種類_cb.FormattingEnabled = True
  2471. Me.合約種類_cb.Items.AddRange(New Object() {"HX", "PGS"})
  2472. Me.合約種類_cb.Location = New System.Drawing.Point(58, 67)
  2473. Me.合約種類_cb.Name = "合約種類_cb"
  2474. Me.合約種類_cb.Size = New System.Drawing.Size(126, 24)
  2475. Me.合約種類_cb.TabIndex = 1080
  2476. Me.合約種類_cb.Text = "機電施工合約"
  2477. '
  2478. 'Label375
  2479. '
  2480. Me.Label375.AutoSize = True
  2481. Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2482. Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2483. Me.Label375.Location = New System.Drawing.Point(1, 228)
  2484. Me.Label375.Name = "Label375"
  2485. Me.Label375.Size = New System.Drawing.Size(87, 16)
  2486. Me.Label375.TabIndex = 1069
  2487. Me.Label375.Text = "工程名稱(中文)"
  2488. Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2489. '
  2490. '逾期_bt
  2491. '
  2492. Me.逾期_bt.Location = New System.Drawing.Point(320, 675)
  2493. Me.逾期_bt.Name = "逾期_bt"
  2494. Me.逾期_bt.Size = New System.Drawing.Size(126, 23)
  2495. Me.逾期_bt.TabIndex = 1107
  2496. Me.逾期_bt.Text = "0.0005% (萬分之五)"
  2497. Me.逾期_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2498. '
  2499. '工程名稱_中_tb
  2500. '
  2501. Me.工程名稱_中_tb.Location = New System.Drawing.Point(95, 225)
  2502. Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
  2503. Me.工程名稱_中_tb.Size = New System.Drawing.Size(588, 23)
  2504. Me.工程名稱_中_tb.TabIndex = 1070
  2505. Me.工程名稱_中_tb.Text = "JCS #B3分站高壓電力工程"
  2506. '
  2507. 'Label395
  2508. '
  2509. Me.Label395.AutoSize = True
  2510. Me.Label395.ForeColor = System.Drawing.Color.Green
  2511. Me.Label395.Location = New System.Drawing.Point(4, 729)
  2512. Me.Label395.Name = "Label395"
  2513. Me.Label395.Size = New System.Drawing.Size(358, 16)
  2514. Me.Label395.TabIndex = 1111
  2515. Me.Label395.Text = "per day from total contract price, the maximum penalty is until " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2516. '
  2517. '客戶地址_tb
  2518. '
  2519. Me.客戶地址_tb.Location = New System.Drawing.Point(58, 184)
  2520. Me.客戶地址_tb.Multiline = True
  2521. Me.客戶地址_tb.Name = "客戶地址_tb"
  2522. Me.客戶地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2523. Me.客戶地址_tb.Size = New System.Drawing.Size(625, 40)
  2524. Me.客戶地址_tb.TabIndex = 1071
  2525. Me.客戶地址_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL, KAB, MAJALENGKA JAWA BARAT, INDONESIA JAWA " &
  2526. "BARAT - 45456"
  2527. '
  2528. 'Label393
  2529. '
  2530. Me.Label393.AutoSize = True
  2531. Me.Label393.ForeColor = System.Drawing.Color.Green
  2532. Me.Label393.Location = New System.Drawing.Point(138, 679)
  2533. Me.Label393.Name = "Label393"
  2534. Me.Label393.Size = New System.Drawing.Size(175, 16)
  2535. Me.Label393.TabIndex = 1106
  2536. Me.Label393.Text = "總工期逾期以每日扣罰工程總價"
  2537. '
  2538. '金額5_und
  2539. '
  2540. Me.金額5_und.Enabled = False
  2541. Me.金額5_und.Location = New System.Drawing.Point(577, 416)
  2542. Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2543. Me.金額5_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2544. Me.金額5_und.Name = "金額5_und"
  2545. Me.金額5_und.Size = New System.Drawing.Size(105, 23)
  2546. Me.金額5_und.TabIndex = 1102
  2547. Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2548. Me.金額5_und.ThousandsSeparator = True
  2549. '
  2550. 'Label380
  2551. '
  2552. Me.Label380.AutoSize = True
  2553. Me.Label380.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2554. Me.Label380.Location = New System.Drawing.Point(0, 70)
  2555. Me.Label380.Name = "Label380"
  2556. Me.Label380.Size = New System.Drawing.Size(55, 16)
  2557. Me.Label380.TabIndex = 1079
  2558. Me.Label380.Text = "合約種類"
  2559. Me.Label380.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2560. '
  2561. '工程地點_tb
  2562. '
  2563. Me.工程地點_tb.Location = New System.Drawing.Point(58, 143)
  2564. Me.工程地點_tb.Multiline = True
  2565. Me.工程地點_tb.Name = "工程地點_tb"
  2566. Me.工程地點_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2567. Me.工程地點_tb.Size = New System.Drawing.Size(625, 40)
  2568. Me.工程地點_tb.TabIndex = 1072
  2569. Me.工程地點_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL KAB, MAJALENGKA JAWA BARAT, INDONESIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2570. '
  2571. 'Label406
  2572. '
  2573. Me.Label406.AutoSize = True
  2574. Me.Label406.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2575. Me.Label406.Location = New System.Drawing.Point(3, 95)
  2576. Me.Label406.Name = "Label406"
  2577. Me.Label406.Size = New System.Drawing.Size(154, 21)
  2578. Me.Label406.TabIndex = 1123
  2579. Me.Label406.Text = "第一條、履約和數量"
  2580. Me.Label406.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2581. '
  2582. '金額4_und
  2583. '
  2584. Me.金額4_und.Enabled = False
  2585. Me.金額4_und.Location = New System.Drawing.Point(348, 440)
  2586. Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2587. Me.金額4_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2588. Me.金額4_und.Name = "金額4_und"
  2589. Me.金額4_und.Size = New System.Drawing.Size(105, 23)
  2590. Me.金額4_und.TabIndex = 1101
  2591. Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2592. Me.金額4_und.ThousandsSeparator = True
  2593. '
  2594. '逾期_英_bt
  2595. '
  2596. Me.逾期_英_bt.Location = New System.Drawing.Point(244, 700)
  2597. Me.逾期_英_bt.Name = "逾期_英_bt"
  2598. Me.逾期_英_bt.Size = New System.Drawing.Size(439, 23)
  2599. Me.逾期_英_bt.TabIndex = 1112
  2600. Me.逾期_英_bt.Text = "0.0005% (null point null null null five percent)"
  2601. '
  2602. 'Label376
  2603. '
  2604. Me.Label376.AutoSize = True
  2605. Me.Label376.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2606. Me.Label376.ForeColor = System.Drawing.Color.Blue
  2607. Me.Label376.Location = New System.Drawing.Point(1, 277)
  2608. Me.Label376.Name = "Label376"
  2609. Me.Label376.Size = New System.Drawing.Size(55, 16)
  2610. Me.Label376.TabIndex = 1073
  2611. Me.Label376.Text = "公司名稱"
  2612. Me.Label376.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2613. '
  2614. '工期_nud
  2615. '
  2616. Me.工期_nud.Location = New System.Drawing.Point(79, 675)
  2617. Me.工期_nud.Maximum = New Decimal(New Integer() {1215752192, 23, 0, 0})
  2618. Me.工期_nud.Name = "工期_nud"
  2619. Me.工期_nud.Size = New System.Drawing.Size(53, 23)
  2620. Me.工期_nud.TabIndex = 1104
  2621. Me.工期_nud.ThousandsSeparator = True
  2622. Me.工期_nud.Value = New Decimal(New Integer() {180, 0, 0, 0})
  2623. '
  2624. '金額3_und
  2625. '
  2626. Me.金額3_und.Enabled = False
  2627. Me.金額3_und.Location = New System.Drawing.Point(348, 416)
  2628. Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2629. Me.金額3_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2630. Me.金額3_und.Name = "金額3_und"
  2631. Me.金額3_und.Size = New System.Drawing.Size(105, 23)
  2632. Me.金額3_und.TabIndex = 1100
  2633. Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2634. Me.金額3_und.ThousandsSeparator = True
  2635. '
  2636. '最高扣款_英_bt
  2637. '
  2638. Me.最高扣款_英_bt.Location = New System.Drawing.Point(369, 724)
  2639. Me.最高扣款_英_bt.Name = "最高扣款_英_bt"
  2640. Me.最高扣款_英_bt.Size = New System.Drawing.Size(314, 23)
  2641. Me.最高扣款_英_bt.TabIndex = 1113
  2642. Me.最高扣款_英_bt.Text = "5 (five)%. "
  2643. '
  2644. 'Label414
  2645. '
  2646. Me.Label414.AutoSize = True
  2647. Me.Label414.ForeColor = System.Drawing.Color.Green
  2648. Me.Label414.Location = New System.Drawing.Point(514, 839)
  2649. Me.Label414.Name = "Label414"
  2650. Me.Label414.Size = New System.Drawing.Size(55, 16)
  2651. Me.Label414.TabIndex = 1135
  2652. Me.Label414.Text = "立約日期" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2653. '
  2654. 'Label391
  2655. '
  2656. Me.Label391.AutoSize = True
  2657. Me.Label391.ForeColor = System.Drawing.Color.Green
  2658. Me.Label391.Location = New System.Drawing.Point(5, 678)
  2659. Me.Label391.Name = "Label391"
  2660. Me.Label391.Size = New System.Drawing.Size(67, 16)
  2661. Me.Label391.TabIndex = 1103
  2662. Me.Label391.Text = "需工期時間"
  2663. '
  2664. '金額2_und
  2665. '
  2666. Me.金額2_und.Enabled = False
  2667. Me.金額2_und.Location = New System.Drawing.Point(118, 440)
  2668. Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2669. Me.金額2_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2670. Me.金額2_und.Name = "金額2_und"
  2671. Me.金額2_und.Size = New System.Drawing.Size(105, 23)
  2672. Me.金額2_und.TabIndex = 1099
  2673. Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2674. Me.金額2_und.ThousandsSeparator = True
  2675. '
  2676. 'Label403
  2677. '
  2678. Me.Label403.AutoSize = True
  2679. Me.Label403.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2680. Me.Label403.Location = New System.Drawing.Point(4, 652)
  2681. Me.Label403.Name = "Label403"
  2682. Me.Label403.Size = New System.Drawing.Size(202, 21)
  2683. Me.Label403.TabIndex = 1118
  2684. Me.Label403.Text = "第四條、工期時間及擔保品"
  2685. Me.Label403.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2686. '
  2687. '選擇公司_cb
  2688. '
  2689. Me.選擇公司_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2690. Me.選擇公司_cb.ForeColor = System.Drawing.Color.Blue
  2691. Me.選擇公司_cb.FormattingEnabled = True
  2692. Me.選擇公司_cb.Items.AddRange(New Object() {"PT HONG XHE INDUSTRIAL", "PT PUNCAK GEMILANG SEMESTA"})
  2693. Me.選擇公司_cb.Location = New System.Drawing.Point(57, 274)
  2694. Me.選擇公司_cb.Name = "選擇公司_cb"
  2695. Me.選擇公司_cb.Size = New System.Drawing.Size(369, 24)
  2696. Me.選擇公司_cb.TabIndex = 1074
  2697. '
  2698. '負責人_B_cb
  2699. '
  2700. Me.負責人_B_cb.FormattingEnabled = True
  2701. Me.負責人_B_cb.Location = New System.Drawing.Point(477, 274)
  2702. Me.負責人_B_cb.Name = "負責人_B_cb"
  2703. Me.負責人_B_cb.Size = New System.Drawing.Size(206, 24)
  2704. Me.負責人_B_cb.TabIndex = 1122
  2705. '
  2706. '金額1_und
  2707. '
  2708. Me.金額1_und.Enabled = False
  2709. Me.金額1_und.Location = New System.Drawing.Point(118, 416)
  2710. Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2711. Me.金額1_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  2712. Me.金額1_und.Name = "金額1_und"
  2713. Me.金額1_und.Size = New System.Drawing.Size(105, 23)
  2714. Me.金額1_und.TabIndex = 1098
  2715. Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2716. Me.金額1_und.ThousandsSeparator = True
  2717. '
  2718. 'Label407
  2719. '
  2720. Me.Label407.AutoSize = True
  2721. Me.Label407.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2722. Me.Label407.Location = New System.Drawing.Point(4, 748)
  2723. Me.Label407.Name = "Label407"
  2724. Me.Label407.Size = New System.Drawing.Size(106, 21)
  2725. Me.Label407.TabIndex = 1124
  2726. Me.Label407.Text = "第八條、驗收"
  2727. Me.Label407.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2728. '
  2729. '立約日期_dtp
  2730. '
  2731. Me.立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  2732. Me.立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  2733. Me.立約日期_dtp.Location = New System.Drawing.Point(572, 835)
  2734. Me.立約日期_dtp.Name = "立約日期_dtp"
  2735. Me.立約日期_dtp.Size = New System.Drawing.Size(111, 23)
  2736. Me.立約日期_dtp.TabIndex = 1134
  2737. '
  2738. 'Label410
  2739. '
  2740. Me.Label410.AutoSize = True
  2741. Me.Label410.ForeColor = System.Drawing.Color.Green
  2742. Me.Label410.Location = New System.Drawing.Point(5, 792)
  2743. Me.Label410.Name = "Label410"
  2744. Me.Label410.Size = New System.Drawing.Size(151, 16)
  2745. Me.Label410.TabIndex = 1125
  2746. Me.Label410.Text = "減價收受以該工程項目乘以"
  2747. '
  2748. '工程款5_nud
  2749. '
  2750. Me.工程款5_nud.Location = New System.Drawing.Point(536, 416)
  2751. Me.工程款5_nud.Name = "工程款5_nud"
  2752. Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
  2753. Me.工程款5_nud.TabIndex = 1097
  2754. Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2755. Me.工程款5_nud.ThousandsSeparator = True
  2756. Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  2757. '
  2758. 'Label408
  2759. '
  2760. Me.Label408.AutoSize = True
  2761. Me.Label408.ForeColor = System.Drawing.Color.Green
  2762. Me.Label408.Location = New System.Drawing.Point(270, 792)
  2763. Me.Label408.Name = "Label408"
  2764. Me.Label408.Size = New System.Drawing.Size(43, 16)
  2765. Me.Label408.TabIndex = 1126
  2766. Me.Label408.Text = "計價。"
  2767. '
  2768. 'Label377
  2769. '
  2770. Me.Label377.AutoSize = True
  2771. Me.Label377.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2772. Me.Label377.ForeColor = System.Drawing.Color.Blue
  2773. Me.Label377.Location = New System.Drawing.Point(1, 301)
  2774. Me.Label377.Name = "Label377"
  2775. Me.Label377.Size = New System.Drawing.Size(43, 16)
  2776. Me.Label377.TabIndex = 1075
  2777. Me.Label377.Text = "地 址"
  2778. Me.Label377.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2779. '
  2780. 'Label405
  2781. '
  2782. Me.Label405.AutoSize = True
  2783. Me.Label405.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2784. Me.Label405.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2785. Me.Label405.Location = New System.Drawing.Point(432, 278)
  2786. Me.Label405.Name = "Label405"
  2787. Me.Label405.Size = New System.Drawing.Size(43, 16)
  2788. Me.Label405.TabIndex = 1121
  2789. Me.Label405.Text = "負責人"
  2790. Me.Label405.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2791. '
  2792. '工程款4_nud
  2793. '
  2794. Me.工程款4_nud.Location = New System.Drawing.Point(307, 440)
  2795. Me.工程款4_nud.Name = "工程款4_nud"
  2796. Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
  2797. Me.工程款4_nud.TabIndex = 1096
  2798. Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2799. Me.工程款4_nud.ThousandsSeparator = True
  2800. Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  2801. '
  2802. '減價_bt
  2803. '
  2804. Me.減價_bt.Location = New System.Drawing.Point(158, 789)
  2805. Me.減價_bt.Name = "減價_bt"
  2806. Me.減價_bt.Size = New System.Drawing.Size(106, 23)
  2807. Me.減價_bt.TabIndex = 1127
  2808. Me.減價_bt.Text = "60% (sixty) "
  2809. Me.減價_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2810. '
  2811. '頁數_bt
  2812. '
  2813. Me.頁數_bt.Enabled = False
  2814. Me.頁數_bt.Location = New System.Drawing.Point(407, 835)
  2815. Me.頁數_bt.Name = "頁數_bt"
  2816. Me.頁數_bt.Size = New System.Drawing.Size(106, 23)
  2817. Me.頁數_bt.TabIndex = 1133
  2818. Me.頁數_bt.Text = "8 (twelve)"
  2819. Me.頁數_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2820. '
  2821. 'Label409
  2822. '
  2823. Me.Label409.AutoSize = True
  2824. Me.Label409.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2825. Me.Label409.Location = New System.Drawing.Point(4, 812)
  2826. Me.Label409.Name = "Label409"
  2827. Me.Label409.Size = New System.Drawing.Size(154, 21)
  2828. Me.Label409.TabIndex = 1128
  2829. Me.Label409.Text = "第十一條、合約效力"
  2830. Me.Label409.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2831. '
  2832. 'Label399
  2833. '
  2834. Me.Label399.AutoSize = True
  2835. Me.Label399.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2836. Me.Label399.Location = New System.Drawing.Point(2, 341)
  2837. Me.Label399.Name = "Label399"
  2838. Me.Label399.Size = New System.Drawing.Size(186, 21)
  2839. Me.Label399.TabIndex = 1115
  2840. Me.Label399.Text = "第二條、工作範圍和總價"
  2841. Me.Label399.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2842. '
  2843. '負責人_A_cb
  2844. '
  2845. Me.負責人_A_cb.FormattingEnabled = True
  2846. Me.負責人_A_cb.Location = New System.Drawing.Point(478, 118)
  2847. Me.負責人_A_cb.Name = "負責人_A_cb"
  2848. Me.負責人_A_cb.Size = New System.Drawing.Size(206, 24)
  2849. Me.負責人_A_cb.TabIndex = 1120
  2850. '
  2851. '我司地址_tb
  2852. '
  2853. Me.我司地址_tb.Location = New System.Drawing.Point(57, 299)
  2854. Me.我司地址_tb.Multiline = True
  2855. Me.我司地址_tb.Name = "我司地址_tb"
  2856. Me.我司地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2857. Me.我司地址_tb.Size = New System.Drawing.Size(626, 40)
  2858. Me.我司地址_tb.TabIndex = 1076
  2859. Me.我司地址_tb.Text = "BLOK WESEL RT 004 RW 002 NO.88 DESA MEKARWARU KECAMATAN GANTAR KABUPATEN INDRAMAY" &
  2860. "U"
  2861. '
  2862. '工程名稱_英_tb
  2863. '
  2864. Me.工程名稱_英_tb.Location = New System.Drawing.Point(95, 249)
  2865. Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
  2866. Me.工程名稱_英_tb.Size = New System.Drawing.Size(588, 23)
  2867. Me.工程名稱_英_tb.TabIndex = 1078
  2868. Me.工程名稱_英_tb.Text = "JSC #B3 substation high voltage power engineering "
  2869. '
  2870. '工程款3_nud
  2871. '
  2872. Me.工程款3_nud.Location = New System.Drawing.Point(307, 416)
  2873. Me.工程款3_nud.Name = "工程款3_nud"
  2874. Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
  2875. Me.工程款3_nud.TabIndex = 1095
  2876. Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2877. Me.工程款3_nud.ThousandsSeparator = True
  2878. Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
  2879. '
  2880. 'Label404
  2881. '
  2882. Me.Label404.AutoSize = True
  2883. Me.Label404.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2884. Me.Label404.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2885. Me.Label404.Location = New System.Drawing.Point(433, 122)
  2886. Me.Label404.Name = "Label404"
  2887. Me.Label404.Size = New System.Drawing.Size(43, 16)
  2888. Me.Label404.TabIndex = 1119
  2889. Me.Label404.Text = "負責人"
  2890. Me.Label404.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2891. '
  2892. 'Label413
  2893. '
  2894. Me.Label413.AutoSize = True
  2895. Me.Label413.ForeColor = System.Drawing.Color.Green
  2896. Me.Label413.Location = New System.Drawing.Point(267, 837)
  2897. Me.Label413.Name = "Label413"
  2898. Me.Label413.Size = New System.Drawing.Size(133, 16)
  2899. Me.Label413.TabIndex = 1132
  2900. Me.Label413.Text = "的中英文合 約條款共 計"
  2901. '
  2902. 'Label412
  2903. '
  2904. Me.Label412.AutoSize = True
  2905. Me.Label412.ForeColor = System.Drawing.Color.Green
  2906. Me.Label412.Location = New System.Drawing.Point(3, 838)
  2907. Me.Label412.Name = "Label412"
  2908. Me.Label412.Size = New System.Drawing.Size(111, 16)
  2909. Me.Label412.TabIndex = 1130
  2910. Me.Label412.Text = "客戶工程廠區(中文)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  2911. '
  2912. 'Label400
  2913. '
  2914. Me.Label400.AutoSize = True
  2915. Me.Label400.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2916. Me.Label400.Location = New System.Drawing.Point(2, 391)
  2917. Me.Label400.Name = "Label400"
  2918. Me.Label400.Size = New System.Drawing.Size(218, 21)
  2919. Me.Label400.TabIndex = 1116
  2920. Me.Label400.Text = "第三條、合約金額和支付詳情"
  2921. Me.Label400.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2922. '
  2923. '工程款1_nud
  2924. '
  2925. Me.工程款1_nud.Location = New System.Drawing.Point(77, 416)
  2926. Me.工程款1_nud.Name = "工程款1_nud"
  2927. Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
  2928. Me.工程款1_nud.TabIndex = 1093
  2929. Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2930. Me.工程款1_nud.ThousandsSeparator = True
  2931. Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
  2932. '
  2933. 'Label378
  2934. '
  2935. Me.Label378.AutoSize = True
  2936. Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2937. Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2938. Me.Label378.Location = New System.Drawing.Point(1, 252)
  2939. Me.Label378.Name = "Label378"
  2940. Me.Label378.Size = New System.Drawing.Size(87, 16)
  2941. Me.Label378.TabIndex = 1077
  2942. Me.Label378.Text = "工程名稱(英文)"
  2943. Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2944. '
  2945. '廠區_中文_tb
  2946. '
  2947. Me.廠區_中文_tb.Location = New System.Drawing.Point(121, 835)
  2948. Me.廠區_中文_tb.Name = "廠區_中文_tb"
  2949. Me.廠區_中文_tb.Size = New System.Drawing.Size(140, 23)
  2950. Me.廠區_中文_tb.TabIndex = 1131
  2951. Me.廠區_中文_tb.Text = "印尼耐克鞋厂"
  2952. Me.廠區_中文_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2953. '
  2954. '工程款2_nud
  2955. '
  2956. Me.工程款2_nud.Location = New System.Drawing.Point(77, 440)
  2957. Me.工程款2_nud.Name = "工程款2_nud"
  2958. Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
  2959. Me.工程款2_nud.TabIndex = 1094
  2960. Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2961. Me.工程款2_nud.ThousandsSeparator = True
  2962. Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
  2963. '
  2964. 'Label28
  2965. '
  2966. Me.Label28.AutoSize = True
  2967. Me.Label28.Location = New System.Drawing.Point(-2, 103)
  2968. Me.Label28.Name = "Label28"
  2969. Me.Label28.Size = New System.Drawing.Size(687, 16)
  2970. Me.Label28.TabIndex = 1353
  2971. Me.Label28.Text = "_________________________________________________________________________________" &
  2972. "_______________________________________________________"
  2973. '
  2974. 'Label382
  2975. '
  2976. Me.Label382.AutoSize = True
  2977. Me.Label382.Location = New System.Drawing.Point(-2, 351)
  2978. Me.Label382.Name = "Label382"
  2979. Me.Label382.Size = New System.Drawing.Size(687, 16)
  2980. Me.Label382.TabIndex = 1083
  2981. Me.Label382.Text = "_________________________________________________________________________________" &
  2982. "_______________________________________________________"
  2983. '
  2984. '稅額顯示_lb
  2985. '
  2986. Me.稅額顯示_lb.AutoSize = True
  2987. Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
  2988. Me.稅額顯示_lb.Location = New System.Drawing.Point(242, 369)
  2989. Me.稅額顯示_lb.Name = "稅額顯示_lb"
  2990. Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
  2991. Me.稅額顯示_lb.TabIndex = 1084
  2992. Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
  2993. '
  2994. 'CH2
  2995. '
  2996. Me.CH2.AutoSize = True
  2997. Me.CH2.ForeColor = System.Drawing.Color.Green
  2998. Me.CH2.Location = New System.Drawing.Point(471, 368)
  2999. Me.CH2.Name = "CH2"
  3000. Me.CH2.Size = New System.Drawing.Size(111, 20)
  3001. Me.CH2.TabIndex = 1137
  3002. Me.CH2.Text = "工程總價 = Rp. "
  3003. Me.CH2.UseVisualStyleBackColor = True
  3004. '
  3005. 'CH1
  3006. '
  3007. Me.CH1.AutoSize = True
  3008. Me.CH1.ForeColor = System.Drawing.Color.Green
  3009. Me.CH1.Location = New System.Drawing.Point(2, 368)
  3010. Me.CH1.Name = "CH1"
  3011. Me.CH1.Size = New System.Drawing.Size(135, 20)
  3012. Me.CH1.TabIndex = 1136
  3013. Me.CH1.Text = "分項工程報價 = Rp. "
  3014. Me.CH1.UseVisualStyleBackColor = True
  3015. '
  3016. 'Label402
  3017. '
  3018. Me.Label402.AutoSize = True
  3019. Me.Label402.Location = New System.Drawing.Point(-2, 401)
  3020. Me.Label402.Name = "Label402"
  3021. Me.Label402.Size = New System.Drawing.Size(687, 16)
  3022. Me.Label402.TabIndex = 1117
  3023. Me.Label402.Text = "_________________________________________________________________________________" &
  3024. "_______________________________________________________"
  3025. '
  3026. 'Label392
  3027. '
  3028. Me.Label392.AutoSize = True
  3029. Me.Label392.Location = New System.Drawing.Point(-2, 660)
  3030. Me.Label392.Name = "Label392"
  3031. Me.Label392.Size = New System.Drawing.Size(687, 16)
  3032. Me.Label392.TabIndex = 1105
  3033. Me.Label392.Text = "_________________________________________________________________________________" &
  3034. "_______________________________________________________"
  3035. '
  3036. 'Label381
  3037. '
  3038. Me.Label381.AutoSize = True
  3039. Me.Label381.Location = New System.Drawing.Point(-2, 756)
  3040. Me.Label381.Name = "Label381"
  3041. Me.Label381.Size = New System.Drawing.Size(687, 16)
  3042. Me.Label381.TabIndex = 1082
  3043. Me.Label381.Text = "_________________________________________________________________________________" &
  3044. "_______________________________________________________"
  3045. '
  3046. 'Label386
  3047. '
  3048. Me.Label386.AutoSize = True
  3049. Me.Label386.ForeColor = System.Drawing.Color.Green
  3050. Me.Label386.Location = New System.Drawing.Point(457, 418)
  3051. Me.Label386.Name = "Label386"
  3052. Me.Label386.Size = New System.Drawing.Size(79, 16)
  3053. Me.Label386.TabIndex = 1092
  3054. Me.Label386.Text = "第五期工程款"
  3055. '
  3056. 'Label21
  3057. '
  3058. Me.Label21.AutoSize = True
  3059. Me.Label21.ForeColor = System.Drawing.Color.Green
  3060. Me.Label21.Location = New System.Drawing.Point(458, 442)
  3061. Me.Label21.Name = "Label21"
  3062. Me.Label21.Size = New System.Drawing.Size(79, 16)
  3063. Me.Label21.TabIndex = 1138
  3064. Me.Label21.Text = "工程款 總數"
  3065. '
  3066. 'TabControl2
  3067. '
  3068. Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
  3069. Me.TabControl2.Controls.Add(Me.TabPage5)
  3070. Me.TabControl2.Controls.Add(Me.TabPage6)
  3071. Me.TabControl2.Controls.Add(Me.TabPage7)
  3072. Me.TabControl2.Controls.Add(Me.TabPage8)
  3073. Me.TabControl2.Controls.Add(Me.TabPage9)
  3074. Me.TabControl2.Location = New System.Drawing.Point(-1, 469)
  3075. Me.TabControl2.Name = "TabControl2"
  3076. Me.TabControl2.SelectedIndex = 0
  3077. Me.TabControl2.Size = New System.Drawing.Size(690, 187)
  3078. Me.TabControl2.TabIndex = 1142
  3079. '
  3080. 'TabPage5
  3081. '
  3082. Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3083. Me.TabPage5.Controls.Add(Me.第1期_dgv)
  3084. Me.TabPage5.Location = New System.Drawing.Point(4, 28)
  3085. Me.TabPage5.Name = "TabPage5"
  3086. Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
  3087. Me.TabPage5.Size = New System.Drawing.Size(682, 155)
  3088. Me.TabPage5.TabIndex = 0
  3089. Me.TabPage5.Text = "第一期"
  3090. Me.TabPage5.UseVisualStyleBackColor = True
  3091. '
  3092. '第1期_dgv
  3093. '
  3094. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3095. Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  3096. Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3097. Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
  3098. Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3099. Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
  3100. Me.第1期_dgv.Name = "第1期_dgv"
  3101. Me.第1期_dgv.RowHeadersWidth = 5
  3102. Me.第1期_dgv.RowTemplate.Height = 24
  3103. Me.第1期_dgv.Size = New System.Drawing.Size(675, 149)
  3104. Me.第1期_dgv.TabIndex = 1038
  3105. '
  3106. 'TabPage6
  3107. '
  3108. Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3109. Me.TabPage6.Controls.Add(Me.第2期_dgv)
  3110. Me.TabPage6.Location = New System.Drawing.Point(4, 28)
  3111. Me.TabPage6.Name = "TabPage6"
  3112. Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
  3113. Me.TabPage6.Size = New System.Drawing.Size(682, 155)
  3114. Me.TabPage6.TabIndex = 1
  3115. Me.TabPage6.Text = "第二期"
  3116. Me.TabPage6.UseVisualStyleBackColor = True
  3117. '
  3118. '第2期_dgv
  3119. '
  3120. DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3121. Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
  3122. Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3123. Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
  3124. Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3125. Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
  3126. Me.第2期_dgv.Name = "第2期_dgv"
  3127. Me.第2期_dgv.RowHeadersWidth = 5
  3128. Me.第2期_dgv.RowTemplate.Height = 24
  3129. Me.第2期_dgv.Size = New System.Drawing.Size(675, 149)
  3130. Me.第2期_dgv.TabIndex = 1039
  3131. '
  3132. 'TabPage7
  3133. '
  3134. Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3135. Me.TabPage7.Controls.Add(Me.第3期_dgv)
  3136. Me.TabPage7.Location = New System.Drawing.Point(4, 28)
  3137. Me.TabPage7.Name = "TabPage7"
  3138. Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
  3139. Me.TabPage7.Size = New System.Drawing.Size(682, 155)
  3140. Me.TabPage7.TabIndex = 2
  3141. Me.TabPage7.Text = "第三期"
  3142. Me.TabPage7.UseVisualStyleBackColor = True
  3143. '
  3144. '第3期_dgv
  3145. '
  3146. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3147. Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  3148. Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3149. Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
  3150. Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3151. Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
  3152. Me.第3期_dgv.Name = "第3期_dgv"
  3153. Me.第3期_dgv.RowHeadersWidth = 5
  3154. Me.第3期_dgv.RowTemplate.Height = 24
  3155. Me.第3期_dgv.Size = New System.Drawing.Size(675, 149)
  3156. Me.第3期_dgv.TabIndex = 1040
  3157. '
  3158. 'TabPage8
  3159. '
  3160. Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3161. Me.TabPage8.Controls.Add(Me.第4期_dgv)
  3162. Me.TabPage8.Location = New System.Drawing.Point(4, 28)
  3163. Me.TabPage8.Name = "TabPage8"
  3164. Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
  3165. Me.TabPage8.Size = New System.Drawing.Size(682, 155)
  3166. Me.TabPage8.TabIndex = 3
  3167. Me.TabPage8.Text = "第四期"
  3168. Me.TabPage8.UseVisualStyleBackColor = True
  3169. '
  3170. '第4期_dgv
  3171. '
  3172. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3173. Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  3174. Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3175. Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
  3176. Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3177. Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
  3178. Me.第4期_dgv.Name = "第4期_dgv"
  3179. Me.第4期_dgv.RowHeadersWidth = 5
  3180. Me.第4期_dgv.RowTemplate.Height = 24
  3181. Me.第4期_dgv.Size = New System.Drawing.Size(675, 149)
  3182. Me.第4期_dgv.TabIndex = 1041
  3183. '
  3184. 'TabPage9
  3185. '
  3186. Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3187. Me.TabPage9.Controls.Add(Me.第5期_dgv)
  3188. Me.TabPage9.Location = New System.Drawing.Point(4, 28)
  3189. Me.TabPage9.Name = "TabPage9"
  3190. Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
  3191. Me.TabPage9.Size = New System.Drawing.Size(682, 155)
  3192. Me.TabPage9.TabIndex = 4
  3193. Me.TabPage9.Text = "第五期"
  3194. Me.TabPage9.UseVisualStyleBackColor = True
  3195. '
  3196. '第5期_dgv
  3197. '
  3198. DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3199. Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
  3200. Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3201. Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
  3202. Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3203. Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
  3204. Me.第5期_dgv.Name = "第5期_dgv"
  3205. Me.第5期_dgv.RowHeadersWidth = 5
  3206. Me.第5期_dgv.RowTemplate.Height = 24
  3207. Me.第5期_dgv.Size = New System.Drawing.Size(675, 149)
  3208. Me.第5期_dgv.TabIndex = 1042
  3209. '
  3210. 'Label388
  3211. '
  3212. Me.Label388.AutoSize = True
  3213. Me.Label388.ForeColor = System.Drawing.Color.Green
  3214. Me.Label388.Location = New System.Drawing.Point(228, 420)
  3215. Me.Label388.Name = "Label388"
  3216. Me.Label388.Size = New System.Drawing.Size(79, 16)
  3217. Me.Label388.TabIndex = 1090
  3218. Me.Label388.Text = "第三期工程款"
  3219. '
  3220. 'Label387
  3221. '
  3222. Me.Label387.AutoSize = True
  3223. Me.Label387.ForeColor = System.Drawing.Color.Green
  3224. Me.Label387.Location = New System.Drawing.Point(228, 443)
  3225. Me.Label387.Name = "Label387"
  3226. Me.Label387.Size = New System.Drawing.Size(79, 16)
  3227. Me.Label387.TabIndex = 1091
  3228. Me.Label387.Text = "第四期工程款"
  3229. '
  3230. 'Label390
  3231. '
  3232. Me.Label390.AutoSize = True
  3233. Me.Label390.ForeColor = System.Drawing.Color.Green
  3234. Me.Label390.Location = New System.Drawing.Point(-1, 420)
  3235. Me.Label390.Name = "Label390"
  3236. Me.Label390.Size = New System.Drawing.Size(79, 16)
  3237. Me.Label390.TabIndex = 1088
  3238. Me.Label390.Text = "第一期工程款"
  3239. '
  3240. 'Label389
  3241. '
  3242. Me.Label389.AutoSize = True
  3243. Me.Label389.ForeColor = System.Drawing.Color.Green
  3244. Me.Label389.Location = New System.Drawing.Point(-1, 444)
  3245. Me.Label389.Name = "Label389"
  3246. Me.Label389.Size = New System.Drawing.Size(79, 16)
  3247. Me.Label389.TabIndex = 1089
  3248. Me.Label389.Text = "第二期工程款"
  3249. '
  3250. 'Label411
  3251. '
  3252. Me.Label411.AutoSize = True
  3253. Me.Label411.Location = New System.Drawing.Point(-2, 820)
  3254. Me.Label411.Name = "Label411"
  3255. Me.Label411.Size = New System.Drawing.Size(687, 16)
  3256. Me.Label411.TabIndex = 1129
  3257. Me.Label411.Text = "_________________________________________________________________________________" &
  3258. "_______________________________________________________"
  3259. '
  3260. 'Label29
  3261. '
  3262. Me.Label29.AutoSize = True
  3263. Me.Label29.Location = New System.Drawing.Point(676, 853)
  3264. Me.Label29.Name = "Label29"
  3265. Me.Label29.Size = New System.Drawing.Size(10, 16)
  3266. Me.Label29.TabIndex = 1355
  3267. Me.Label29.Text = "."
  3268. '
  3269. 'Label35
  3270. '
  3271. Me.Label35.AutoSize = True
  3272. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3273. Me.Label35.Location = New System.Drawing.Point(38, 3)
  3274. Me.Label35.Name = "Label35"
  3275. Me.Label35.Size = New System.Drawing.Size(220, 16)
  3276. Me.Label35.TabIndex = 1044
  3277. Me.Label35.Text = "乙方 甲方 立約日期 序號 "
  3278. Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3279. '
  3280. 'Label34
  3281. '
  3282. Me.Label34.AutoSize = True
  3283. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3284. Me.Label34.Location = New System.Drawing.Point(257, 2)
  3285. Me.Label34.Name = "Label34"
  3286. Me.Label34.Size = New System.Drawing.Size(55, 16)
  3287. Me.Label34.TabIndex = 1405
  3288. Me.Label34.Text = "工程期數"
  3289. Me.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3290. '
  3291. '預估工資總報價_tb
  3292. '
  3293. Me.預估工資總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3294. Me.預估工資總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3295. Me.預估工資總報價_tb.Location = New System.Drawing.Point(1006, 882)
  3296. Me.預估工資總報價_tb.Name = "預估工資總報價_tb"
  3297. Me.預估工資總報價_tb.Size = New System.Drawing.Size(90, 16)
  3298. Me.預估工資總報價_tb.TabIndex = 1409
  3299. Me.預估工資總報價_tb.Text = "99,999,999,999"
  3300. Me.預估工資總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3301. '
  3302. '預估材料總成本_tb
  3303. '
  3304. Me.預估材料總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3305. Me.預估材料總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3306. Me.預估材料總成本_tb.Location = New System.Drawing.Point(812, 902)
  3307. Me.預估材料總成本_tb.Name = "預估材料總成本_tb"
  3308. Me.預估材料總成本_tb.Size = New System.Drawing.Size(90, 16)
  3309. Me.預估材料總成本_tb.TabIndex = 1408
  3310. Me.預估材料總成本_tb.Text = "99,999,999,999"
  3311. Me.預估材料總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3312. '
  3313. 'Label54
  3314. '
  3315. Me.Label54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3316. Me.Label54.AutoSize = True
  3317. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3318. Me.Label54.ForeColor = System.Drawing.Color.Red
  3319. Me.Label54.Location = New System.Drawing.Point(715, 882)
  3320. Me.Label54.Name = "Label54"
  3321. Me.Label54.Size = New System.Drawing.Size(97, 16)
  3322. Me.Label54.TabIndex = 1677
  3323. Me.Label54.Text = "預估工資總成本 :"
  3324. Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3325. '
  3326. '預估工資總成本_tb
  3327. '
  3328. Me.預估工資總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3329. Me.預估工資總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  3330. Me.預估工資總成本_tb.Location = New System.Drawing.Point(812, 882)
  3331. Me.預估工資總成本_tb.Name = "預估工資總成本_tb"
  3332. Me.預估工資總成本_tb.Size = New System.Drawing.Size(90, 16)
  3333. Me.預估工資總成本_tb.TabIndex = 1407
  3334. Me.預估工資總成本_tb.Text = "99,999,999,999"
  3335. Me.預估工資總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3336. '
  3337. 'Label55
  3338. '
  3339. Me.Label55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3340. Me.Label55.AutoSize = True
  3341. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3342. Me.Label55.ForeColor = System.Drawing.Color.Red
  3343. Me.Label55.Location = New System.Drawing.Point(716, 902)
  3344. Me.Label55.Name = "Label55"
  3345. Me.Label55.Size = New System.Drawing.Size(97, 16)
  3346. Me.Label55.TabIndex = 1679
  3347. Me.Label55.Text = "預估材料總成本 :"
  3348. Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3349. '
  3350. 'Label65
  3351. '
  3352. Me.Label65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3353. Me.Label65.AutoSize = True
  3354. Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3355. Me.Label65.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3356. Me.Label65.Location = New System.Drawing.Point(1101, 883)
  3357. Me.Label65.Name = "Label65"
  3358. Me.Label65.Size = New System.Drawing.Size(103, 16)
  3359. Me.Label65.TabIndex = 1687
  3360. Me.Label65.Text = "利 潤 比 :"
  3361. Me.Label65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3362. '
  3363. 'Label62
  3364. '
  3365. Me.Label62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3366. Me.Label62.AutoSize = True
  3367. Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3368. Me.Label62.ForeColor = System.Drawing.Color.Green
  3369. Me.Label62.Location = New System.Drawing.Point(910, 882)
  3370. Me.Label62.Name = "Label62"
  3371. Me.Label62.Size = New System.Drawing.Size(97, 16)
  3372. Me.Label62.TabIndex = 1682
  3373. Me.Label62.Text = "預估工資總報價 :"
  3374. Me.Label62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3375. '
  3376. 'Label66
  3377. '
  3378. Me.Label66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3379. Me.Label66.AutoSize = True
  3380. Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3381. Me.Label66.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3382. Me.Label66.Location = New System.Drawing.Point(946, 941)
  3383. Me.Label66.Name = "Label66"
  3384. Me.Label66.Size = New System.Drawing.Size(61, 16)
  3385. Me.Label66.TabIndex = 1686
  3386. Me.Label66.Text = "預估利潤 :"
  3387. Me.Label66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3388. '
  3389. 'Label61
  3390. '
  3391. Me.Label61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3392. Me.Label61.AutoSize = True
  3393. Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3394. Me.Label61.ForeColor = System.Drawing.Color.Green
  3395. Me.Label61.Location = New System.Drawing.Point(911, 902)
  3396. Me.Label61.Name = "Label61"
  3397. Me.Label61.Size = New System.Drawing.Size(97, 16)
  3398. Me.Label61.TabIndex = 1683
  3399. Me.Label61.Text = "預估材料總報價 :"
  3400. Me.Label61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3401. '
  3402. '報價總表_dgv
  3403. '
  3404. DataGridViewCellStyle7.BackColor = System.Drawing.Color.White
  3405. Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle7
  3406. Me.報價總表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3407. Or System.Windows.Forms.AnchorStyles.Left) _
  3408. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3409. Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3410. Me.報價總表_dgv.BackgroundColor = System.Drawing.Color.White
  3411. Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3412. Me.報價總表_dgv.Location = New System.Drawing.Point(711, -1)
  3413. Me.報價總表_dgv.Name = "報價總表_dgv"
  3414. Me.報價總表_dgv.RowHeadersWidth = 5
  3415. Me.報價總表_dgv.RowTemplate.Height = 24
  3416. Me.報價總表_dgv.Size = New System.Drawing.Size(552, 766)
  3417. Me.報價總表_dgv.TabIndex = 1354
  3418. '
  3419. 'TabControl3
  3420. '
  3421. Me.TabControl3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  3422. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3423. Me.TabControl3.Appearance = System.Windows.Forms.TabAppearance.Buttons
  3424. Me.TabControl3.Controls.Add(Me.TabPage1)
  3425. Me.TabControl3.Controls.Add(Me.TabPage2)
  3426. Me.TabControl3.Location = New System.Drawing.Point(712, 767)
  3427. Me.TabControl3.Name = "TabControl3"
  3428. Me.TabControl3.SelectedIndex = 0
  3429. Me.TabControl3.Size = New System.Drawing.Size(549, 93)
  3430. Me.TabControl3.TabIndex = 1706
  3431. '
  3432. 'TabPage1
  3433. '
  3434. Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3435. Me.TabPage1.Controls.Add(Me.折價計算_bt)
  3436. Me.TabPage1.Controls.Add(Me.Label83)
  3437. Me.TabPage1.Controls.Add(Me.甲方_cb)
  3438. Me.TabPage1.Controls.Add(Me.未折價前_tb)
  3439. Me.TabPage1.Controls.Add(Me.Label82)
  3440. Me.TabPage1.Controls.Add(Me.歸零位數_nud)
  3441. Me.TabPage1.Controls.Add(Me.Label81)
  3442. Me.TabPage1.Controls.Add(Me.稅後歸零_ch)
  3443. Me.TabPage1.Controls.Add(Me.稅前歸零_ch)
  3444. Me.TabPage1.Controls.Add(Me.Label80)
  3445. Me.TabPage1.Controls.Add(Me.折讓比例_nud)
  3446. Me.TabPage1.Controls.Add(Me.Label79)
  3447. Me.TabPage1.Controls.Add(Me.報價小計_tb)
  3448. Me.TabPage1.Controls.Add(Me.Label39)
  3449. Me.TabPage1.Location = New System.Drawing.Point(4, 28)
  3450. Me.TabPage1.Name = "TabPage1"
  3451. Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
  3452. Me.TabPage1.Size = New System.Drawing.Size(541, 61)
  3453. Me.TabPage1.TabIndex = 0
  3454. Me.TabPage1.Text = "折讓與報價去尾數 / Discounts and quotes rounded off"
  3455. Me.TabPage1.UseVisualStyleBackColor = True
  3456. '
  3457. '折價計算_bt
  3458. '
  3459. Me.折價計算_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.calc1
  3460. Me.折價計算_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3461. Me.折價計算_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3462. Me.折價計算_bt.ForeColor = System.Drawing.Color.Green
  3463. Me.折價計算_bt.Location = New System.Drawing.Point(472, 5)
  3464. Me.折價計算_bt.Name = "折價計算_bt"
  3465. Me.折價計算_bt.Size = New System.Drawing.Size(52, 52)
  3466. Me.折價計算_bt.TabIndex = 1709
  3467. Me.折價計算_bt.UseVisualStyleBackColor = True
  3468. '
  3469. 'Label83
  3470. '
  3471. Me.Label83.AutoSize = True
  3472. Me.Label83.BackColor = System.Drawing.SystemColors.Control
  3473. Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3474. Me.Label83.ForeColor = System.Drawing.Color.Green
  3475. Me.Label83.Location = New System.Drawing.Point(184, 10)
  3476. Me.Label83.Name = "Label83"
  3477. Me.Label83.Size = New System.Drawing.Size(55, 16)
  3478. Me.Label83.TabIndex = 1708
  3479. Me.Label83.Text = "折價參考"
  3480. Me.Label83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3481. '
  3482. '甲方_cb
  3483. '
  3484. Me.甲方_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3485. Me.甲方_cb.ForeColor = System.Drawing.Color.Green
  3486. Me.甲方_cb.FormattingEnabled = True
  3487. Me.甲方_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  3488. Me.甲方_cb.Location = New System.Drawing.Point(240, 6)
  3489. Me.甲方_cb.Name = "甲方_cb"
  3490. Me.甲方_cb.Size = New System.Drawing.Size(70, 24)
  3491. Me.甲方_cb.TabIndex = 1707
  3492. '
  3493. '未折價前_tb
  3494. '
  3495. Me.未折價前_tb.Location = New System.Drawing.Point(64, 7)
  3496. Me.未折價前_tb.Name = "未折價前_tb"
  3497. Me.未折價前_tb.Size = New System.Drawing.Size(110, 23)
  3498. Me.未折價前_tb.TabIndex = 1705
  3499. Me.未折價前_tb.Text = "99,999,999,999"
  3500. Me.未折價前_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3501. '
  3502. 'Label82
  3503. '
  3504. Me.Label82.AutoSize = True
  3505. Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3506. Me.Label82.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3507. Me.Label82.Location = New System.Drawing.Point(7, 10)
  3508. Me.Label82.Name = "Label82"
  3509. Me.Label82.Size = New System.Drawing.Size(55, 16)
  3510. Me.Label82.TabIndex = 1706
  3511. Me.Label82.Text = "未折價前"
  3512. Me.Label82.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3513. '
  3514. '歸零位數_nud
  3515. '
  3516. Me.歸零位數_nud.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3517. Me.歸零位數_nud.Location = New System.Drawing.Point(402, 28)
  3518. Me.歸零位數_nud.Maximum = New Decimal(New Integer() {10, 0, 0, 0})
  3519. Me.歸零位數_nud.Name = "歸零位數_nud"
  3520. Me.歸零位數_nud.Size = New System.Drawing.Size(52, 23)
  3521. Me.歸零位數_nud.TabIndex = 1695
  3522. Me.歸零位數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3523. Me.歸零位數_nud.ThousandsSeparator = True
  3524. '
  3525. 'Label81
  3526. '
  3527. Me.Label81.AutoSize = True
  3528. Me.Label81.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3529. Me.Label81.Location = New System.Drawing.Point(400, 10)
  3530. Me.Label81.Name = "Label81"
  3531. Me.Label81.Size = New System.Drawing.Size(55, 16)
  3532. Me.Label81.TabIndex = 1694
  3533. Me.Label81.Text = "歸零位數"
  3534. '
  3535. '稅後歸零_ch
  3536. '
  3537. Me.稅後歸零_ch.AutoSize = True
  3538. Me.稅後歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3539. Me.稅後歸零_ch.Location = New System.Drawing.Point(323, 34)
  3540. Me.稅後歸零_ch.Name = "稅後歸零_ch"
  3541. Me.稅後歸零_ch.Size = New System.Drawing.Size(74, 20)
  3542. Me.稅後歸零_ch.TabIndex = 1693
  3543. Me.稅後歸零_ch.Text = "稅後歸零"
  3544. Me.稅後歸零_ch.UseVisualStyleBackColor = True
  3545. '
  3546. '稅前歸零_ch
  3547. '
  3548. Me.稅前歸零_ch.AutoSize = True
  3549. Me.稅前歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  3550. Me.稅前歸零_ch.Location = New System.Drawing.Point(323, 8)
  3551. Me.稅前歸零_ch.Name = "稅前歸零_ch"
  3552. Me.稅前歸零_ch.Size = New System.Drawing.Size(74, 20)
  3553. Me.稅前歸零_ch.TabIndex = 1692
  3554. Me.稅前歸零_ch.Text = "稅前歸零"
  3555. Me.稅前歸零_ch.UseVisualStyleBackColor = True
  3556. '
  3557. 'Label80
  3558. '
  3559. Me.Label80.AutoSize = True
  3560. Me.Label80.ForeColor = System.Drawing.Color.Green
  3561. Me.Label80.Location = New System.Drawing.Point(292, 35)
  3562. Me.Label80.Name = "Label80"
  3563. Me.Label80.Size = New System.Drawing.Size(18, 16)
  3564. Me.Label80.TabIndex = 1691
  3565. Me.Label80.Text = "%"
  3566. '
  3567. '折讓比例_nud
  3568. '
  3569. Me.折讓比例_nud.ForeColor = System.Drawing.Color.Green
  3570. Me.折讓比例_nud.Location = New System.Drawing.Point(240, 32)
  3571. Me.折讓比例_nud.Name = "折讓比例_nud"
  3572. Me.折讓比例_nud.Size = New System.Drawing.Size(49, 23)
  3573. Me.折讓比例_nud.TabIndex = 1690
  3574. Me.折讓比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3575. Me.折讓比例_nud.ThousandsSeparator = True
  3576. '
  3577. 'Label79
  3578. '
  3579. Me.Label79.AutoSize = True
  3580. Me.Label79.ForeColor = System.Drawing.Color.Green
  3581. Me.Label79.Location = New System.Drawing.Point(183, 35)
  3582. Me.Label79.Name = "Label79"
  3583. Me.Label79.Size = New System.Drawing.Size(55, 16)
  3584. Me.Label79.TabIndex = 1689
  3585. Me.Label79.Text = "折讓比例"
  3586. '
  3587. '報價小計_tb
  3588. '
  3589. Me.報價小計_tb.Location = New System.Drawing.Point(64, 33)
  3590. Me.報價小計_tb.Name = "報價小計_tb"
  3591. Me.報價小計_tb.Size = New System.Drawing.Size(110, 23)
  3592. Me.報價小計_tb.TabIndex = 1687
  3593. Me.報價小計_tb.Text = "99,999,999,999"
  3594. Me.報價小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3595. '
  3596. 'Label39
  3597. '
  3598. Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3599. Me.Label39.AutoSize = True
  3600. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3601. Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3602. Me.Label39.Location = New System.Drawing.Point(7, 45)
  3603. Me.Label39.Name = "Label39"
  3604. Me.Label39.Size = New System.Drawing.Size(55, 16)
  3605. Me.Label39.TabIndex = 1688
  3606. Me.Label39.Text = "報價小計"
  3607. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3608. '
  3609. 'TabPage2
  3610. '
  3611. Me.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3612. Me.TabPage2.Controls.Add(Me.報價說明_tb)
  3613. Me.TabPage2.Location = New System.Drawing.Point(4, 28)
  3614. Me.TabPage2.Name = "TabPage2"
  3615. Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
  3616. Me.TabPage2.Size = New System.Drawing.Size(541, 61)
  3617. Me.TabPage2.TabIndex = 1
  3618. Me.TabPage2.Text = "報價說明 / Offer descriptions:"
  3619. Me.TabPage2.UseVisualStyleBackColor = True
  3620. '
  3621. '報價說明_tb
  3622. '
  3623. Me.報價說明_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  3624. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3625. Me.報價說明_tb.Location = New System.Drawing.Point(1, 10)
  3626. Me.報價說明_tb.Multiline = True
  3627. Me.報價說明_tb.Name = "報價說明_tb"
  3628. Me.報價說明_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3629. Me.報價說明_tb.Size = New System.Drawing.Size(534, 57)
  3630. Me.報價說明_tb.TabIndex = 1407
  3631. '
  3632. '美金_ch
  3633. '
  3634. Me.美金_ch.AutoSize = True
  3635. Me.美金_ch.BackColor = System.Drawing.SystemColors.Control
  3636. Me.美金_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3637. Me.美金_ch.Location = New System.Drawing.Point(804, 1)
  3638. Me.美金_ch.Name = "美金_ch"
  3639. Me.美金_ch.Size = New System.Drawing.Size(50, 20)
  3640. Me.美金_ch.TabIndex = 1678
  3641. Me.美金_ch.Text = "美金"
  3642. Me.美金_ch.UseVisualStyleBackColor = False
  3643. '
  3644. '發送_bt
  3645. '
  3646. Me.發送_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Sendnow
  3647. Me.發送_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3648. Me.發送_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3649. Me.發送_bt.ForeColor = System.Drawing.Color.Red
  3650. Me.發送_bt.Location = New System.Drawing.Point(752, 1)
  3651. Me.發送_bt.Name = "發送_bt"
  3652. Me.發送_bt.Size = New System.Drawing.Size(40, 40)
  3653. Me.發送_bt.TabIndex = 1677
  3654. Me.發送_bt.UseVisualStyleBackColor = True
  3655. '
  3656. '台幣_ch
  3657. '
  3658. Me.台幣_ch.AutoSize = True
  3659. Me.台幣_ch.BackColor = System.Drawing.SystemColors.Control
  3660. Me.台幣_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3661. Me.台幣_ch.Location = New System.Drawing.Point(804, 21)
  3662. Me.台幣_ch.Name = "台幣_ch"
  3663. Me.台幣_ch.Size = New System.Drawing.Size(50, 20)
  3664. Me.台幣_ch.TabIndex = 1679
  3665. Me.台幣_ch.Text = "台幣"
  3666. Me.台幣_ch.UseVisualStyleBackColor = False
  3667. '
  3668. '工程合約報價明細_tc
  3669. '
  3670. Me.工程合約報價明細_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3671. Me.工程合約報價明細_tc.Controls.Add(Me.詳細資料2_ch)
  3672. Me.工程合約報價明細_tc.Controls.Add(Me.啟用批量選擇_ch)
  3673. Me.工程合約報價明細_tc.Controls.Add(Me.視窗3_pl)
  3674. Me.工程合約報價明細_tc.Controls.Add(Me.視窗1_pl)
  3675. Me.工程合約報價明細_tc.Controls.Add(Me.報價係數_dgv)
  3676. Me.工程合約報價明細_tc.Controls.Add(Me.報價單立約日期_dtp)
  3677. Me.工程合約報價明細_tc.Controls.Add(Me.Label27)
  3678. Me.工程合約報價明細_tc.Controls.Add(Me.Label26)
  3679. Me.工程合約報價明細_tc.Controls.Add(Me.報價單合約編號_tb)
  3680. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_英_tb)
  3681. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_中_tb)
  3682. Me.工程合約報價明細_tc.Controls.Add(Me.Label9)
  3683. Me.工程合約報價明細_tc.Controls.Add(Me.Label8)
  3684. Me.工程合約報價明細_tc.Controls.Add(Me.報價單客戶名稱_cb)
  3685. Me.工程合約報價明細_tc.Controls.Add(Me.Label6)
  3686. Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表_dgv)
  3687. Me.工程合約報價明細_tc.Controls.Add(Me.Panel5)
  3688. Me.工程合約報價明細_tc.Controls.Add(Me.係數範本_tb)
  3689. Me.工程合約報價明細_tc.Controls.Add(Me.編輯係數_bt)
  3690. Me.工程合約報價明細_tc.Controls.Add(Me.規格顯示修改_bt)
  3691. Me.工程合約報價明細_tc.Controls.Add(Me.修改明細表上的材料指定_bt)
  3692. Me.工程合約報價明細_tc.Controls.Add(Me.選擇材料新增到明細表_bt)
  3693. Me.工程合約報價明細_tc.Controls.Add(Me.新增資料2_bt)
  3694. Me.工程合約報價明細_tc.Controls.Add(Me.總表選擇刪除1_bt)
  3695. Me.工程合約報價明細_tc.Controls.Add(Me.明細表編輯_bt)
  3696. Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表存檔_bt)
  3697. Me.工程合約報價明細_tc.Controls.Add(Me.排序2_bt)
  3698. Me.工程合約報價明細_tc.Controls.Add(Me.物料圖1_pb)
  3699. Me.工程合約報價明細_tc.Location = New System.Drawing.Point(4, 28)
  3700. Me.工程合約報價明細_tc.Name = "工程合約報價明細_tc"
  3701. Me.工程合約報價明細_tc.Padding = New System.Windows.Forms.Padding(3)
  3702. Me.工程合約報價明細_tc.Size = New System.Drawing.Size(1413, 1006)
  3703. Me.工程合約報價明細_tc.TabIndex = 0
  3704. Me.工程合約報價明細_tc.Text = "工程合約報價明細"
  3705. Me.工程合約報價明細_tc.UseVisualStyleBackColor = True
  3706. '
  3707. '詳細資料2_ch
  3708. '
  3709. Me.詳細資料2_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3710. Me.詳細資料2_ch.AutoSize = True
  3711. Me.詳細資料2_ch.Location = New System.Drawing.Point(773, 49)
  3712. Me.詳細資料2_ch.Name = "詳細資料2_ch"
  3713. Me.詳細資料2_ch.Size = New System.Drawing.Size(126, 20)
  3714. Me.詳細資料2_ch.TabIndex = 1832
  3715. Me.詳細資料2_ch.Text = "詳細資料 / Rincian"
  3716. Me.詳細資料2_ch.UseVisualStyleBackColor = True
  3717. '
  3718. '啟用批量選擇_ch
  3719. '
  3720. Me.啟用批量選擇_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3721. Me.啟用批量選擇_ch.AutoSize = True
  3722. Me.啟用批量選擇_ch.Location = New System.Drawing.Point(669, 50)
  3723. Me.啟用批量選擇_ch.Name = "啟用批量選擇_ch"
  3724. Me.啟用批量選擇_ch.Size = New System.Drawing.Size(98, 20)
  3725. Me.啟用批量選擇_ch.TabIndex = 1432
  3726. Me.啟用批量選擇_ch.Text = "啟用批量選擇"
  3727. Me.啟用批量選擇_ch.UseVisualStyleBackColor = True
  3728. '
  3729. '視窗3_pl
  3730. '
  3731. Me.視窗3_pl.BackColor = System.Drawing.Color.White
  3732. Me.視窗3_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3733. Me.視窗3_pl.Controls.Add(Me.Panel4)
  3734. Me.視窗3_pl.Controls.Add(Me.Label38)
  3735. Me.視窗3_pl.Controls.Add(Me.CanceL3_bt)
  3736. Me.視窗3_pl.Location = New System.Drawing.Point(825, 175)
  3737. Me.視窗3_pl.Name = "視窗3_pl"
  3738. Me.視窗3_pl.Size = New System.Drawing.Size(550, 485)
  3739. Me.視窗3_pl.TabIndex = 1430
  3740. '
  3741. 'Panel4
  3742. '
  3743. Me.Panel4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3744. Or System.Windows.Forms.AnchorStyles.Left) _
  3745. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3746. Me.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3747. Me.Panel4.Controls.Add(Me.報價係數1_dgv)
  3748. Me.Panel4.Controls.Add(Me.座標1_lb)
  3749. Me.Panel4.Controls.Add(Me.GroupBox4)
  3750. Me.Panel4.Controls.Add(Me.文字資料輸入2_bt)
  3751. Me.Panel4.Controls.Add(Me.Label13)
  3752. Me.Panel4.Controls.Add(Me.選擇項1_tb)
  3753. Me.Panel4.Controls.Add(Me.GroupBox3)
  3754. Me.Panel4.Controls.Add(Me.結果1_tb)
  3755. Me.Panel4.Controls.Add(Me.計算式1_tb)
  3756. Me.Panel4.Controls.Add(Me.數值3_tb)
  3757. Me.Panel4.Controls.Add(Me.數值4_tb)
  3758. Me.Panel4.Controls.Add(Me.Label36)
  3759. Me.Panel4.Location = New System.Drawing.Point(3, 28)
  3760. Me.Panel4.Name = "Panel4"
  3761. Me.Panel4.Size = New System.Drawing.Size(543, 453)
  3762. Me.Panel4.TabIndex = 1367
  3763. '
  3764. '報價係數1_dgv
  3765. '
  3766. Me.報價係數1_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3767. Me.報價係數1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3768. Me.報價係數1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3769. Me.報價係數1_dgv.Location = New System.Drawing.Point(320, 1)
  3770. Me.報價係數1_dgv.Name = "報價係數1_dgv"
  3771. Me.報價係數1_dgv.RowHeadersWidth = 5
  3772. Me.報價係數1_dgv.RowTemplate.Height = 24
  3773. Me.報價係數1_dgv.Size = New System.Drawing.Size(216, 445)
  3774. Me.報價係數1_dgv.TabIndex = 1384
  3775. '
  3776. '座標1_lb
  3777. '
  3778. Me.座標1_lb.AutoSize = True
  3779. Me.座標1_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3780. Me.座標1_lb.ForeColor = System.Drawing.Color.Green
  3781. Me.座標1_lb.Location = New System.Drawing.Point(172, 7)
  3782. Me.座標1_lb.Name = "座標1_lb"
  3783. Me.座標1_lb.Size = New System.Drawing.Size(55, 16)
  3784. Me.座標1_lb.TabIndex = 1378
  3785. Me.座標1_lb.Text = "讀取資料"
  3786. Me.座標1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3787. '
  3788. 'GroupBox4
  3789. '
  3790. Me.GroupBox4.Controls.Add(Me.鍵盤鎖定2_ch)
  3791. Me.GroupBox4.Controls.Add(Me.等於1_bt)
  3792. Me.GroupBox4.Controls.Add(Me.NUD_06)
  3793. Me.GroupBox4.Controls.Add(Me.清除1_bt)
  3794. Me.GroupBox4.Controls.Add(Me.NUD_04)
  3795. Me.GroupBox4.Controls.Add(Me.小數點1_bt)
  3796. Me.GroupBox4.Controls.Add(Me.倒退1_bt)
  3797. Me.GroupBox4.Controls.Add(Me.計算2_ch)
  3798. Me.GroupBox4.Controls.Add(Me.A0_bt)
  3799. Me.GroupBox4.Controls.Add(Me.A9_bt)
  3800. Me.GroupBox4.Controls.Add(Me.NUD_05)
  3801. Me.GroupBox4.Controls.Add(Me.A8_bt)
  3802. Me.GroupBox4.Controls.Add(Me.A7_bt)
  3803. Me.GroupBox4.Controls.Add(Me.A6_bt)
  3804. Me.GroupBox4.Controls.Add(Me.選擇1_lb)
  3805. Me.GroupBox4.Controls.Add(Me.A5_bt)
  3806. Me.GroupBox4.Controls.Add(Me.A4_bt)
  3807. Me.GroupBox4.Controls.Add(Me.A3_bt)
  3808. Me.GroupBox4.Controls.Add(Me.A2_bt)
  3809. Me.GroupBox4.Controls.Add(Me.A1_bt)
  3810. Me.GroupBox4.Controls.Add(Me.除1_bt)
  3811. Me.GroupBox4.Controls.Add(Me.乘1_bt)
  3812. Me.GroupBox4.Controls.Add(Me.減1_bt)
  3813. Me.GroupBox4.Controls.Add(Me.加1_bt)
  3814. Me.GroupBox4.ForeColor = System.Drawing.Color.Green
  3815. Me.GroupBox4.Location = New System.Drawing.Point(3, 193)
  3816. Me.GroupBox4.Name = "GroupBox4"
  3817. Me.GroupBox4.Size = New System.Drawing.Size(315, 257)
  3818. Me.GroupBox4.TabIndex = 1379
  3819. Me.GroupBox4.TabStop = False
  3820. Me.GroupBox4.Text = "數值計算"
  3821. '
  3822. '鍵盤鎖定2_ch
  3823. '
  3824. Me.鍵盤鎖定2_ch.AutoSize = True
  3825. Me.鍵盤鎖定2_ch.Location = New System.Drawing.Point(4, 17)
  3826. Me.鍵盤鎖定2_ch.Name = "鍵盤鎖定2_ch"
  3827. Me.鍵盤鎖定2_ch.Size = New System.Drawing.Size(194, 20)
  3828. Me.鍵盤鎖定2_ch.TabIndex = 1403
  3829. Me.鍵盤鎖定2_ch.Text = "鍵盤鎖定 (用鍵盤F1可快速切換)"
  3830. Me.鍵盤鎖定2_ch.UseVisualStyleBackColor = True
  3831. '
  3832. '等於1_bt
  3833. '
  3834. Me.等於1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3835. Me.等於1_bt.Location = New System.Drawing.Point(246, 161)
  3836. Me.等於1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3837. Me.等於1_bt.Name = "等於1_bt"
  3838. Me.等於1_bt.Size = New System.Drawing.Size(66, 72)
  3839. Me.等於1_bt.TabIndex = 1401
  3840. Me.等於1_bt.Text = "="
  3841. Me.等於1_bt.UseVisualStyleBackColor = True
  3842. '
  3843. 'NUD_06
  3844. '
  3845. Me.NUD_06.Location = New System.Drawing.Point(4, 65)
  3846. Me.NUD_06.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  3847. Me.NUD_06.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  3848. Me.NUD_06.Name = "NUD_06"
  3849. Me.NUD_06.Size = New System.Drawing.Size(307, 23)
  3850. Me.NUD_06.TabIndex = 1092
  3851. Me.NUD_06.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3852. Me.NUD_06.ThousandsSeparator = True
  3853. Me.NUD_06.Value = New Decimal(New Integer() {1410065407, 2, 0, 0})
  3854. '
  3855. '清除1_bt
  3856. '
  3857. Me.清除1_bt.DialogResult = System.Windows.Forms.DialogResult.Cancel
  3858. Me.清除1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3859. Me.清除1_bt.Location = New System.Drawing.Point(118, 197)
  3860. Me.清除1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3861. Me.清除1_bt.Name = "清除1_bt"
  3862. Me.清除1_bt.Size = New System.Drawing.Size(58, 36)
  3863. Me.清除1_bt.TabIndex = 1400
  3864. Me.清除1_bt.Text = "AC"
  3865. Me.清除1_bt.UseVisualStyleBackColor = True
  3866. '
  3867. 'NUD_04
  3868. '
  3869. Me.NUD_04.DecimalPlaces = 2
  3870. Me.NUD_04.Location = New System.Drawing.Point(4, 40)
  3871. Me.NUD_04.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  3872. Me.NUD_04.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  3873. Me.NUD_04.Name = "NUD_04"
  3874. Me.NUD_04.Size = New System.Drawing.Size(132, 23)
  3875. Me.NUD_04.TabIndex = 1087
  3876. Me.NUD_04.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3877. Me.NUD_04.ThousandsSeparator = True
  3878. '
  3879. '小數點1_bt
  3880. '
  3881. Me.小數點1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3882. Me.小數點1_bt.Location = New System.Drawing.Point(60, 197)
  3883. Me.小數點1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3884. Me.小數點1_bt.Name = "小數點1_bt"
  3885. Me.小數點1_bt.Size = New System.Drawing.Size(58, 36)
  3886. Me.小數點1_bt.TabIndex = 1399
  3887. Me.小數點1_bt.Text = "."
  3888. Me.小數點1_bt.UseVisualStyleBackColor = True
  3889. '
  3890. '倒退1_bt
  3891. '
  3892. Me.倒退1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3893. Me.倒退1_bt.Location = New System.Drawing.Point(246, 89)
  3894. Me.倒退1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3895. Me.倒退1_bt.Name = "倒退1_bt"
  3896. Me.倒退1_bt.Size = New System.Drawing.Size(66, 72)
  3897. Me.倒退1_bt.TabIndex = 1398
  3898. Me.倒退1_bt.Text = "➨"
  3899. Me.倒退1_bt.UseVisualStyleBackColor = True
  3900. '
  3901. '計算2_ch
  3902. '
  3903. Me.計算2_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  3904. Me.計算2_ch.ForeColor = System.Drawing.Color.Blue
  3905. Me.計算2_ch.FormattingEnabled = True
  3906. Me.計算2_ch.Items.AddRange(New Object() {"", "+", "-", "X", "/"})
  3907. Me.計算2_ch.Location = New System.Drawing.Point(141, 40)
  3908. Me.計算2_ch.Name = "計算2_ch"
  3909. Me.計算2_ch.Size = New System.Drawing.Size(33, 24)
  3910. Me.計算2_ch.TabIndex = 1089
  3911. '
  3912. 'A0_bt
  3913. '
  3914. Me.A0_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3915. Me.A0_bt.Location = New System.Drawing.Point(3, 197)
  3916. Me.A0_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3917. Me.A0_bt.Name = "A0_bt"
  3918. Me.A0_bt.Size = New System.Drawing.Size(58, 36)
  3919. Me.A0_bt.TabIndex = 1397
  3920. Me.A0_bt.Text = "0"
  3921. Me.A0_bt.UseVisualStyleBackColor = True
  3922. '
  3923. 'A9_bt
  3924. '
  3925. Me.A9_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3926. Me.A9_bt.Location = New System.Drawing.Point(117, 89)
  3927. Me.A9_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3928. Me.A9_bt.Name = "A9_bt"
  3929. Me.A9_bt.Size = New System.Drawing.Size(58, 36)
  3930. Me.A9_bt.TabIndex = 1396
  3931. Me.A9_bt.Text = "9"
  3932. Me.A9_bt.UseVisualStyleBackColor = True
  3933. '
  3934. 'NUD_05
  3935. '
  3936. Me.NUD_05.DecimalPlaces = 2
  3937. Me.NUD_05.Location = New System.Drawing.Point(179, 40)
  3938. Me.NUD_05.Maximum = New Decimal(New Integer() {-559939584, 902409669, 54, 0})
  3939. Me.NUD_05.Minimum = New Decimal(New Integer() {-559939584, 902409669, 54, -2147483648})
  3940. Me.NUD_05.Name = "NUD_05"
  3941. Me.NUD_05.Size = New System.Drawing.Size(132, 23)
  3942. Me.NUD_05.TabIndex = 1090
  3943. Me.NUD_05.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3944. Me.NUD_05.ThousandsSeparator = True
  3945. '
  3946. 'A8_bt
  3947. '
  3948. Me.A8_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3949. Me.A8_bt.Location = New System.Drawing.Point(60, 89)
  3950. Me.A8_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3951. Me.A8_bt.Name = "A8_bt"
  3952. Me.A8_bt.Size = New System.Drawing.Size(58, 36)
  3953. Me.A8_bt.TabIndex = 1395
  3954. Me.A8_bt.Text = "8"
  3955. Me.A8_bt.UseVisualStyleBackColor = True
  3956. '
  3957. 'A7_bt
  3958. '
  3959. Me.A7_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3960. Me.A7_bt.Location = New System.Drawing.Point(3, 89)
  3961. Me.A7_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3962. Me.A7_bt.Name = "A7_bt"
  3963. Me.A7_bt.Size = New System.Drawing.Size(58, 36)
  3964. Me.A7_bt.TabIndex = 1394
  3965. Me.A7_bt.Text = "7"
  3966. Me.A7_bt.UseVisualStyleBackColor = True
  3967. '
  3968. 'A6_bt
  3969. '
  3970. Me.A6_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3971. Me.A6_bt.Location = New System.Drawing.Point(117, 125)
  3972. Me.A6_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3973. Me.A6_bt.Name = "A6_bt"
  3974. Me.A6_bt.Size = New System.Drawing.Size(58, 36)
  3975. Me.A6_bt.TabIndex = 1393
  3976. Me.A6_bt.Text = "6"
  3977. Me.A6_bt.UseVisualStyleBackColor = True
  3978. '
  3979. '選擇1_lb
  3980. '
  3981. Me.選擇1_lb.AutoSize = True
  3982. Me.選擇1_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3983. Me.選擇1_lb.ForeColor = System.Drawing.Color.Red
  3984. Me.選擇1_lb.Location = New System.Drawing.Point(31, 235)
  3985. Me.選擇1_lb.Name = "選擇1_lb"
  3986. Me.選擇1_lb.Size = New System.Drawing.Size(247, 16)
  3987. Me.選擇1_lb.TabIndex = 1373
  3988. Me.選擇1_lb.Text = "在明細表要帶入的位置連點兩下就可帶入結果"
  3989. Me.選擇1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3990. '
  3991. 'A5_bt
  3992. '
  3993. Me.A5_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3994. Me.A5_bt.Location = New System.Drawing.Point(60, 125)
  3995. Me.A5_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3996. Me.A5_bt.Name = "A5_bt"
  3997. Me.A5_bt.Size = New System.Drawing.Size(58, 36)
  3998. Me.A5_bt.TabIndex = 1392
  3999. Me.A5_bt.Text = "5"
  4000. Me.A5_bt.UseVisualStyleBackColor = True
  4001. '
  4002. 'A4_bt
  4003. '
  4004. Me.A4_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4005. Me.A4_bt.Location = New System.Drawing.Point(3, 125)
  4006. Me.A4_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4007. Me.A4_bt.Name = "A4_bt"
  4008. Me.A4_bt.Size = New System.Drawing.Size(58, 36)
  4009. Me.A4_bt.TabIndex = 1391
  4010. Me.A4_bt.Text = "4"
  4011. Me.A4_bt.UseVisualStyleBackColor = True
  4012. '
  4013. 'A3_bt
  4014. '
  4015. Me.A3_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4016. Me.A3_bt.Location = New System.Drawing.Point(117, 161)
  4017. Me.A3_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4018. Me.A3_bt.Name = "A3_bt"
  4019. Me.A3_bt.Size = New System.Drawing.Size(58, 36)
  4020. Me.A3_bt.TabIndex = 1390
  4021. Me.A3_bt.Text = "3"
  4022. Me.A3_bt.UseVisualStyleBackColor = True
  4023. '
  4024. 'A2_bt
  4025. '
  4026. Me.A2_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4027. Me.A2_bt.Location = New System.Drawing.Point(60, 161)
  4028. Me.A2_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4029. Me.A2_bt.Name = "A2_bt"
  4030. Me.A2_bt.Size = New System.Drawing.Size(58, 36)
  4031. Me.A2_bt.TabIndex = 1389
  4032. Me.A2_bt.Text = "2"
  4033. Me.A2_bt.UseVisualStyleBackColor = True
  4034. '
  4035. 'A1_bt
  4036. '
  4037. Me.A1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4038. Me.A1_bt.Location = New System.Drawing.Point(3, 161)
  4039. Me.A1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4040. Me.A1_bt.Name = "A1_bt"
  4041. Me.A1_bt.Size = New System.Drawing.Size(58, 36)
  4042. Me.A1_bt.TabIndex = 1388
  4043. Me.A1_bt.Text = "1"
  4044. Me.A1_bt.UseVisualStyleBackColor = True
  4045. '
  4046. '除1_bt
  4047. '
  4048. Me.除1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4049. Me.除1_bt.Location = New System.Drawing.Point(180, 125)
  4050. Me.除1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4051. Me.除1_bt.Name = "除1_bt"
  4052. Me.除1_bt.Size = New System.Drawing.Size(66, 36)
  4053. Me.除1_bt.TabIndex = 1387
  4054. Me.除1_bt.Text = "/"
  4055. Me.除1_bt.UseVisualStyleBackColor = True
  4056. '
  4057. '乘1_bt
  4058. '
  4059. Me.乘1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4060. Me.乘1_bt.Location = New System.Drawing.Point(180, 89)
  4061. Me.乘1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4062. Me.乘1_bt.Name = "乘1_bt"
  4063. Me.乘1_bt.Size = New System.Drawing.Size(66, 36)
  4064. Me.乘1_bt.TabIndex = 1386
  4065. Me.乘1_bt.Text = "X"
  4066. Me.乘1_bt.UseVisualStyleBackColor = True
  4067. '
  4068. '減1_bt
  4069. '
  4070. Me.減1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4071. Me.減1_bt.Location = New System.Drawing.Point(180, 197)
  4072. Me.減1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4073. Me.減1_bt.Name = "減1_bt"
  4074. Me.減1_bt.Size = New System.Drawing.Size(66, 36)
  4075. Me.減1_bt.TabIndex = 1385
  4076. Me.減1_bt.Text = "-"
  4077. Me.減1_bt.UseVisualStyleBackColor = True
  4078. '
  4079. '加1_bt
  4080. '
  4081. Me.加1_bt.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4082. Me.加1_bt.Location = New System.Drawing.Point(180, 161)
  4083. Me.加1_bt.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4084. Me.加1_bt.Name = "加1_bt"
  4085. Me.加1_bt.Size = New System.Drawing.Size(66, 36)
  4086. Me.加1_bt.TabIndex = 1384
  4087. Me.加1_bt.Text = "+"
  4088. Me.加1_bt.UseVisualStyleBackColor = True
  4089. '
  4090. '文字資料輸入2_bt
  4091. '
  4092. Me.文字資料輸入2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4093. Me.文字資料輸入2_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4094. Me.文字資料輸入2_bt.Location = New System.Drawing.Point(231, 3)
  4095. Me.文字資料輸入2_bt.Name = "文字資料輸入2_bt"
  4096. Me.文字資料輸入2_bt.Size = New System.Drawing.Size(86, 26)
  4097. Me.文字資料輸入2_bt.TabIndex = 1383
  4098. Me.文字資料輸入2_bt.Text = "文字資料輸入"
  4099. Me.文字資料輸入2_bt.UseVisualStyleBackColor = True
  4100. '
  4101. 'Label13
  4102. '
  4103. Me.Label13.AutoSize = True
  4104. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4105. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4106. Me.Label13.Location = New System.Drawing.Point(7, 6)
  4107. Me.Label13.Name = "Label13"
  4108. Me.Label13.Size = New System.Drawing.Size(67, 16)
  4109. Me.Label13.TabIndex = 1382
  4110. Me.Label13.Text = "目前選擇項"
  4111. Me.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4112. '
  4113. '選擇項1_tb
  4114. '
  4115. Me.選擇項1_tb.Enabled = False
  4116. Me.選擇項1_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4117. Me.選擇項1_tb.Location = New System.Drawing.Point(75, 3)
  4118. Me.選擇項1_tb.Name = "選擇項1_tb"
  4119. Me.選擇項1_tb.Size = New System.Drawing.Size(35, 23)
  4120. Me.選擇項1_tb.TabIndex = 1381
  4121. Me.選擇項1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4122. '
  4123. 'GroupBox3
  4124. '
  4125. Me.GroupBox3.Controls.Add(Me.Label14)
  4126. Me.GroupBox3.Controls.Add(Me.合計項1_cb)
  4127. Me.GroupBox3.Controls.Add(Me.單位1_tb)
  4128. Me.GroupBox3.Controls.Add(Me.備註1_tb)
  4129. Me.GroupBox3.Controls.Add(Me.內容1_tb)
  4130. Me.GroupBox3.Controls.Add(Me.數字2_ch)
  4131. Me.GroupBox3.Controls.Add(Me.中文小寫2_ch)
  4132. Me.GroupBox3.Controls.Add(Me.中文大寫2_ch)
  4133. Me.GroupBox3.Controls.Add(Me.ITEM2_cb)
  4134. Me.GroupBox3.Controls.Add(Me.Label18)
  4135. Me.GroupBox3.Controls.Add(Me.Label17)
  4136. Me.GroupBox3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4137. Me.GroupBox3.Location = New System.Drawing.Point(3, 27)
  4138. Me.GroupBox3.Name = "GroupBox3"
  4139. Me.GroupBox3.Size = New System.Drawing.Size(315, 165)
  4140. Me.GroupBox3.TabIndex = 1380
  4141. Me.GroupBox3.TabStop = False
  4142. Me.GroupBox3.Text = "文字輸入"
  4143. '
  4144. 'Label14
  4145. '
  4146. Me.Label14.AutoSize = True
  4147. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4148. Me.Label14.Location = New System.Drawing.Point(7, 139)
  4149. Me.Label14.Name = "Label14"
  4150. Me.Label14.Size = New System.Drawing.Size(43, 16)
  4151. Me.Label14.TabIndex = 1393
  4152. Me.Label14.Text = "合計項"
  4153. Me.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4154. '
  4155. '合計項1_cb
  4156. '
  4157. Me.合計項1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4158. Me.合計項1_cb.ForeColor = System.Drawing.Color.Blue
  4159. Me.合計項1_cb.FormattingEnabled = True
  4160. Me.合計項1_cb.Items.AddRange(New Object() {"", "Total:", "Total(壹):", "Total(貳):", "Total(參):", "Total(肆):", "Total(伍):", "Total(陸):", "Total(柒):", "Total(捌):", "Total(玖):", "Total(拾):"})
  4161. Me.合計項1_cb.Location = New System.Drawing.Point(52, 136)
  4162. Me.合計項1_cb.Name = "合計項1_cb"
  4163. Me.合計項1_cb.Size = New System.Drawing.Size(259, 24)
  4164. Me.合計項1_cb.TabIndex = 1392
  4165. '
  4166. '單位1_tb
  4167. '
  4168. Me.單位1_tb.Location = New System.Drawing.Point(7, 110)
  4169. Me.單位1_tb.Name = "單位1_tb"
  4170. Me.單位1_tb.Size = New System.Drawing.Size(78, 23)
  4171. Me.單位1_tb.TabIndex = 1390
  4172. Me.單位1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4173. '
  4174. '備註1_tb
  4175. '
  4176. Me.備註1_tb.Location = New System.Drawing.Point(88, 95)
  4177. Me.備註1_tb.Multiline = True
  4178. Me.備註1_tb.Name = "備註1_tb"
  4179. Me.備註1_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  4180. Me.備註1_tb.Size = New System.Drawing.Size(223, 39)
  4181. Me.備註1_tb.TabIndex = 1389
  4182. '
  4183. '內容1_tb
  4184. '
  4185. Me.內容1_tb.Location = New System.Drawing.Point(6, 40)
  4186. Me.內容1_tb.Multiline = True
  4187. Me.內容1_tb.Name = "內容1_tb"
  4188. Me.內容1_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  4189. Me.內容1_tb.Size = New System.Drawing.Size(305, 52)
  4190. Me.內容1_tb.TabIndex = 1388
  4191. '
  4192. '數字2_ch
  4193. '
  4194. Me.數字2_ch.AutoSize = True
  4195. Me.數字2_ch.Location = New System.Drawing.Point(263, 17)
  4196. Me.數字2_ch.Name = "數字2_ch"
  4197. Me.數字2_ch.Size = New System.Drawing.Size(50, 20)
  4198. Me.數字2_ch.TabIndex = 1387
  4199. Me.數字2_ch.Text = "數字"
  4200. Me.數字2_ch.UseVisualStyleBackColor = True
  4201. '
  4202. '中文小寫2_ch
  4203. '
  4204. Me.中文小寫2_ch.AutoSize = True
  4205. Me.中文小寫2_ch.Location = New System.Drawing.Point(182, 17)
  4206. Me.中文小寫2_ch.Name = "中文小寫2_ch"
  4207. Me.中文小寫2_ch.Size = New System.Drawing.Size(74, 20)
  4208. Me.中文小寫2_ch.TabIndex = 1386
  4209. Me.中文小寫2_ch.Text = "中文小寫"
  4210. Me.中文小寫2_ch.UseVisualStyleBackColor = True
  4211. '
  4212. '中文大寫2_ch
  4213. '
  4214. Me.中文大寫2_ch.AutoSize = True
  4215. Me.中文大寫2_ch.Checked = True
  4216. Me.中文大寫2_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4217. Me.中文大寫2_ch.Location = New System.Drawing.Point(101, 17)
  4218. Me.中文大寫2_ch.Name = "中文大寫2_ch"
  4219. Me.中文大寫2_ch.Size = New System.Drawing.Size(74, 20)
  4220. Me.中文大寫2_ch.TabIndex = 1385
  4221. Me.中文大寫2_ch.Text = "中文大寫"
  4222. Me.中文大寫2_ch.UseVisualStyleBackColor = True
  4223. '
  4224. 'ITEM2_cb
  4225. '
  4226. Me.ITEM2_cb.ForeColor = System.Drawing.Color.Blue
  4227. Me.ITEM2_cb.FormattingEnabled = True
  4228. Me.ITEM2_cb.Location = New System.Drawing.Point(44, 15)
  4229. Me.ITEM2_cb.Name = "ITEM2_cb"
  4230. Me.ITEM2_cb.Size = New System.Drawing.Size(51, 24)
  4231. Me.ITEM2_cb.TabIndex = 1384
  4232. '
  4233. 'Label18
  4234. '
  4235. Me.Label18.AutoSize = True
  4236. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4237. Me.Label18.Location = New System.Drawing.Point(7, 19)
  4238. Me.Label18.Name = "Label18"
  4239. Me.Label18.Size = New System.Drawing.Size(36, 16)
  4240. Me.Label18.TabIndex = 1383
  4241. Me.Label18.Text = "ITEM"
  4242. Me.Label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4243. '
  4244. 'Label17
  4245. '
  4246. Me.Label17.AutoSize = True
  4247. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4248. Me.Label17.Location = New System.Drawing.Point(7, 95)
  4249. Me.Label17.Name = "Label17"
  4250. Me.Label17.Size = New System.Drawing.Size(36, 16)
  4251. Me.Label17.TabIndex = 1391
  4252. Me.Label17.Text = "UNIT"
  4253. Me.Label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4254. '
  4255. '結果1_tb
  4256. '
  4257. Me.結果1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4258. Me.結果1_tb.Location = New System.Drawing.Point(246, 352)
  4259. Me.結果1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4260. Me.結果1_tb.Name = "結果1_tb"
  4261. Me.結果1_tb.Size = New System.Drawing.Size(234, 23)
  4262. Me.結果1_tb.TabIndex = 1355
  4263. Me.結果1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4264. Me.結果1_tb.Visible = False
  4265. '
  4266. '計算式1_tb
  4267. '
  4268. Me.計算式1_tb.Location = New System.Drawing.Point(91, 352)
  4269. Me.計算式1_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4270. Me.計算式1_tb.Name = "計算式1_tb"
  4271. Me.計算式1_tb.Size = New System.Drawing.Size(63, 23)
  4272. Me.計算式1_tb.TabIndex = 1354
  4273. Me.計算式1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4274. Me.計算式1_tb.Visible = False
  4275. '
  4276. '數值3_tb
  4277. '
  4278. Me.數值3_tb.Location = New System.Drawing.Point(7, 352)
  4279. Me.數值3_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4280. Me.數值3_tb.Name = "數值3_tb"
  4281. Me.數值3_tb.Size = New System.Drawing.Size(80, 23)
  4282. Me.數值3_tb.TabIndex = 1353
  4283. Me.數值3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4284. Me.數值3_tb.Visible = False
  4285. '
  4286. '數值4_tb
  4287. '
  4288. Me.數值4_tb.Location = New System.Drawing.Point(160, 352)
  4289. Me.數值4_tb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4290. Me.數值4_tb.Name = "數值4_tb"
  4291. Me.數值4_tb.Size = New System.Drawing.Size(80, 23)
  4292. Me.數值4_tb.TabIndex = 1352
  4293. Me.數值4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4294. Me.數值4_tb.Visible = False
  4295. '
  4296. 'Label36
  4297. '
  4298. Me.Label36.AutoSize = True
  4299. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4300. Me.Label36.ForeColor = System.Drawing.Color.Green
  4301. Me.Label36.Location = New System.Drawing.Point(111, 7)
  4302. Me.Label36.Name = "Label36"
  4303. Me.Label36.Size = New System.Drawing.Size(64, 16)
  4304. Me.Label36.TabIndex = 1377
  4305. Me.Label36.Text = "目前選擇 : "
  4306. Me.Label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4307. '
  4308. 'Label38
  4309. '
  4310. Me.Label38.AutoSize = True
  4311. Me.Label38.Location = New System.Drawing.Point(5, 7)
  4312. Me.Label38.Name = "Label38"
  4313. Me.Label38.Size = New System.Drawing.Size(67, 16)
  4314. Me.Label38.TabIndex = 1375
  4315. Me.Label38.Text = "明細表編輯"
  4316. '
  4317. 'CanceL3_bt
  4318. '
  4319. Me.CanceL3_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4320. Me.CanceL3_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  4321. Me.CanceL3_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4322. Me.CanceL3_bt.ForeColor = System.Drawing.Color.Black
  4323. Me.CanceL3_bt.Location = New System.Drawing.Point(518, 2)
  4324. Me.CanceL3_bt.Name = "CanceL3_bt"
  4325. Me.CanceL3_bt.Size = New System.Drawing.Size(26, 26)
  4326. Me.CanceL3_bt.TabIndex = 1374
  4327. Me.CanceL3_bt.Text = "X"
  4328. Me.CanceL3_bt.UseVisualStyleBackColor = False
  4329. '
  4330. '視窗1_pl
  4331. '
  4332. Me.視窗1_pl.BackColor = System.Drawing.Color.White
  4333. Me.視窗1_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4334. Me.視窗1_pl.Controls.Add(Me.物料群組_Panel)
  4335. Me.視窗1_pl.Controls.Add(Me.Cancel1_bt)
  4336. Me.視窗1_pl.Controls.Add(Me.合約_lb)
  4337. Me.視窗1_pl.Controls.Add(Me.Label37)
  4338. Me.視窗1_pl.Location = New System.Drawing.Point(135, 293)
  4339. Me.視窗1_pl.Name = "視窗1_pl"
  4340. Me.視窗1_pl.Size = New System.Drawing.Size(395, 90)
  4341. Me.視窗1_pl.TabIndex = 1401
  4342. '
  4343. '物料群組_Panel
  4344. '
  4345. Me.物料群組_Panel.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  4346. Or System.Windows.Forms.AnchorStyles.Left) _
  4347. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4348. Me.物料群組_Panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  4349. Me.物料群組_Panel.Controls.Add(Me.複製係數範本_tb)
  4350. Me.物料群組_Panel.Controls.Add(Me.係數項目新增_bt)
  4351. Me.物料群組_Panel.Controls.Add(Me.係數項目刪除_bt)
  4352. Me.物料群組_Panel.Controls.Add(Me.係數項目修改_bt)
  4353. Me.物料群組_Panel.Controls.Add(Me.係數單位_cb)
  4354. Me.物料群組_Panel.Controls.Add(Me.Label10)
  4355. Me.物料群組_Panel.Controls.Add(Me.Label12)
  4356. Me.物料群組_Panel.Controls.Add(Me.係數項目_cb)
  4357. Me.物料群組_Panel.Controls.Add(Me.Label11)
  4358. Me.物料群組_Panel.Controls.Add(Me.係數_nup)
  4359. Me.物料群組_Panel.Location = New System.Drawing.Point(3, 28)
  4360. Me.物料群組_Panel.Name = "物料群組_Panel"
  4361. Me.物料群組_Panel.Size = New System.Drawing.Size(388, 58)
  4362. Me.物料群組_Panel.TabIndex = 1367
  4363. '
  4364. '複製係數範本_tb
  4365. '
  4366. Me.複製係數範本_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4367. Me.複製係數範本_tb.ForeColor = System.Drawing.Color.Black
  4368. Me.複製係數範本_tb.Location = New System.Drawing.Point(176, 3)
  4369. Me.複製係數範本_tb.Name = "複製係數範本_tb"
  4370. Me.複製係數範本_tb.Size = New System.Drawing.Size(58, 48)
  4371. Me.複製係數範本_tb.TabIndex = 1398
  4372. Me.複製係數範本_tb.Text = "複製範本項目"
  4373. Me.複製係數範本_tb.UseVisualStyleBackColor = True
  4374. '
  4375. '係數項目新增_bt
  4376. '
  4377. Me.係數項目新增_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.add_2
  4378. Me.係數項目新增_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4379. Me.係數項目新增_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4380. Me.係數項目新增_bt.ForeColor = System.Drawing.Color.Blue
  4381. Me.係數項目新增_bt.Location = New System.Drawing.Point(235, 3)
  4382. Me.係數項目新增_bt.Name = "係數項目新增_bt"
  4383. Me.係數項目新增_bt.Size = New System.Drawing.Size(48, 48)
  4384. Me.係數項目新增_bt.TabIndex = 1363
  4385. Me.係數項目新增_bt.UseVisualStyleBackColor = True
  4386. '
  4387. '係數項目刪除_bt
  4388. '
  4389. Me.係數項目刪除_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  4390. Me.係數項目刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4391. Me.係數項目刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4392. Me.係數項目刪除_bt.ForeColor = System.Drawing.Color.Red
  4393. Me.係數項目刪除_bt.Location = New System.Drawing.Point(331, 3)
  4394. Me.係數項目刪除_bt.Name = "係數項目刪除_bt"
  4395. Me.係數項目刪除_bt.Size = New System.Drawing.Size(48, 48)
  4396. Me.係數項目刪除_bt.TabIndex = 1365
  4397. Me.係數項目刪除_bt.UseVisualStyleBackColor = True
  4398. '
  4399. '係數項目修改_bt
  4400. '
  4401. Me.係數項目修改_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  4402. Me.係數項目修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4403. Me.係數項目修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4404. Me.係數項目修改_bt.ForeColor = System.Drawing.Color.DarkGreen
  4405. Me.係數項目修改_bt.Location = New System.Drawing.Point(283, 3)
  4406. Me.係數項目修改_bt.Name = "係數項目修改_bt"
  4407. Me.係數項目修改_bt.Size = New System.Drawing.Size(48, 48)
  4408. Me.係數項目修改_bt.TabIndex = 1364
  4409. Me.係數項目修改_bt.UseVisualStyleBackColor = True
  4410. '
  4411. '係數單位_cb
  4412. '
  4413. Me.係數單位_cb.ForeColor = System.Drawing.Color.Blue
  4414. Me.係數單位_cb.FormattingEnabled = True
  4415. Me.係數單位_cb.Location = New System.Drawing.Point(130, 28)
  4416. Me.係數單位_cb.Name = "係數單位_cb"
  4417. Me.係數單位_cb.Size = New System.Drawing.Size(44, 24)
  4418. Me.係數單位_cb.TabIndex = 1397
  4419. '
  4420. 'Label10
  4421. '
  4422. Me.Label10.AutoSize = True
  4423. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4424. Me.Label10.Location = New System.Drawing.Point(3, 7)
  4425. Me.Label10.Name = "Label10"
  4426. Me.Label10.Size = New System.Drawing.Size(31, 16)
  4427. Me.Label10.TabIndex = 1392
  4428. Me.Label10.Text = "項目"
  4429. Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4430. '
  4431. 'Label12
  4432. '
  4433. Me.Label12.AutoSize = True
  4434. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4435. Me.Label12.Location = New System.Drawing.Point(96, 32)
  4436. Me.Label12.Name = "Label12"
  4437. Me.Label12.Size = New System.Drawing.Size(31, 16)
  4438. Me.Label12.TabIndex = 1396
  4439. Me.Label12.Text = "單位"
  4440. Me.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4441. '
  4442. '係數項目_cb
  4443. '
  4444. Me.係數項目_cb.ForeColor = System.Drawing.Color.Blue
  4445. Me.係數項目_cb.FormattingEnabled = True
  4446. Me.係數項目_cb.Location = New System.Drawing.Point(37, 3)
  4447. Me.係數項目_cb.Name = "係數項目_cb"
  4448. Me.係數項目_cb.Size = New System.Drawing.Size(137, 24)
  4449. Me.係數項目_cb.TabIndex = 1393
  4450. '
  4451. 'Label11
  4452. '
  4453. Me.Label11.AutoSize = True
  4454. Me.Label11.Location = New System.Drawing.Point(3, 32)
  4455. Me.Label11.Name = "Label11"
  4456. Me.Label11.Size = New System.Drawing.Size(31, 16)
  4457. Me.Label11.TabIndex = 1395
  4458. Me.Label11.Text = "係數"
  4459. '
  4460. '係數_nup
  4461. '
  4462. Me.係數_nup.Location = New System.Drawing.Point(37, 29)
  4463. Me.係數_nup.Maximum = New Decimal(New Integer() {10000000, 0, 0, 0})
  4464. Me.係數_nup.Name = "係數_nup"
  4465. Me.係數_nup.Size = New System.Drawing.Size(56, 23)
  4466. Me.係數_nup.TabIndex = 1394
  4467. Me.係數_nup.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4468. Me.係數_nup.ThousandsSeparator = True
  4469. '
  4470. 'Cancel1_bt
  4471. '
  4472. Me.Cancel1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4473. Me.Cancel1_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  4474. Me.Cancel1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4475. Me.Cancel1_bt.ForeColor = System.Drawing.Color.Black
  4476. Me.Cancel1_bt.Location = New System.Drawing.Point(363, 2)
  4477. Me.Cancel1_bt.Name = "Cancel1_bt"
  4478. Me.Cancel1_bt.Size = New System.Drawing.Size(26, 26)
  4479. Me.Cancel1_bt.TabIndex = 1374
  4480. Me.Cancel1_bt.Text = "X"
  4481. Me.Cancel1_bt.UseVisualStyleBackColor = False
  4482. '
  4483. '合約_lb
  4484. '
  4485. Me.合約_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4486. Me.合約_lb.AutoSize = True
  4487. Me.合約_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4488. Me.合約_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4489. Me.合約_lb.Location = New System.Drawing.Point(137, 7)
  4490. Me.合約_lb.Name = "合約_lb"
  4491. Me.合約_lb.Size = New System.Drawing.Size(31, 16)
  4492. Me.合約_lb.TabIndex = 1399
  4493. Me.合約_lb.Text = "合約"
  4494. Me.合約_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4495. '
  4496. 'Label37
  4497. '
  4498. Me.Label37.AutoSize = True
  4499. Me.Label37.Location = New System.Drawing.Point(5, 7)
  4500. Me.Label37.Name = "Label37"
  4501. Me.Label37.Size = New System.Drawing.Size(130, 16)
  4502. Me.Label37.TabIndex = 1375
  4503. Me.Label37.Text = "係數表編輯 目前資料 :"
  4504. '
  4505. '報價係數_dgv
  4506. '
  4507. Me.報價係數_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4508. Me.報價係數_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  4509. Me.報價係數_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  4510. Me.報價係數_dgv.Location = New System.Drawing.Point(1004, 3)
  4511. Me.報價係數_dgv.Name = "報價係數_dgv"
  4512. Me.報價係數_dgv.RowHeadersWidth = 5
  4513. Me.報價係數_dgv.RowTemplate.Height = 24
  4514. Me.報價係數_dgv.Size = New System.Drawing.Size(255, 87)
  4515. Me.報價係數_dgv.TabIndex = 1382
  4516. '
  4517. '報價單立約日期_dtp
  4518. '
  4519. Me.報價單立約日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4520. Me.報價單立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  4521. Me.報價單立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  4522. Me.報價單立約日期_dtp.Location = New System.Drawing.Point(431, 0)
  4523. Me.報價單立約日期_dtp.Name = "報價單立約日期_dtp"
  4524. Me.報價單立約日期_dtp.Size = New System.Drawing.Size(95, 23)
  4525. Me.報價單立約日期_dtp.TabIndex = 1388
  4526. '
  4527. 'Label27
  4528. '
  4529. Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4530. Me.Label27.AutoSize = True
  4531. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4532. Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4533. Me.Label27.Location = New System.Drawing.Point(374, 3)
  4534. Me.Label27.Name = "Label27"
  4535. Me.Label27.Size = New System.Drawing.Size(55, 16)
  4536. Me.Label27.TabIndex = 1387
  4537. Me.Label27.Text = "合約日期"
  4538. Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4539. '
  4540. 'Label26
  4541. '
  4542. Me.Label26.AutoSize = True
  4543. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4544. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4545. Me.Label26.Location = New System.Drawing.Point(6, 3)
  4546. Me.Label26.Name = "Label26"
  4547. Me.Label26.Size = New System.Drawing.Size(55, 16)
  4548. Me.Label26.TabIndex = 1386
  4549. Me.Label26.Text = "合約編號"
  4550. Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4551. '
  4552. '報價單合約編號_tb
  4553. '
  4554. Me.報價單合約編號_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4555. Me.報價單合約編號_tb.Enabled = False
  4556. Me.報價單合約編號_tb.Location = New System.Drawing.Point(62, 3)
  4557. Me.報價單合約編號_tb.Name = "報價單合約編號_tb"
  4558. Me.報價單合約編號_tb.Size = New System.Drawing.Size(163, 16)
  4559. Me.報價單合約編號_tb.TabIndex = 1385
  4560. '
  4561. '報價工程名稱_英_tb
  4562. '
  4563. Me.報價工程名稱_英_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4564. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4565. Me.報價工程名稱_英_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4566. Me.報價工程名稱_英_tb.Enabled = False
  4567. Me.報價工程名稱_英_tb.Location = New System.Drawing.Point(94, 72)
  4568. Me.報價工程名稱_英_tb.Name = "報價工程名稱_英_tb"
  4569. Me.報價工程名稱_英_tb.Size = New System.Drawing.Size(432, 16)
  4570. Me.報價工程名稱_英_tb.TabIndex = 1362
  4571. '
  4572. '報價工程名稱_中_tb
  4573. '
  4574. Me.報價工程名稱_中_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4575. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4576. Me.報價工程名稱_中_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  4577. Me.報價工程名稱_中_tb.Enabled = False
  4578. Me.報價工程名稱_中_tb.Location = New System.Drawing.Point(94, 50)
  4579. Me.報價工程名稱_中_tb.Name = "報價工程名稱_中_tb"
  4580. Me.報價工程名稱_中_tb.Size = New System.Drawing.Size(432, 16)
  4581. Me.報價工程名稱_中_tb.TabIndex = 1361
  4582. '
  4583. 'Label9
  4584. '
  4585. Me.Label9.AutoSize = True
  4586. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4587. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4588. Me.Label9.Location = New System.Drawing.Point(6, 72)
  4589. Me.Label9.Name = "Label9"
  4590. Me.Label9.Size = New System.Drawing.Size(87, 16)
  4591. Me.Label9.TabIndex = 1360
  4592. Me.Label9.Text = "工程名稱(英文)"
  4593. '
  4594. 'Label8
  4595. '
  4596. Me.Label8.AutoSize = True
  4597. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4598. Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4599. Me.Label8.Location = New System.Drawing.Point(6, 49)
  4600. Me.Label8.Name = "Label8"
  4601. Me.Label8.Size = New System.Drawing.Size(87, 16)
  4602. Me.Label8.TabIndex = 1359
  4603. Me.Label8.Text = "工程名稱(中文)"
  4604. '
  4605. '報價單客戶名稱_cb
  4606. '
  4607. Me.報價單客戶名稱_cb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4608. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4609. Me.報價單客戶名稱_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  4610. Me.報價單客戶名稱_cb.Enabled = False
  4611. Me.報價單客戶名稱_cb.FormattingEnabled = True
  4612. Me.報價單客戶名稱_cb.Location = New System.Drawing.Point(62, 23)
  4613. Me.報價單客戶名稱_cb.Name = "報價單客戶名稱_cb"
  4614. Me.報價單客戶名稱_cb.Size = New System.Drawing.Size(464, 24)
  4615. Me.報價單客戶名稱_cb.TabIndex = 1358
  4616. '
  4617. 'Label6
  4618. '
  4619. Me.Label6.AutoSize = True
  4620. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  4621. Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  4622. Me.Label6.Location = New System.Drawing.Point(6, 28)
  4623. Me.Label6.Name = "Label6"
  4624. Me.Label6.Size = New System.Drawing.Size(55, 16)
  4625. Me.Label6.TabIndex = 1357
  4626. Me.Label6.Text = "客戶名稱"
  4627. '
  4628. '報價明細表_dgv
  4629. '
  4630. Me.報價明細表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  4631. Or System.Windows.Forms.AnchorStyles.Left) _
  4632. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4633. Me.報價明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  4634. Me.報價明細表_dgv.BackgroundColor = System.Drawing.Color.White
  4635. Me.報價明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  4636. Me.報價明細表_dgv.Location = New System.Drawing.Point(3, 120)
  4637. Me.報價明細表_dgv.Name = "報價明細表_dgv"
  4638. Me.報價明細表_dgv.RowHeadersWidth = 5
  4639. DataGridViewCellStyle8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4640. DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  4641. Me.報價明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle8
  4642. Me.報價明細表_dgv.RowTemplate.Height = 24
  4643. Me.報價明細表_dgv.Size = New System.Drawing.Size(1406, 881)
  4644. Me.報價明細表_dgv.TabIndex = 1389
  4645. '
  4646. 'Panel5
  4647. '
  4648. Me.Panel5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  4649. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4650. Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4651. Me.Panel5.Controls.Add(Me.Label75)
  4652. Me.Panel5.Controls.Add(Me.Label22)
  4653. Me.Panel5.Controls.Add(Me.Label33)
  4654. Me.Panel5.Controls.Add(Me.工資_ch)
  4655. Me.Panel5.Controls.Add(Me.料號_tb)
  4656. Me.Panel5.Controls.Add(Me.單位2_tb)
  4657. Me.Panel5.Controls.Add(Me.Label32)
  4658. Me.Panel5.Controls.Add(Me.申請數_lb)
  4659. Me.Panel5.Controls.Add(Me.ITEM3_cb)
  4660. Me.Panel5.Controls.Add(Me.申請數_nud)
  4661. Me.Panel5.Controls.Add(Me.利潤表_ch)
  4662. Me.Panel5.Controls.Add(Me.材料_ch)
  4663. Me.Panel5.Location = New System.Drawing.Point(3, 92)
  4664. Me.Panel5.Name = "Panel5"
  4665. Me.Panel5.Size = New System.Drawing.Size(1405, 29)
  4666. Me.Panel5.TabIndex = 1431
  4667. '
  4668. 'Label75
  4669. '
  4670. Me.Label75.AutoSize = True
  4671. Me.Label75.ForeColor = System.Drawing.Color.Red
  4672. Me.Label75.Location = New System.Drawing.Point(778, 5)
  4673. Me.Label75.Name = "Label75"
  4674. Me.Label75.Size = New System.Drawing.Size(285, 16)
  4675. Me.Label75.TabIndex = 1429
  4676. Me.Label75.Text = "請注意 : 表中的 * 與 @ 為系統供自計算所需請勿刪除"
  4677. '
  4678. 'Label22
  4679. '
  4680. Me.Label22.AutoSize = True
  4681. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4682. Me.Label22.Location = New System.Drawing.Point(324, 5)
  4683. Me.Label22.Name = "Label22"
  4684. Me.Label22.Size = New System.Drawing.Size(36, 16)
  4685. Me.Label22.TabIndex = 1421
  4686. Me.Label22.Text = "ITEM"
  4687. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4688. '
  4689. 'Label33
  4690. '
  4691. Me.Label33.AutoSize = True
  4692. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4693. Me.Label33.Location = New System.Drawing.Point(414, 5)
  4694. Me.Label33.Name = "Label33"
  4695. Me.Label33.Size = New System.Drawing.Size(36, 16)
  4696. Me.Label33.TabIndex = 1428
  4697. Me.Label33.Text = "UNIT"
  4698. Me.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  4699. '
  4700. '工資_ch
  4701. '
  4702. Me.工資_ch.AutoSize = True
  4703. Me.工資_ch.Checked = True
  4704. Me.工資_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4705. Me.工資_ch.Location = New System.Drawing.Point(116, 3)
  4706. Me.工資_ch.Name = "工資_ch"
  4707. Me.工資_ch.Size = New System.Drawing.Size(86, 20)
  4708. Me.工資_ch.TabIndex = 1424
  4709. Me.工資_ch.Text = "工資 / GAJI"
  4710. Me.工資_ch.UseVisualStyleBackColor = True
  4711. '
  4712. '料號_tb
  4713. '
  4714. Me.料號_tb.Enabled = False
  4715. Me.料號_tb.Location = New System.Drawing.Point(642, 2)
  4716. Me.料號_tb.Name = "料號_tb"
  4717. Me.料號_tb.Size = New System.Drawing.Size(136, 23)
  4718. Me.料號_tb.TabIndex = 1417
  4719. '
  4720. '單位2_tb
  4721. '
  4722. Me.單位2_tb.Location = New System.Drawing.Point(450, 2)
  4723. Me.單位2_tb.Name = "單位2_tb"
  4724. Me.單位2_tb.Size = New System.Drawing.Size(45, 23)
  4725. Me.單位2_tb.TabIndex = 1427
  4726. Me.單位2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4727. '
  4728. 'Label32
  4729. '
  4730. Me.Label32.AutoSize = True
  4731. Me.Label32.Location = New System.Drawing.Point(607, 5)
  4732. Me.Label32.Name = "Label32"
  4733. Me.Label32.Size = New System.Drawing.Size(31, 16)
  4734. Me.Label32.TabIndex = 1418
  4735. Me.Label32.Text = "料號"
  4736. '
  4737. '申請數_lb
  4738. '
  4739. Me.申請數_lb.AutoSize = True
  4740. Me.申請數_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4741. Me.申請數_lb.Location = New System.Drawing.Point(501, 5)
  4742. Me.申請數_lb.Name = "申請數_lb"
  4743. Me.申請數_lb.Size = New System.Drawing.Size(31, 16)
  4744. Me.申請數_lb.TabIndex = 1419
  4745. Me.申請數_lb.Text = "數量"
  4746. '
  4747. 'ITEM3_cb
  4748. '
  4749. Me.ITEM3_cb.ForeColor = System.Drawing.Color.Blue
  4750. Me.ITEM3_cb.FormattingEnabled = True
  4751. 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"})
  4752. Me.ITEM3_cb.Location = New System.Drawing.Point(361, 1)
  4753. Me.ITEM3_cb.Name = "ITEM3_cb"
  4754. Me.ITEM3_cb.Size = New System.Drawing.Size(51, 24)
  4755. Me.ITEM3_cb.TabIndex = 1422
  4756. '
  4757. '申請數_nud
  4758. '
  4759. Me.申請數_nud.Location = New System.Drawing.Point(534, 2)
  4760. Me.申請數_nud.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
  4761. Me.申請數_nud.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
  4762. Me.申請數_nud.Name = "申請數_nud"
  4763. Me.申請數_nud.Size = New System.Drawing.Size(67, 23)
  4764. Me.申請數_nud.TabIndex = 1420
  4765. Me.申請數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4766. '
  4767. '利潤表_ch
  4768. '
  4769. Me.利潤表_ch.AutoSize = True
  4770. Me.利潤表_ch.Location = New System.Drawing.Point(8, 3)
  4771. Me.利潤表_ch.Name = "利潤表_ch"
  4772. Me.利潤表_ch.Size = New System.Drawing.Size(102, 20)
  4773. Me.利潤表_ch.TabIndex = 1426
  4774. Me.利潤表_ch.Text = "利潤表 / LABA"
  4775. Me.利潤表_ch.UseVisualStyleBackColor = True
  4776. '
  4777. '材料_ch
  4778. '
  4779. Me.材料_ch.AutoSize = True
  4780. Me.材料_ch.Checked = True
  4781. Me.材料_ch.CheckState = System.Windows.Forms.CheckState.Checked
  4782. Me.材料_ch.Location = New System.Drawing.Point(208, 3)
  4783. Me.材料_ch.Name = "材料_ch"
  4784. Me.材料_ch.Size = New System.Drawing.Size(103, 20)
  4785. Me.材料_ch.TabIndex = 1425
  4786. Me.材料_ch.Text = "材料 / BAHAN"
  4787. Me.材料_ch.UseVisualStyleBackColor = True
  4788. '
  4789. '係數範本_tb
  4790. '
  4791. Me.係數範本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4792. Me.係數範本_tb.Location = New System.Drawing.Point(902, 1)
  4793. Me.係數範本_tb.Name = "係數範本_tb"
  4794. Me.係數範本_tb.Size = New System.Drawing.Size(100, 45)
  4795. Me.係數範本_tb.TabIndex = 1391
  4796. Me.係數範本_tb.Text = "係數範本"
  4797. Me.係數範本_tb.UseVisualStyleBackColor = True
  4798. '
  4799. '編輯係數_bt
  4800. '
  4801. Me.編輯係數_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4802. Me.編輯係數_bt.Location = New System.Drawing.Point(902, 46)
  4803. Me.編輯係數_bt.Name = "編輯係數_bt"
  4804. Me.編輯係數_bt.Size = New System.Drawing.Size(100, 45)
  4805. Me.編輯係數_bt.TabIndex = 1400
  4806. Me.編輯係數_bt.Text = "編輯係數"
  4807. Me.編輯係數_bt.UseVisualStyleBackColor = True
  4808. '
  4809. '規格顯示修改_bt
  4810. '
  4811. Me.規格顯示修改_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4812. Me.規格顯示修改_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.list_accept
  4813. Me.規格顯示修改_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4814. Me.規格顯示修改_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4815. Me.規格顯示修改_bt.ForeColor = System.Drawing.Color.DarkGreen
  4816. Me.規格顯示修改_bt.Location = New System.Drawing.Point(527, 46)
  4817. Me.規格顯示修改_bt.Name = "規格顯示修改_bt"
  4818. Me.規格顯示修改_bt.Size = New System.Drawing.Size(45, 45)
  4819. Me.規格顯示修改_bt.TabIndex = 1429
  4820. Me.規格顯示修改_bt.UseVisualStyleBackColor = True
  4821. '
  4822. '修改明細表上的材料指定_bt
  4823. '
  4824. Me.修改明細表上的材料指定_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4825. Me.修改明細表上的材料指定_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping3
  4826. Me.修改明細表上的材料指定_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4827. Me.修改明細表上的材料指定_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4828. Me.修改明細表上的材料指定_bt.ForeColor = System.Drawing.Color.Purple
  4829. Me.修改明細表上的材料指定_bt.Location = New System.Drawing.Point(782, 1)
  4830. Me.修改明細表上的材料指定_bt.Name = "修改明細表上的材料指定_bt"
  4831. Me.修改明細表上的材料指定_bt.Size = New System.Drawing.Size(120, 45)
  4832. Me.修改明細表上的材料指定_bt.TabIndex = 1414
  4833. Me.修改明細表上的材料指定_bt.UseVisualStyleBackColor = True
  4834. '
  4835. '選擇材料新增到明細表_bt
  4836. '
  4837. Me.選擇材料新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4838. Me.選擇材料新增到明細表_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping4
  4839. Me.選擇材料新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4840. Me.選擇材料新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4841. Me.選擇材料新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  4842. Me.選擇材料新增到明細表_bt.Location = New System.Drawing.Point(662, 1)
  4843. Me.選擇材料新增到明細表_bt.Name = "選擇材料新增到明細表_bt"
  4844. Me.選擇材料新增到明細表_bt.Size = New System.Drawing.Size(120, 45)
  4845. Me.選擇材料新增到明細表_bt.TabIndex = 1413
  4846. Me.選擇材料新增到明細表_bt.UseVisualStyleBackColor = True
  4847. '
  4848. '新增資料2_bt
  4849. '
  4850. Me.新增資料2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4851. Me.新增資料2_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.add_2
  4852. Me.新增資料2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4853. Me.新增資料2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4854. Me.新增資料2_bt.ForeColor = System.Drawing.Color.Blue
  4855. Me.新增資料2_bt.Location = New System.Drawing.Point(572, 1)
  4856. Me.新增資料2_bt.Name = "新增資料2_bt"
  4857. Me.新增資料2_bt.Size = New System.Drawing.Size(45, 45)
  4858. Me.新增資料2_bt.TabIndex = 1409
  4859. Me.新增資料2_bt.UseVisualStyleBackColor = True
  4860. '
  4861. '總表選擇刪除1_bt
  4862. '
  4863. Me.總表選擇刪除1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4864. Me.總表選擇刪除1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  4865. Me.總表選擇刪除1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4866. Me.總表選擇刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4867. Me.總表選擇刪除1_bt.ForeColor = System.Drawing.Color.Red
  4868. Me.總表選擇刪除1_bt.Location = New System.Drawing.Point(618, 46)
  4869. Me.總表選擇刪除1_bt.Name = "總表選擇刪除1_bt"
  4870. Me.總表選擇刪除1_bt.Size = New System.Drawing.Size(45, 45)
  4871. Me.總表選擇刪除1_bt.TabIndex = 1411
  4872. Me.總表選擇刪除1_bt.UseVisualStyleBackColor = True
  4873. '
  4874. '明細表編輯_bt
  4875. '
  4876. Me.明細表編輯_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4877. Me.明細表編輯_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Edit_Text
  4878. Me.明細表編輯_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4879. Me.明細表編輯_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4880. Me.明細表編輯_bt.ForeColor = System.Drawing.Color.Green
  4881. Me.明細表編輯_bt.Location = New System.Drawing.Point(617, 1)
  4882. Me.明細表編輯_bt.Name = "明細表編輯_bt"
  4883. Me.明細表編輯_bt.Size = New System.Drawing.Size(45, 45)
  4884. Me.明細表編輯_bt.TabIndex = 1412
  4885. Me.明細表編輯_bt.UseVisualStyleBackColor = True
  4886. '
  4887. '報價明細表存檔_bt
  4888. '
  4889. Me.報價明細表存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4890. Me.報價明細表存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  4891. Me.報價明細表存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4892. Me.報價明細表存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4893. Me.報價明細表存檔_bt.ForeColor = System.Drawing.Color.DarkGreen
  4894. Me.報價明細表存檔_bt.Location = New System.Drawing.Point(572, 46)
  4895. Me.報價明細表存檔_bt.Name = "報價明細表存檔_bt"
  4896. Me.報價明細表存檔_bt.Size = New System.Drawing.Size(45, 45)
  4897. Me.報價明細表存檔_bt.TabIndex = 1410
  4898. Me.報價明細表存檔_bt.UseVisualStyleBackColor = True
  4899. '
  4900. '排序2_bt
  4901. '
  4902. Me.排序2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4903. Me.排序2_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Filter_List
  4904. Me.排序2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4905. Me.排序2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4906. Me.排序2_bt.ForeColor = System.Drawing.Color.Green
  4907. Me.排序2_bt.Location = New System.Drawing.Point(527, 1)
  4908. Me.排序2_bt.Name = "排序2_bt"
  4909. Me.排序2_bt.Size = New System.Drawing.Size(45, 45)
  4910. Me.排序2_bt.TabIndex = 1407
  4911. Me.排序2_bt.UseVisualStyleBackColor = True
  4912. '
  4913. '物料圖1_pb
  4914. '
  4915. Me.物料圖1_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4916. Me.物料圖1_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  4917. Me.物料圖1_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  4918. Me.物料圖1_pb.Location = New System.Drawing.Point(1262, 1)
  4919. Me.物料圖1_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  4920. Me.物料圖1_pb.Name = "物料圖1_pb"
  4921. Me.物料圖1_pb.Size = New System.Drawing.Size(146, 89)
  4922. Me.物料圖1_pb.TabIndex = 1402
  4923. Me.物料圖1_pb.TabStop = False
  4924. '
  4925. '工程合約試算表_tc
  4926. '
  4927. Me.工程合約試算表_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  4928. Me.工程合約試算表_tc.Controls.Add(Me.詳細資料3_ch)
  4929. Me.工程合約試算表_tc.Controls.Add(Me.Label4)
  4930. Me.工程合約試算表_tc.Controls.Add(Me.刪除1_bt)
  4931. Me.工程合約試算表_tc.Controls.Add(Me.係數_nud)
  4932. Me.工程合約試算表_tc.Controls.Add(Me.存檔_bt)
  4933. Me.工程合約試算表_tc.Controls.Add(Me.使用計算機_ch)
  4934. Me.工程合約試算表_tc.Controls.Add(Me.直接輸入_ch)
  4935. Me.工程合約試算表_tc.Controls.Add(Me.材料加入1_bt)
  4936. Me.工程合約試算表_tc.Controls.Add(Me.修改樓層_迴圈_bt)
  4937. Me.工程合約試算表_tc.Controls.Add(Me.新增物件_bt)
  4938. Me.工程合約試算表_tc.Controls.Add(Me.料號_lb)
  4939. Me.工程合約試算表_tc.Controls.Add(Me.樓層_迴路_cb)
  4940. Me.工程合約試算表_tc.Controls.Add(Me.料號1_tb)
  4941. Me.工程合約試算表_tc.Controls.Add(Me.Label3)
  4942. Me.工程合約試算表_tc.Controls.Add(Me.修改試算表名稱_bt)
  4943. Me.工程合約試算表_tc.Controls.Add(Me.新增試算表_bt)
  4944. Me.工程合約試算表_tc.Controls.Add(Me.Label1)
  4945. Me.工程合約試算表_tc.Controls.Add(Me.試算表_cb)
  4946. Me.工程合約試算表_tc.Controls.Add(Me.試算表_dgv)
  4947. Me.工程合約試算表_tc.Controls.Add(Me.物料圖_pb)
  4948. Me.工程合約試算表_tc.Location = New System.Drawing.Point(4, 28)
  4949. Me.工程合約試算表_tc.Name = "工程合約試算表_tc"
  4950. Me.工程合約試算表_tc.Padding = New System.Windows.Forms.Padding(3)
  4951. Me.工程合約試算表_tc.Size = New System.Drawing.Size(1413, 1006)
  4952. Me.工程合約試算表_tc.TabIndex = 1
  4953. Me.工程合約試算表_tc.Text = "工程合約試算表"
  4954. Me.工程合約試算表_tc.UseVisualStyleBackColor = True
  4955. '
  4956. '詳細資料3_ch
  4957. '
  4958. Me.詳細資料3_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4959. Me.詳細資料3_ch.AutoSize = True
  4960. Me.詳細資料3_ch.Location = New System.Drawing.Point(760, 59)
  4961. Me.詳細資料3_ch.Name = "詳細資料3_ch"
  4962. Me.詳細資料3_ch.Size = New System.Drawing.Size(126, 20)
  4963. Me.詳細資料3_ch.TabIndex = 1833
  4964. Me.詳細資料3_ch.Text = "詳細資料 / Rincian"
  4965. Me.詳細資料3_ch.UseVisualStyleBackColor = True
  4966. '
  4967. 'Label4
  4968. '
  4969. Me.Label4.AutoSize = True
  4970. Me.Label4.Location = New System.Drawing.Point(773, 6)
  4971. Me.Label4.Name = "Label4"
  4972. Me.Label4.Size = New System.Drawing.Size(55, 16)
  4973. Me.Label4.TabIndex = 1357
  4974. Me.Label4.Text = "系 數"
  4975. '
  4976. '刪除1_bt
  4977. '
  4978. Me.刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4979. Me.刪除1_bt.ForeColor = System.Drawing.Color.Red
  4980. Me.刪除1_bt.Location = New System.Drawing.Point(711, 30)
  4981. Me.刪除1_bt.Name = "刪除1_bt"
  4982. Me.刪除1_bt.Size = New System.Drawing.Size(175, 25)
  4983. Me.刪除1_bt.TabIndex = 1356
  4984. Me.刪除1_bt.Text = "刪除試算表中選中的資料"
  4985. Me.刪除1_bt.UseVisualStyleBackColor = True
  4986. '
  4987. '係數_nud
  4988. '
  4989. Me.係數_nud.Location = New System.Drawing.Point(835, 3)
  4990. Me.係數_nud.Name = "係數_nud"
  4991. Me.係數_nud.Size = New System.Drawing.Size(49, 23)
  4992. Me.係數_nud.TabIndex = 1355
  4993. '
  4994. '存檔_bt
  4995. '
  4996. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4997. Me.存檔_bt.ForeColor = System.Drawing.Color.Purple
  4998. Me.存檔_bt.Location = New System.Drawing.Point(889, 2)
  4999. Me.存檔_bt.Name = "存檔_bt"
  5000. Me.存檔_bt.Size = New System.Drawing.Size(175, 79)
  5001. Me.存檔_bt.TabIndex = 1354
  5002. Me.存檔_bt.Text = "存檔"
  5003. Me.存檔_bt.UseVisualStyleBackColor = True
  5004. '
  5005. '使用計算機_ch
  5006. '
  5007. Me.使用計算機_ch.AutoSize = True
  5008. Me.使用計算機_ch.Location = New System.Drawing.Point(641, 59)
  5009. Me.使用計算機_ch.Name = "使用計算機_ch"
  5010. Me.使用計算機_ch.Size = New System.Drawing.Size(86, 20)
  5011. Me.使用計算機_ch.TabIndex = 1353
  5012. Me.使用計算機_ch.Text = "使用計算機"
  5013. Me.使用計算機_ch.UseVisualStyleBackColor = True
  5014. '
  5015. '直接輸入_ch
  5016. '
  5017. Me.直接輸入_ch.AutoSize = True
  5018. Me.直接輸入_ch.Location = New System.Drawing.Point(538, 59)
  5019. Me.直接輸入_ch.Name = "直接輸入_ch"
  5020. Me.直接輸入_ch.Size = New System.Drawing.Size(74, 20)
  5021. Me.直接輸入_ch.TabIndex = 1352
  5022. Me.直接輸入_ch.Text = "直接輸入"
  5023. Me.直接輸入_ch.UseVisualStyleBackColor = True
  5024. '
  5025. '材料加入1_bt
  5026. '
  5027. Me.材料加入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5028. Me.材料加入1_bt.ForeColor = System.Drawing.Color.Purple
  5029. Me.材料加入1_bt.Location = New System.Drawing.Point(533, 30)
  5030. Me.材料加入1_bt.Name = "材料加入1_bt"
  5031. Me.材料加入1_bt.Size = New System.Drawing.Size(175, 25)
  5032. Me.材料加入1_bt.TabIndex = 1351
  5033. Me.材料加入1_bt.Text = "選擇材料加入試算表"
  5034. Me.材料加入1_bt.UseVisualStyleBackColor = True
  5035. '
  5036. '修改樓層_迴圈_bt
  5037. '
  5038. Me.修改樓層_迴圈_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5039. Me.修改樓層_迴圈_bt.ForeColor = System.Drawing.Color.Green
  5040. Me.修改樓層_迴圈_bt.Location = New System.Drawing.Point(250, 56)
  5041. Me.修改樓層_迴圈_bt.Name = "修改樓層_迴圈_bt"
  5042. Me.修改樓層_迴圈_bt.Size = New System.Drawing.Size(278, 25)
  5043. Me.修改樓層_迴圈_bt.TabIndex = 1054
  5044. Me.修改樓層_迴圈_bt.Text = "修改樓層/迴路名稱"
  5045. Me.修改樓層_迴圈_bt.UseVisualStyleBackColor = True
  5046. '
  5047. '新增物件_bt
  5048. '
  5049. Me.新增物件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5050. Me.新增物件_bt.ForeColor = System.Drawing.Color.Blue
  5051. Me.新增物件_bt.Location = New System.Drawing.Point(250, 30)
  5052. Me.新增物件_bt.Name = "新增物件_bt"
  5053. Me.新增物件_bt.Size = New System.Drawing.Size(278, 25)
  5054. Me.新增物件_bt.TabIndex = 1053
  5055. Me.新增物件_bt.Text = "新增樓層/迴路"
  5056. Me.新增物件_bt.UseVisualStyleBackColor = True
  5057. '
  5058. '料號_lb
  5059. '
  5060. Me.料號_lb.AutoSize = True
  5061. Me.料號_lb.Location = New System.Drawing.Point(530, 6)
  5062. Me.料號_lb.Name = "料號_lb"
  5063. Me.料號_lb.Size = New System.Drawing.Size(55, 16)
  5064. Me.料號_lb.TabIndex = 1343
  5065. Me.料號_lb.Text = "料 號"
  5066. '
  5067. '樓層_迴路_cb
  5068. '
  5069. Me.樓層_迴路_cb.ForeColor = System.Drawing.Color.Blue
  5070. Me.樓層_迴路_cb.FormattingEnabled = True
  5071. Me.樓層_迴路_cb.Location = New System.Drawing.Point(312, 3)
  5072. Me.樓層_迴路_cb.Name = "樓層_迴路_cb"
  5073. Me.樓層_迴路_cb.Size = New System.Drawing.Size(216, 24)
  5074. Me.樓層_迴路_cb.TabIndex = 1051
  5075. '
  5076. '料號1_tb
  5077. '
  5078. Me.料號1_tb.Location = New System.Drawing.Point(592, 3)
  5079. Me.料號1_tb.Name = "料號1_tb"
  5080. Me.料號1_tb.Size = New System.Drawing.Size(175, 23)
  5081. Me.料號1_tb.TabIndex = 1342
  5082. '
  5083. 'Label3
  5084. '
  5085. Me.Label3.AutoSize = True
  5086. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5087. Me.Label3.Location = New System.Drawing.Point(251, 7)
  5088. Me.Label3.Name = "Label3"
  5089. Me.Label3.Size = New System.Drawing.Size(60, 16)
  5090. Me.Label3.TabIndex = 1050
  5091. Me.Label3.Text = "樓層/迴路"
  5092. Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5093. '
  5094. '修改試算表名稱_bt
  5095. '
  5096. Me.修改試算表名稱_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5097. Me.修改試算表名稱_bt.ForeColor = System.Drawing.Color.Green
  5098. Me.修改試算表名稱_bt.Location = New System.Drawing.Point(3, 56)
  5099. Me.修改試算表名稱_bt.Name = "修改試算表名稱_bt"
  5100. Me.修改試算表名稱_bt.Size = New System.Drawing.Size(246, 25)
  5101. Me.修改試算表名稱_bt.TabIndex = 1049
  5102. Me.修改試算表名稱_bt.Text = "修改試算表名稱"
  5103. Me.修改試算表名稱_bt.UseVisualStyleBackColor = True
  5104. '
  5105. '新增試算表_bt
  5106. '
  5107. Me.新增試算表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5108. Me.新增試算表_bt.ForeColor = System.Drawing.Color.Blue
  5109. Me.新增試算表_bt.Location = New System.Drawing.Point(3, 30)
  5110. Me.新增試算表_bt.Name = "新增試算表_bt"
  5111. Me.新增試算表_bt.Size = New System.Drawing.Size(246, 25)
  5112. Me.新增試算表_bt.TabIndex = 1048
  5113. Me.新增試算表_bt.Text = "新增試算表"
  5114. Me.新增試算表_bt.UseVisualStyleBackColor = True
  5115. '
  5116. 'Label1
  5117. '
  5118. Me.Label1.AutoSize = True
  5119. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5120. Me.Label1.Location = New System.Drawing.Point(2, 7)
  5121. Me.Label1.Name = "Label1"
  5122. Me.Label1.Size = New System.Drawing.Size(67, 16)
  5123. Me.Label1.TabIndex = 1046
  5124. Me.Label1.Text = "選擇試算表"
  5125. Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5126. '
  5127. '試算表_cb
  5128. '
  5129. Me.試算表_cb.ForeColor = System.Drawing.Color.Blue
  5130. Me.試算表_cb.FormattingEnabled = True
  5131. Me.試算表_cb.Location = New System.Drawing.Point(73, 4)
  5132. Me.試算表_cb.Name = "試算表_cb"
  5133. Me.試算表_cb.Size = New System.Drawing.Size(176, 24)
  5134. Me.試算表_cb.TabIndex = 946
  5135. Me.試算表_cb.Text = "試算表1"
  5136. '
  5137. '試算表_dgv
  5138. '
  5139. DataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5140. Me.試算表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle9
  5141. Me.試算表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5142. Or System.Windows.Forms.AnchorStyles.Left) _
  5143. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5144. Me.試算表_dgv.BackgroundColor = System.Drawing.Color.White
  5145. Me.試算表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5146. Me.試算表_dgv.Location = New System.Drawing.Point(2, 84)
  5147. Me.試算表_dgv.Name = "試算表_dgv"
  5148. Me.試算表_dgv.RowHeadersWidth = 5
  5149. DataGridViewCellStyle10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5150. DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5151. Me.試算表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle10
  5152. Me.試算表_dgv.RowTemplate.Height = 24
  5153. Me.試算表_dgv.Size = New System.Drawing.Size(1407, 918)
  5154. Me.試算表_dgv.TabIndex = 1339
  5155. '
  5156. '物料圖_pb
  5157. '
  5158. Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5159. Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  5160. Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  5161. Me.物料圖_pb.Location = New System.Drawing.Point(1253, 1)
  5162. Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  5163. Me.物料圖_pb.Name = "物料圖_pb"
  5164. Me.物料圖_pb.Size = New System.Drawing.Size(155, 82)
  5165. Me.物料圖_pb.TabIndex = 1350
  5166. Me.物料圖_pb.TabStop = False
  5167. '
  5168. '連動編號_tb
  5169. '
  5170. Me.連動編號_tb.Enabled = False
  5171. Me.連動編號_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5172. Me.連動編號_tb.Location = New System.Drawing.Point(367, 208)
  5173. Me.連動編號_tb.Name = "連動編號_tb"
  5174. Me.連動編號_tb.Size = New System.Drawing.Size(106, 23)
  5175. Me.連動編號_tb.TabIndex = 1394
  5176. Me.連動編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5177. '
  5178. 'Label43
  5179. '
  5180. Me.Label43.AutoSize = True
  5181. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5182. Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5183. Me.Label43.Location = New System.Drawing.Point(265, 211)
  5184. Me.Label43.Name = "Label43"
  5185. Me.Label43.Size = New System.Drawing.Size(103, 16)
  5186. Me.Label43.TabIndex = 1395
  5187. Me.Label43.Text = "明細計算連動編號"
  5188. Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5189. '
  5190. 'Panel1
  5191. '
  5192. Me.Panel1.BackColor = System.Drawing.Color.Gainsboro
  5193. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5194. Me.Panel1.Controls.Add(Me.主管_dgv)
  5195. Me.Panel1.Controls.Add(Me.圖庫清單_dgv)
  5196. Me.Panel1.Controls.Add(Me.項目流水_tb)
  5197. Me.Panel1.Controls.Add(Me.選擇項3_tb)
  5198. Me.Panel1.Controls.Add(Me.連動編號_tb)
  5199. Me.Panel1.Controls.Add(Me.PictureBox2)
  5200. Me.Panel1.Controls.Add(Me.PictureBox1)
  5201. Me.Panel1.Controls.Add(Me.選擇項2_tb)
  5202. Me.Panel1.Controls.Add(Me.DGV位置2)
  5203. Me.Panel1.Controls.Add(Me.DGV位置1)
  5204. Me.Panel1.Controls.Add(Me.明細表流水_tb)
  5205. Me.Panel1.Controls.Add(Me.總表流水_tb)
  5206. Me.Panel1.Controls.Add(Me.Y_2_tb)
  5207. Me.Panel1.Controls.Add(Me.Y_3_tb)
  5208. Me.Panel1.Controls.Add(Me.係數合約號_tb)
  5209. Me.Panel1.Controls.Add(Me.Label43)
  5210. Me.Panel1.Controls.Add(Me.係數流水號_tb)
  5211. Me.Panel1.Controls.Add(Me.群組編碼_cb)
  5212. Me.Panel1.Controls.Add(Me.X_2_tb)
  5213. Me.Panel1.Controls.Add(Me.語言_dgv)
  5214. Me.Panel1.Controls.Add(Me.X_3_tb)
  5215. Me.Panel1.Controls.Add(Me.存檔比較_dgv)
  5216. Me.Panel1.Controls.Add(Me.範例文本_dgv)
  5217. Me.Panel1.Controls.Add(Me.群組碼_tb)
  5218. Me.Panel1.Controls.Add(Me.表號_tb)
  5219. Me.Panel1.Controls.Add(Me.表頭_tb)
  5220. Me.Panel1.Controls.Add(Me.試算控制表_dgv)
  5221. Me.Panel1.Location = New System.Drawing.Point(5, 207)
  5222. Me.Panel1.Name = "Panel1"
  5223. Me.Panel1.Size = New System.Drawing.Size(479, 306)
  5224. Me.Panel1.TabIndex = 1398
  5225. '
  5226. '主管_dgv
  5227. '
  5228. DataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
  5229. Me.主管_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle11
  5230. Me.主管_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5231. Me.主管_dgv.BackgroundColor = System.Drawing.Color.White
  5232. Me.主管_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5233. Me.主管_dgv.Location = New System.Drawing.Point(271, 234)
  5234. Me.主管_dgv.Name = "主管_dgv"
  5235. Me.主管_dgv.RowHeadersWidth = 5
  5236. DataGridViewCellStyle12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5237. DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5238. Me.主管_dgv.RowsDefaultCellStyle = DataGridViewCellStyle12
  5239. Me.主管_dgv.RowTemplate.Height = 24
  5240. Me.主管_dgv.Size = New System.Drawing.Size(81, 49)
  5241. Me.主管_dgv.TabIndex = 1806
  5242. '
  5243. '圖庫清單_dgv
  5244. '
  5245. Me.圖庫清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5246. Me.圖庫清單_dgv.Location = New System.Drawing.Point(357, 234)
  5247. Me.圖庫清單_dgv.Name = "圖庫清單_dgv"
  5248. Me.圖庫清單_dgv.RowHeadersWidth = 5
  5249. Me.圖庫清單_dgv.RowTemplate.Height = 24
  5250. Me.圖庫清單_dgv.Size = New System.Drawing.Size(116, 59)
  5251. Me.圖庫清單_dgv.TabIndex = 1805
  5252. '
  5253. '項目流水_tb
  5254. '
  5255. Me.項目流水_tb.Location = New System.Drawing.Point(167, 208)
  5256. Me.項目流水_tb.Name = "項目流水_tb"
  5257. Me.項目流水_tb.Size = New System.Drawing.Size(94, 23)
  5258. Me.項目流水_tb.TabIndex = 1435
  5259. '
  5260. '選擇項3_tb
  5261. '
  5262. Me.選擇項3_tb.Enabled = False
  5263. Me.選擇項3_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5264. Me.選擇項3_tb.Location = New System.Drawing.Point(3, 208)
  5265. Me.選擇項3_tb.Name = "選擇項3_tb"
  5266. Me.選擇項3_tb.Size = New System.Drawing.Size(50, 23)
  5267. Me.選擇項3_tb.TabIndex = 1433
  5268. Me.選擇項3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5269. '
  5270. 'PictureBox2
  5271. '
  5272. Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5273. Me.PictureBox2.Image = Global.HX_PGS_ERP_SYS.My.Resources.Resources.PGSLOGO01
  5274. Me.PictureBox2.Location = New System.Drawing.Point(3, 144)
  5275. Me.PictureBox2.Name = "PictureBox2"
  5276. Me.PictureBox2.Size = New System.Drawing.Size(471, 61)
  5277. Me.PictureBox2.TabIndex = 1432
  5278. Me.PictureBox2.TabStop = False
  5279. '
  5280. 'PictureBox1
  5281. '
  5282. Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5283. Me.PictureBox1.Image = Global.HX_PGS_ERP_SYS.My.Resources.Resources.HXLOGO01
  5284. Me.PictureBox1.Location = New System.Drawing.Point(3, 81)
  5285. Me.PictureBox1.Name = "PictureBox1"
  5286. Me.PictureBox1.Size = New System.Drawing.Size(471, 61)
  5287. Me.PictureBox1.TabIndex = 1431
  5288. Me.PictureBox1.TabStop = False
  5289. '
  5290. '選擇項2_tb
  5291. '
  5292. Me.選擇項2_tb.Enabled = False
  5293. Me.選擇項2_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5294. Me.選擇項2_tb.Location = New System.Drawing.Point(271, 53)
  5295. Me.選擇項2_tb.Name = "選擇項2_tb"
  5296. Me.選擇項2_tb.Size = New System.Drawing.Size(50, 23)
  5297. Me.選擇項2_tb.TabIndex = 1430
  5298. Me.選擇項2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5299. '
  5300. 'DGV位置2
  5301. '
  5302. Me.DGV位置2.Location = New System.Drawing.Point(230, 54)
  5303. Me.DGV位置2.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  5304. Me.DGV位置2.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  5305. Me.DGV位置2.Name = "DGV位置2"
  5306. Me.DGV位置2.Size = New System.Drawing.Size(40, 23)
  5307. Me.DGV位置2.TabIndex = 1355
  5308. Me.DGV位置2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5309. Me.DGV位置2.ThousandsSeparator = True
  5310. '
  5311. 'DGV位置1
  5312. '
  5313. Me.DGV位置1.Location = New System.Drawing.Point(188, 54)
  5314. Me.DGV位置1.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  5315. Me.DGV位置1.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  5316. Me.DGV位置1.Name = "DGV位置1"
  5317. Me.DGV位置1.Size = New System.Drawing.Size(40, 23)
  5318. Me.DGV位置1.TabIndex = 1354
  5319. Me.DGV位置1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5320. Me.DGV位置1.ThousandsSeparator = True
  5321. '
  5322. '明細表流水_tb
  5323. '
  5324. Me.明細表流水_tb.Location = New System.Drawing.Point(136, 54)
  5325. Me.明細表流水_tb.Name = "明細表流水_tb"
  5326. Me.明細表流水_tb.Size = New System.Drawing.Size(50, 23)
  5327. Me.明細表流水_tb.TabIndex = 1353
  5328. '
  5329. '總表流水_tb
  5330. '
  5331. Me.總表流水_tb.Location = New System.Drawing.Point(86, 54)
  5332. Me.總表流水_tb.Name = "總表流水_tb"
  5333. Me.總表流水_tb.Size = New System.Drawing.Size(50, 23)
  5334. Me.總表流水_tb.TabIndex = 1352
  5335. '
  5336. 'Y_3_tb
  5337. '
  5338. Me.Y_3_tb.Enabled = False
  5339. Me.Y_3_tb.Location = New System.Drawing.Point(92, 208)
  5340. Me.Y_3_tb.Name = "Y_3_tb"
  5341. Me.Y_3_tb.Size = New System.Drawing.Size(35, 23)
  5342. Me.Y_3_tb.TabIndex = 1375
  5343. Me.Y_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5344. '
  5345. '係數合約號_tb
  5346. '
  5347. Me.係數合約號_tb.Location = New System.Drawing.Point(271, 28)
  5348. Me.係數合約號_tb.Name = "係數合約號_tb"
  5349. Me.係數合約號_tb.Size = New System.Drawing.Size(50, 23)
  5350. Me.係數合約號_tb.TabIndex = 1351
  5351. '
  5352. '係數流水號_tb
  5353. '
  5354. Me.係數流水號_tb.Location = New System.Drawing.Point(271, 2)
  5355. Me.係數流水號_tb.Name = "係數流水號_tb"
  5356. Me.係數流水號_tb.Size = New System.Drawing.Size(50, 23)
  5357. Me.係數流水號_tb.TabIndex = 1350
  5358. '
  5359. '群組編碼_cb
  5360. '
  5361. Me.群組編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  5362. Me.群組編碼_cb.FormattingEnabled = True
  5363. Me.群組編碼_cb.Items.AddRange(New Object() {"2019"})
  5364. Me.群組編碼_cb.Location = New System.Drawing.Point(3, 3)
  5365. Me.群組編碼_cb.Name = "群組編碼_cb"
  5366. Me.群組編碼_cb.Size = New System.Drawing.Size(81, 24)
  5367. Me.群組編碼_cb.TabIndex = 1340
  5368. '
  5369. '語言_dgv
  5370. '
  5371. Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5372. Me.語言_dgv.Location = New System.Drawing.Point(3, 29)
  5373. Me.語言_dgv.Name = "語言_dgv"
  5374. Me.語言_dgv.RowHeadersWidth = 5
  5375. Me.語言_dgv.RowTemplate.Height = 24
  5376. Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
  5377. Me.語言_dgv.TabIndex = 1345
  5378. '
  5379. 'X_3_tb
  5380. '
  5381. Me.X_3_tb.Enabled = False
  5382. Me.X_3_tb.Location = New System.Drawing.Point(55, 208)
  5383. Me.X_3_tb.Name = "X_3_tb"
  5384. Me.X_3_tb.Size = New System.Drawing.Size(35, 23)
  5385. Me.X_3_tb.TabIndex = 1374
  5386. Me.X_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  5387. '
  5388. '存檔比較_dgv
  5389. '
  5390. DataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  5391. Me.存檔比較_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle13
  5392. Me.存檔比較_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5393. Me.存檔比較_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5394. Me.存檔比較_dgv.Location = New System.Drawing.Point(400, 4)
  5395. Me.存檔比較_dgv.Name = "存檔比較_dgv"
  5396. Me.存檔比較_dgv.RowHeadersWidth = 5
  5397. Me.存檔比較_dgv.RowTemplate.Height = 24
  5398. Me.存檔比較_dgv.Size = New System.Drawing.Size(74, 72)
  5399. Me.存檔比較_dgv.TabIndex = 1149
  5400. '
  5401. '範例文本_dgv
  5402. '
  5403. DataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  5404. Me.範例文本_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle14
  5405. Me.範例文本_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5406. Me.範例文本_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5407. Me.範例文本_dgv.Location = New System.Drawing.Point(188, 2)
  5408. Me.範例文本_dgv.Name = "範例文本_dgv"
  5409. Me.範例文本_dgv.RowHeadersWidth = 5
  5410. Me.範例文本_dgv.RowTemplate.Height = 24
  5411. Me.範例文本_dgv.Size = New System.Drawing.Size(81, 49)
  5412. Me.範例文本_dgv.TabIndex = 1146
  5413. '
  5414. '群組碼_tb
  5415. '
  5416. Me.群組碼_tb.Location = New System.Drawing.Point(86, 4)
  5417. Me.群組碼_tb.Name = "群組碼_tb"
  5418. Me.群組碼_tb.Size = New System.Drawing.Size(102, 23)
  5419. Me.群組碼_tb.TabIndex = 1349
  5420. '
  5421. '表號_tb
  5422. '
  5423. Me.表號_tb.Location = New System.Drawing.Point(86, 29)
  5424. Me.表號_tb.Name = "表號_tb"
  5425. Me.表號_tb.Size = New System.Drawing.Size(50, 23)
  5426. Me.表號_tb.TabIndex = 1047
  5427. '
  5428. '表頭_tb
  5429. '
  5430. Me.表頭_tb.Location = New System.Drawing.Point(136, 29)
  5431. Me.表頭_tb.Name = "表頭_tb"
  5432. Me.表頭_tb.Size = New System.Drawing.Size(50, 23)
  5433. Me.表頭_tb.TabIndex = 1052
  5434. '
  5435. '試算控制表_dgv
  5436. '
  5437. DataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5438. Me.試算控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle15
  5439. Me.試算控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5440. Me.試算控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5441. Me.試算控制表_dgv.Location = New System.Drawing.Point(323, 4)
  5442. Me.試算控制表_dgv.Name = "試算控制表_dgv"
  5443. Me.試算控制表_dgv.RowHeadersWidth = 5
  5444. DataGridViewCellStyle16.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5445. DataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5446. Me.試算控制表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle16
  5447. Me.試算控制表_dgv.RowTemplate.Height = 24
  5448. Me.試算控制表_dgv.Size = New System.Drawing.Size(74, 72)
  5449. Me.試算控制表_dgv.TabIndex = 1340
  5450. '
  5451. '空間1
  5452. '
  5453. Me.空間1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5454. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5455. Me.空間1.BackColor = System.Drawing.Color.White
  5456. Me.空間1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5457. Me.空間1.Controls.Add(Me.BOM_p)
  5458. Me.空間1.Controls.Add(Me.合約_p)
  5459. Me.空間1.Controls.Add(Me.物料_p)
  5460. Me.空間1.Location = New System.Drawing.Point(2, 0)
  5461. Me.空間1.Name = "空間1"
  5462. Me.空間1.Size = New System.Drawing.Size(490, 1040)
  5463. Me.空間1.TabIndex = 1414
  5464. '
  5465. 'BOM_p
  5466. '
  5467. Me.BOM_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5468. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5469. Me.BOM_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5470. Me.BOM_p.Controls.Add(Me.詳細資料1_ch)
  5471. Me.BOM_p.Controls.Add(Me.Label73)
  5472. Me.BOM_p.Controls.Add(Me.BOM新增到明細表_bt)
  5473. Me.BOM_p.Controls.Add(Me.中文小寫3_ch)
  5474. Me.BOM_p.Controls.Add(Me.Label52)
  5475. Me.BOM_p.Controls.Add(Me.Label51)
  5476. Me.BOM_p.Controls.Add(Me.主項目_tb)
  5477. Me.BOM_p.Controls.Add(Me.BOM表明細_dgv)
  5478. Me.BOM_p.Controls.Add(Me.中文大寫3_ch)
  5479. Me.BOM_p.Controls.Add(Me.ITEM4_cb)
  5480. Me.BOM_p.Controls.Add(Me.Panel1)
  5481. Me.BOM_p.Controls.Add(Me.BOM表控制_dgv)
  5482. Me.BOM_p.Location = New System.Drawing.Point(-1, -1)
  5483. Me.BOM_p.Name = "BOM_p"
  5484. Me.BOM_p.Size = New System.Drawing.Size(490, 1040)
  5485. Me.BOM_p.TabIndex = 1404
  5486. '
  5487. '詳細資料1_ch
  5488. '
  5489. Me.詳細資料1_ch.AutoSize = True
  5490. Me.詳細資料1_ch.Location = New System.Drawing.Point(356, 52)
  5491. Me.詳細資料1_ch.Name = "詳細資料1_ch"
  5492. Me.詳細資料1_ch.Size = New System.Drawing.Size(126, 20)
  5493. Me.詳細資料1_ch.TabIndex = 1832
  5494. Me.詳細資料1_ch.Text = "詳細資料 / Rincian"
  5495. Me.詳細資料1_ch.UseVisualStyleBackColor = True
  5496. '
  5497. 'Label73
  5498. '
  5499. Me.Label73.AutoSize = True
  5500. Me.Label73.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5501. Me.Label73.Location = New System.Drawing.Point(3, 54)
  5502. Me.Label73.Name = "Label73"
  5503. Me.Label73.Size = New System.Drawing.Size(215, 16)
  5504. Me.Label73.TabIndex = 1823
  5505. Me.Label73.Text = "PS : BOM表會插入在明細表選擇列下方"
  5506. '
  5507. 'BOM新增到明細表_bt
  5508. '
  5509. Me.BOM新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5510. Me.BOM新增到明細表_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping2
  5511. Me.BOM新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5512. Me.BOM新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5513. Me.BOM新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  5514. Me.BOM新增到明細表_bt.Location = New System.Drawing.Point(353, 1)
  5515. Me.BOM新增到明細表_bt.Name = "BOM新增到明細表_bt"
  5516. Me.BOM新增到明細表_bt.Size = New System.Drawing.Size(129, 49)
  5517. Me.BOM新增到明細表_bt.TabIndex = 1822
  5518. Me.BOM新增到明細表_bt.UseVisualStyleBackColor = True
  5519. '
  5520. '中文小寫3_ch
  5521. '
  5522. Me.中文小寫3_ch.AutoSize = True
  5523. Me.中文小寫3_ch.Location = New System.Drawing.Point(181, 4)
  5524. Me.中文小寫3_ch.Name = "中文小寫3_ch"
  5525. Me.中文小寫3_ch.Size = New System.Drawing.Size(74, 20)
  5526. Me.中文小寫3_ch.TabIndex = 1821
  5527. Me.中文小寫3_ch.Text = "中文小寫"
  5528. Me.中文小寫3_ch.UseVisualStyleBackColor = True
  5529. '
  5530. 'Label52
  5531. '
  5532. Me.Label52.AutoSize = True
  5533. Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5534. Me.Label52.Location = New System.Drawing.Point(6, 6)
  5535. Me.Label52.Name = "Label52"
  5536. Me.Label52.Size = New System.Drawing.Size(36, 16)
  5537. Me.Label52.TabIndex = 1818
  5538. Me.Label52.Text = "ITEM"
  5539. Me.Label52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5540. '
  5541. 'Label51
  5542. '
  5543. Me.Label51.AutoSize = True
  5544. Me.Label51.Location = New System.Drawing.Point(9, 31)
  5545. Me.Label51.Name = "Label51"
  5546. Me.Label51.Size = New System.Drawing.Size(31, 16)
  5547. Me.Label51.TabIndex = 1817
  5548. Me.Label51.Text = "項目"
  5549. '
  5550. '主項目_tb
  5551. '
  5552. Me.主項目_tb.Location = New System.Drawing.Point(43, 27)
  5553. Me.主項目_tb.Name = "主項目_tb"
  5554. Me.主項目_tb.Size = New System.Drawing.Size(306, 23)
  5555. Me.主項目_tb.TabIndex = 1816
  5556. '
  5557. 'BOM表明細_dgv
  5558. '
  5559. DataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5560. Me.BOM表明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17
  5561. Me.BOM表明細_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5562. Me.BOM表明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5563. Me.BOM表明細_dgv.BackgroundColor = System.Drawing.Color.White
  5564. Me.BOM表明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5565. Me.BOM表明細_dgv.Location = New System.Drawing.Point(-1, 568)
  5566. Me.BOM表明細_dgv.Name = "BOM表明細_dgv"
  5567. Me.BOM表明細_dgv.RowHeadersWidth = 5
  5568. DataGridViewCellStyle18.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5569. DataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5570. Me.BOM表明細_dgv.RowsDefaultCellStyle = DataGridViewCellStyle18
  5571. Me.BOM表明細_dgv.RowTemplate.Height = 24
  5572. Me.BOM表明細_dgv.Size = New System.Drawing.Size(490, 471)
  5573. Me.BOM表明細_dgv.TabIndex = 1342
  5574. '
  5575. '中文大寫3_ch
  5576. '
  5577. Me.中文大寫3_ch.AutoSize = True
  5578. Me.中文大寫3_ch.Checked = True
  5579. Me.中文大寫3_ch.CheckState = System.Windows.Forms.CheckState.Checked
  5580. Me.中文大寫3_ch.Location = New System.Drawing.Point(100, 4)
  5581. Me.中文大寫3_ch.Name = "中文大寫3_ch"
  5582. Me.中文大寫3_ch.Size = New System.Drawing.Size(74, 20)
  5583. Me.中文大寫3_ch.TabIndex = 1820
  5584. Me.中文大寫3_ch.Text = "中文大寫"
  5585. Me.中文大寫3_ch.UseVisualStyleBackColor = True
  5586. '
  5587. 'ITEM4_cb
  5588. '
  5589. Me.ITEM4_cb.ForeColor = System.Drawing.Color.Blue
  5590. Me.ITEM4_cb.FormattingEnabled = True
  5591. Me.ITEM4_cb.Location = New System.Drawing.Point(43, 2)
  5592. Me.ITEM4_cb.Name = "ITEM4_cb"
  5593. Me.ITEM4_cb.Size = New System.Drawing.Size(51, 24)
  5594. Me.ITEM4_cb.TabIndex = 1819
  5595. '
  5596. 'BOM表控制_dgv
  5597. '
  5598. DataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5599. Me.BOM表控制_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle19
  5600. Me.BOM表控制_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5601. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5602. Me.BOM表控制_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5603. Me.BOM表控制_dgv.BackgroundColor = System.Drawing.Color.White
  5604. Me.BOM表控制_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5605. Me.BOM表控制_dgv.Location = New System.Drawing.Point(-1, 73)
  5606. Me.BOM表控制_dgv.Name = "BOM表控制_dgv"
  5607. Me.BOM表控制_dgv.RowHeadersWidth = 5
  5608. DataGridViewCellStyle20.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5609. DataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5610. Me.BOM表控制_dgv.RowsDefaultCellStyle = DataGridViewCellStyle20
  5611. Me.BOM表控制_dgv.RowTemplate.Height = 24
  5612. Me.BOM表控制_dgv.Size = New System.Drawing.Size(490, 496)
  5613. Me.BOM表控制_dgv.TabIndex = 1341
  5614. '
  5615. '合約_p
  5616. '
  5617. Me.合約_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5618. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5619. Me.合約_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5620. Me.合約_p.Controls.Add(Me.全部取消_bt)
  5621. Me.合約_p.Controls.Add(Me.全部選擇_bt)
  5622. Me.合約_p.Controls.Add(Me.詳細資料_ch)
  5623. Me.合約_p.Controls.Add(Me.Label77)
  5624. Me.合約_p.Controls.Add(Me.合約編號2_cb)
  5625. Me.合約_p.Controls.Add(Me.合約編號_1_tb)
  5626. Me.合約_p.Controls.Add(Me.Label78)
  5627. Me.合約_p.Controls.Add(Me.關鍵字搜尋1_tb)
  5628. Me.合約_p.Controls.Add(Me.查詢1_bt)
  5629. Me.合約_p.Controls.Add(Me.選取資料新增到明細表_bt)
  5630. Me.合約_p.Controls.Add(Me.報價明細表2_dgv)
  5631. Me.合約_p.Controls.Add(Me.合約1_dgv)
  5632. Me.合約_p.Controls.Add(Me.Label74)
  5633. Me.合約_p.Location = New System.Drawing.Point(-1, -1)
  5634. Me.合約_p.Name = "合約_p"
  5635. Me.合約_p.Size = New System.Drawing.Size(490, 1040)
  5636. Me.合約_p.TabIndex = 1420
  5637. '
  5638. '全部取消_bt
  5639. '
  5640. Me.全部取消_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5641. Me.全部取消_bt.ForeColor = System.Drawing.Color.Olive
  5642. Me.全部取消_bt.Location = New System.Drawing.Point(169, 487)
  5643. Me.全部取消_bt.Name = "全部取消_bt"
  5644. Me.全部取消_bt.Size = New System.Drawing.Size(185, 25)
  5645. Me.全部取消_bt.TabIndex = 1833
  5646. Me.全部取消_bt.Text = "全部取消 / Batalkan Semuanya"
  5647. Me.全部取消_bt.UseVisualStyleBackColor = True
  5648. '
  5649. '全部選擇_bt
  5650. '
  5651. Me.全部選擇_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5652. Me.全部選擇_bt.ForeColor = System.Drawing.Color.Olive
  5653. Me.全部選擇_bt.Location = New System.Drawing.Point(169, 462)
  5654. Me.全部選擇_bt.Name = "全部選擇_bt"
  5655. Me.全部選擇_bt.Size = New System.Drawing.Size(185, 25)
  5656. Me.全部選擇_bt.TabIndex = 1832
  5657. Me.全部選擇_bt.Text = "全部選擇 / Semua Pilihan"
  5658. Me.全部選擇_bt.UseVisualStyleBackColor = True
  5659. '
  5660. '詳細資料_ch
  5661. '
  5662. Me.詳細資料_ch.AutoSize = True
  5663. Me.詳細資料_ch.Location = New System.Drawing.Point(3, 463)
  5664. Me.詳細資料_ch.Name = "詳細資料_ch"
  5665. Me.詳細資料_ch.Size = New System.Drawing.Size(126, 20)
  5666. Me.詳細資料_ch.TabIndex = 1831
  5667. Me.詳細資料_ch.Text = "詳細資料 / Rincian"
  5668. Me.詳細資料_ch.UseVisualStyleBackColor = True
  5669. '
  5670. 'Label77
  5671. '
  5672. Me.Label77.AutoSize = True
  5673. Me.Label77.BackColor = System.Drawing.SystemColors.Control
  5674. Me.Label77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5675. Me.Label77.Location = New System.Drawing.Point(177, 5)
  5676. Me.Label77.Name = "Label77"
  5677. Me.Label77.Size = New System.Drawing.Size(31, 16)
  5678. Me.Label77.TabIndex = 1830
  5679. Me.Label77.Text = "甲方"
  5680. Me.Label77.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5681. '
  5682. '合約編號2_cb
  5683. '
  5684. Me.合約編號2_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  5685. Me.合約編號2_cb.ForeColor = System.Drawing.Color.Blue
  5686. Me.合約編號2_cb.FormattingEnabled = True
  5687. Me.合約編號2_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  5688. Me.合約編號2_cb.Location = New System.Drawing.Point(214, 1)
  5689. Me.合約編號2_cb.Name = "合約編號2_cb"
  5690. Me.合約編號2_cb.Size = New System.Drawing.Size(100, 24)
  5691. Me.合約編號2_cb.TabIndex = 1829
  5692. '
  5693. '合約編號_1_tb
  5694. '
  5695. Me.合約編號_1_tb.Enabled = False
  5696. Me.合約編號_1_tb.Location = New System.Drawing.Point(320, 2)
  5697. Me.合約編號_1_tb.Name = "合約編號_1_tb"
  5698. Me.合約編號_1_tb.Size = New System.Drawing.Size(135, 23)
  5699. Me.合約編號_1_tb.TabIndex = 1827
  5700. '
  5701. 'Label78
  5702. '
  5703. Me.Label78.AutoSize = True
  5704. Me.Label78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5705. Me.Label78.Location = New System.Drawing.Point(6, 4)
  5706. Me.Label78.Name = "Label78"
  5707. Me.Label78.Size = New System.Drawing.Size(31, 16)
  5708. Me.Label78.TabIndex = 1825
  5709. Me.Label78.Text = "搜尋"
  5710. Me.Label78.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5711. '
  5712. '關鍵字搜尋1_tb
  5713. '
  5714. Me.關鍵字搜尋1_tb.Location = New System.Drawing.Point(43, 2)
  5715. Me.關鍵字搜尋1_tb.Name = "關鍵字搜尋1_tb"
  5716. Me.關鍵字搜尋1_tb.Size = New System.Drawing.Size(100, 23)
  5717. Me.關鍵字搜尋1_tb.TabIndex = 1824
  5718. '
  5719. '查詢1_bt
  5720. '
  5721. Me.查詢1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.下載
  5722. Me.查詢1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5723. Me.查詢1_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5724. Me.查詢1_bt.Location = New System.Drawing.Point(145, 1)
  5725. Me.查詢1_bt.Name = "查詢1_bt"
  5726. Me.查詢1_bt.Size = New System.Drawing.Size(26, 26)
  5727. Me.查詢1_bt.TabIndex = 1828
  5728. Me.查詢1_bt.UseVisualStyleBackColor = True
  5729. '
  5730. '選取資料新增到明細表_bt
  5731. '
  5732. Me.選取資料新增到明細表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5733. Me.選取資料新增到明細表_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping2
  5734. Me.選取資料新增到明細表_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  5735. Me.選取資料新增到明細表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5736. Me.選取資料新增到明細表_bt.ForeColor = System.Drawing.Color.Purple
  5737. Me.選取資料新增到明細表_bt.Location = New System.Drawing.Point(357, 462)
  5738. Me.選取資料新增到明細表_bt.Name = "選取資料新增到明細表_bt"
  5739. Me.選取資料新增到明細表_bt.Size = New System.Drawing.Size(129, 49)
  5740. Me.選取資料新增到明細表_bt.TabIndex = 1822
  5741. Me.選取資料新增到明細表_bt.UseVisualStyleBackColor = True
  5742. '
  5743. '報價明細表2_dgv
  5744. '
  5745. Me.報價明細表2_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5746. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5747. Me.報價明細表2_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5748. Me.報價明細表2_dgv.BackgroundColor = System.Drawing.Color.White
  5749. Me.報價明細表2_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5750. Me.報價明細表2_dgv.Location = New System.Drawing.Point(-1, 514)
  5751. Me.報價明細表2_dgv.Name = "報價明細表2_dgv"
  5752. Me.報價明細表2_dgv.RowHeadersWidth = 5
  5753. DataGridViewCellStyle21.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5754. DataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5755. Me.報價明細表2_dgv.RowsDefaultCellStyle = DataGridViewCellStyle21
  5756. Me.報價明細表2_dgv.RowTemplate.Height = 24
  5757. Me.報價明細表2_dgv.Size = New System.Drawing.Size(490, 525)
  5758. Me.報價明細表2_dgv.TabIndex = 1342
  5759. '
  5760. '合約1_dgv
  5761. '
  5762. DataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5763. Me.合約1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle22
  5764. Me.合約1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5765. Me.合約1_dgv.BackgroundColor = System.Drawing.Color.White
  5766. Me.合約1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5767. Me.合約1_dgv.Location = New System.Drawing.Point(-1, 27)
  5768. Me.合約1_dgv.Name = "合約1_dgv"
  5769. Me.合約1_dgv.RowHeadersWidth = 5
  5770. DataGridViewCellStyle23.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5771. DataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5772. Me.合約1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle23
  5773. Me.合約1_dgv.RowTemplate.Height = 24
  5774. Me.合約1_dgv.Size = New System.Drawing.Size(490, 434)
  5775. Me.合約1_dgv.TabIndex = 1341
  5776. '
  5777. 'Label74
  5778. '
  5779. Me.Label74.AutoSize = True
  5780. Me.Label74.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5781. Me.Label74.Location = New System.Drawing.Point(6, 482)
  5782. Me.Label74.Name = "Label74"
  5783. Me.Label74.Size = New System.Drawing.Size(155, 32)
  5784. Me.Label74.TabIndex = 1823
  5785. Me.Label74.Text = "PS : BOM表會插入在明細表" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 選擇列下方"
  5786. '
  5787. '物料_p
  5788. '
  5789. Me.物料_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5790. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5791. Me.物料_p.BackColor = System.Drawing.Color.White
  5792. Me.物料_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5793. Me.物料_p.Controls.Add(Me.帶上歷史單價_ch)
  5794. Me.物料_p.Controls.Add(Me.群組編碼_lb)
  5795. Me.物料_p.Controls.Add(Me.Label50)
  5796. Me.物料_p.Controls.Add(Me.歷史單價_tb)
  5797. Me.物料_p.Controls.Add(Me.Label49)
  5798. Me.物料_p.Controls.Add(Me.物料規格_dgv)
  5799. Me.物料_p.Controls.Add(Me.最後採購日_tb)
  5800. Me.物料_p.Controls.Add(Me.大間距_ch)
  5801. Me.物料_p.Controls.Add(Me.新群組1_cb)
  5802. Me.物料_p.Controls.Add(Me.搜尋_bt)
  5803. Me.物料_p.Controls.Add(Me.中間距_ch)
  5804. Me.物料_p.Controls.Add(Me.小間距_ch)
  5805. Me.物料_p.Controls.Add(Me.物料清單_dgv)
  5806. Me.物料_p.Location = New System.Drawing.Point(-1, -1)
  5807. Me.物料_p.Name = "物料_p"
  5808. Me.物料_p.Size = New System.Drawing.Size(490, 1040)
  5809. Me.物料_p.TabIndex = 1675
  5810. '
  5811. '帶上歷史單價_ch
  5812. '
  5813. Me.帶上歷史單價_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5814. Me.帶上歷史單價_ch.AutoSize = True
  5815. Me.帶上歷史單價_ch.Checked = True
  5816. Me.帶上歷史單價_ch.CheckState = System.Windows.Forms.CheckState.Checked
  5817. Me.帶上歷史單價_ch.Location = New System.Drawing.Point(359, 641)
  5818. Me.帶上歷史單價_ch.Name = "帶上歷史單價_ch"
  5819. Me.帶上歷史單價_ch.Size = New System.Drawing.Size(98, 20)
  5820. Me.帶上歷史單價_ch.TabIndex = 1403
  5821. Me.帶上歷史單價_ch.Text = "帶上歷史單價"
  5822. Me.帶上歷史單價_ch.UseVisualStyleBackColor = True
  5823. '
  5824. '群組編碼_lb
  5825. '
  5826. Me.群組編碼_lb.AutoSize = True
  5827. Me.群組編碼_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5828. Me.群組編碼_lb.Location = New System.Drawing.Point(3, 5)
  5829. Me.群組編碼_lb.Name = "群組編碼_lb"
  5830. Me.群組編碼_lb.Size = New System.Drawing.Size(64, 16)
  5831. Me.群組編碼_lb.TabIndex = 1341
  5832. Me.群組編碼_lb.Text = "群 組 編 碼"
  5833. Me.群組編碼_lb.TextAlign = System.Drawing.ContentAlignment.TopRight
  5834. '
  5835. 'Label50
  5836. '
  5837. Me.Label50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5838. Me.Label50.AutoSize = True
  5839. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5840. Me.Label50.Location = New System.Drawing.Point(188, 642)
  5841. Me.Label50.Name = "Label50"
  5842. Me.Label50.Size = New System.Drawing.Size(55, 16)
  5843. Me.Label50.TabIndex = 1402
  5844. Me.Label50.Text = "歷史單價"
  5845. Me.Label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5846. '
  5847. '歷史單價_tb
  5848. '
  5849. Me.歷史單價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5850. Me.歷史單價_tb.Location = New System.Drawing.Point(245, 639)
  5851. Me.歷史單價_tb.Name = "歷史單價_tb"
  5852. Me.歷史單價_tb.Size = New System.Drawing.Size(104, 23)
  5853. Me.歷史單價_tb.TabIndex = 1401
  5854. '
  5855. 'Label49
  5856. '
  5857. Me.Label49.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5858. Me.Label49.AutoSize = True
  5859. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5860. Me.Label49.Location = New System.Drawing.Point(9, 642)
  5861. Me.Label49.Name = "Label49"
  5862. Me.Label49.Size = New System.Drawing.Size(67, 16)
  5863. Me.Label49.TabIndex = 1400
  5864. Me.Label49.Text = "最後採購日"
  5865. Me.Label49.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  5866. '
  5867. '物料規格_dgv
  5868. '
  5869. DataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  5870. Me.物料規格_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle24
  5871. Me.物料規格_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  5872. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5873. Me.物料規格_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5874. Me.物料規格_dgv.BackgroundColor = System.Drawing.Color.White
  5875. Me.物料規格_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5876. Me.物料規格_dgv.Location = New System.Drawing.Point(-1, 664)
  5877. Me.物料規格_dgv.Name = "物料規格_dgv"
  5878. Me.物料規格_dgv.RowHeadersWidth = 5
  5879. DataGridViewCellStyle25.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5880. DataGridViewCellStyle25.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5881. Me.物料規格_dgv.RowsDefaultCellStyle = DataGridViewCellStyle25
  5882. Me.物料規格_dgv.RowTemplate.Height = 24
  5883. Me.物料規格_dgv.Size = New System.Drawing.Size(490, 375)
  5884. Me.物料規格_dgv.TabIndex = 1339
  5885. '
  5886. '最後採購日_tb
  5887. '
  5888. Me.最後採購日_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5889. Me.最後採購日_tb.Location = New System.Drawing.Point(78, 639)
  5890. Me.最後採購日_tb.Name = "最後採購日_tb"
  5891. Me.最後採購日_tb.Size = New System.Drawing.Size(104, 23)
  5892. Me.最後採購日_tb.TabIndex = 1399
  5893. '
  5894. '大間距_ch
  5895. '
  5896. Me.大間距_ch.AutoSize = True
  5897. Me.大間距_ch.Location = New System.Drawing.Point(450, 5)
  5898. Me.大間距_ch.Name = "大間距_ch"
  5899. Me.大間距_ch.Size = New System.Drawing.Size(39, 20)
  5900. Me.大間距_ch.TabIndex = 1348
  5901. Me.大間距_ch.Text = "L3"
  5902. Me.大間距_ch.UseVisualStyleBackColor = True
  5903. '
  5904. '新群組1_cb
  5905. '
  5906. Me.新群組1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  5907. Me.新群組1_cb.FormattingEnabled = True
  5908. Me.新群組1_cb.Items.AddRange(New Object() {"2019"})
  5909. Me.新群組1_cb.Location = New System.Drawing.Point(68, 1)
  5910. Me.新群組1_cb.Name = "新群組1_cb"
  5911. Me.新群組1_cb.Size = New System.Drawing.Size(180, 24)
  5912. Me.新群組1_cb.TabIndex = 1358
  5913. '
  5914. '搜尋_bt
  5915. '
  5916. Me.搜尋_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5917. Me.搜尋_bt.ForeColor = System.Drawing.Color.Black
  5918. Me.搜尋_bt.Location = New System.Drawing.Point(250, 2)
  5919. Me.搜尋_bt.Name = "搜尋_bt"
  5920. Me.搜尋_bt.Size = New System.Drawing.Size(114, 24)
  5921. Me.搜尋_bt.TabIndex = 1344
  5922. Me.搜尋_bt.Text = "搜尋"
  5923. Me.搜尋_bt.UseVisualStyleBackColor = True
  5924. '
  5925. '中間距_ch
  5926. '
  5927. Me.中間距_ch.AutoSize = True
  5928. Me.中間距_ch.Location = New System.Drawing.Point(408, 5)
  5929. Me.中間距_ch.Name = "中間距_ch"
  5930. Me.中間距_ch.Size = New System.Drawing.Size(39, 20)
  5931. Me.中間距_ch.TabIndex = 1347
  5932. Me.中間距_ch.Text = "L2"
  5933. Me.中間距_ch.UseVisualStyleBackColor = True
  5934. '
  5935. '小間距_ch
  5936. '
  5937. Me.小間距_ch.AutoSize = True
  5938. Me.小間距_ch.Location = New System.Drawing.Point(366, 5)
  5939. Me.小間距_ch.Name = "小間距_ch"
  5940. Me.小間距_ch.Size = New System.Drawing.Size(39, 20)
  5941. Me.小間距_ch.TabIndex = 1346
  5942. Me.小間距_ch.Text = "L1"
  5943. Me.小間距_ch.UseVisualStyleBackColor = True
  5944. '
  5945. '物料清單_dgv
  5946. '
  5947. DataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  5948. Me.物料清單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle26
  5949. Me.物料清單_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5950. Or System.Windows.Forms.AnchorStyles.Left) _
  5951. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5952. Me.物料清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  5953. Me.物料清單_dgv.BackgroundColor = System.Drawing.Color.White
  5954. Me.物料清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  5955. Me.物料清單_dgv.Location = New System.Drawing.Point(-1, 27)
  5956. Me.物料清單_dgv.Name = "物料清單_dgv"
  5957. Me.物料清單_dgv.RowHeadersWidth = 5
  5958. DataGridViewCellStyle27.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5959. DataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  5960. Me.物料清單_dgv.RowsDefaultCellStyle = DataGridViewCellStyle27
  5961. Me.物料清單_dgv.RowTemplate.Height = 24
  5962. Me.物料清單_dgv.Size = New System.Drawing.Size(490, 610)
  5963. Me.物料清單_dgv.TabIndex = 1338
  5964. '
  5965. '錨點1
  5966. '
  5967. Me.錨點1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  5968. Me.錨點1.Location = New System.Drawing.Point(492, 1039)
  5969. Me.錨點1.Name = "錨點1"
  5970. Me.錨點1.Size = New System.Drawing.Size(25, 23)
  5971. Me.錨點1.TabIndex = 1417
  5972. Me.錨點1.Visible = False
  5973. '
  5974. '視窗4_pl
  5975. '
  5976. Me.視窗4_pl.BackColor = System.Drawing.Color.White
  5977. Me.視窗4_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5978. Me.視窗4_pl.Controls.Add(Me.Panel6)
  5979. Me.視窗4_pl.Controls.Add(Me.Label56)
  5980. Me.視窗4_pl.Controls.Add(Me.CanceL4_bt)
  5981. Me.視窗4_pl.Location = New System.Drawing.Point(892, 535)
  5982. Me.視窗4_pl.Name = "視窗4_pl"
  5983. Me.視窗4_pl.Size = New System.Drawing.Size(332, 216)
  5984. Me.視窗4_pl.TabIndex = 1418
  5985. '
  5986. 'Panel6
  5987. '
  5988. Me.Panel6.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  5989. Or System.Windows.Forms.AnchorStyles.Left) _
  5990. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5991. Me.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  5992. Me.Panel6.Controls.Add(Me.轉移_ch)
  5993. Me.Panel6.Controls.Add(Me.改版_ch)
  5994. Me.Panel6.Controls.Add(Me.複製轉移_bt)
  5995. Me.Panel6.Controls.Add(Me.Label48)
  5996. Me.Panel6.Controls.Add(Me.合約編號3_n_tb)
  5997. Me.Panel6.Controls.Add(Me.合約編號2_n_tb)
  5998. Me.Panel6.Controls.Add(Me.合約編號1_n_tb)
  5999. Me.Panel6.Controls.Add(Me.合約編號_n_cb)
  6000. Me.Panel6.Controls.Add(Me.Label46)
  6001. Me.Panel6.Controls.Add(Me.合約編號3_o_tb)
  6002. Me.Panel6.Controls.Add(Me.合約編號2_o_tb)
  6003. Me.Panel6.Controls.Add(Me.合約編號1_o_tb)
  6004. Me.Panel6.Controls.Add(Me.合約編號_o_cb)
  6005. Me.Panel6.Controls.Add(Me.Label47)
  6006. Me.Panel6.Controls.Add(Me.新建_ch)
  6007. Me.Panel6.Controls.Add(Me.Label72)
  6008. Me.Panel6.Location = New System.Drawing.Point(3, 28)
  6009. Me.Panel6.Name = "Panel6"
  6010. Me.Panel6.Size = New System.Drawing.Size(325, 184)
  6011. Me.Panel6.TabIndex = 1367
  6012. '
  6013. '轉移_ch
  6014. '
  6015. Me.轉移_ch.AutoSize = True
  6016. Me.轉移_ch.Location = New System.Drawing.Point(5, 47)
  6017. Me.轉移_ch.Name = "轉移_ch"
  6018. Me.轉移_ch.Size = New System.Drawing.Size(193, 20)
  6019. Me.轉移_ch.TabIndex = 1368
  6020. Me.轉移_ch.Text = "舊合約改版 [不保留舊報價資料]"
  6021. Me.轉移_ch.UseVisualStyleBackColor = True
  6022. '
  6023. '改版_ch
  6024. '
  6025. Me.改版_ch.AutoSize = True
  6026. Me.改版_ch.Location = New System.Drawing.Point(5, 25)
  6027. Me.改版_ch.Name = "改版_ch"
  6028. Me.改版_ch.Size = New System.Drawing.Size(313, 20)
  6029. Me.改版_ch.TabIndex = 1366
  6030. Me.改版_ch.Text = "舊合約改版 [保留舊報價資料,附屬資料轉到新合約號]"
  6031. Me.改版_ch.UseVisualStyleBackColor = True
  6032. '
  6033. '複製轉移_bt
  6034. '
  6035. Me.複製轉移_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6036. Me.複製轉移_bt.ForeColor = System.Drawing.Color.Blue
  6037. Me.複製轉移_bt.Location = New System.Drawing.Point(5, 143)
  6038. Me.複製轉移_bt.Name = "複製轉移_bt"
  6039. Me.複製轉移_bt.Size = New System.Drawing.Size(311, 34)
  6040. Me.複製轉移_bt.TabIndex = 1364
  6041. Me.複製轉移_bt.Text = "開始進行合約報價複製"
  6042. Me.複製轉移_bt.UseVisualStyleBackColor = True
  6043. '
  6044. 'Label48
  6045. '
  6046. Me.Label48.AutoSize = True
  6047. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6048. Me.Label48.Location = New System.Drawing.Point(1, 120)
  6049. Me.Label48.Name = "Label48"
  6050. Me.Label48.Size = New System.Drawing.Size(99, 19)
  6051. Me.Label48.TabIndex = 1051
  6052. Me.Label48.Text = "新版合約編號"
  6053. Me.Label48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6054. '
  6055. '合約編號3_n_tb
  6056. '
  6057. Me.合約編號3_n_tb.Location = New System.Drawing.Point(281, 118)
  6058. Me.合約編號3_n_tb.Name = "合約編號3_n_tb"
  6059. Me.合約編號3_n_tb.Size = New System.Drawing.Size(35, 23)
  6060. Me.合約編號3_n_tb.TabIndex = 1055
  6061. '
  6062. '合約編號2_n_tb
  6063. '
  6064. Me.合約編號2_n_tb.Enabled = False
  6065. Me.合約編號2_n_tb.Location = New System.Drawing.Point(215, 118)
  6066. Me.合約編號2_n_tb.MaxLength = 6
  6067. Me.合約編號2_n_tb.Name = "合約編號2_n_tb"
  6068. Me.合約編號2_n_tb.Size = New System.Drawing.Size(65, 23)
  6069. Me.合約編號2_n_tb.TabIndex = 1054
  6070. '
  6071. '合約編號1_n_tb
  6072. '
  6073. Me.合約編號1_n_tb.Enabled = False
  6074. Me.合約編號1_n_tb.Location = New System.Drawing.Point(164, 118)
  6075. Me.合約編號1_n_tb.Name = "合約編號1_n_tb"
  6076. Me.合約編號1_n_tb.Size = New System.Drawing.Size(50, 23)
  6077. Me.合約編號1_n_tb.TabIndex = 1053
  6078. '
  6079. '合約編號_n_cb
  6080. '
  6081. Me.合約編號_n_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  6082. Me.合約編號_n_cb.Enabled = False
  6083. Me.合約編號_n_cb.ForeColor = System.Drawing.Color.Blue
  6084. Me.合約編號_n_cb.FormattingEnabled = True
  6085. Me.合約編號_n_cb.Items.AddRange(New Object() {"", "HX", "PGS"})
  6086. Me.合約編號_n_cb.Location = New System.Drawing.Point(100, 117)
  6087. Me.合約編號_n_cb.Name = "合約編號_n_cb"
  6088. Me.合約編號_n_cb.Size = New System.Drawing.Size(62, 24)
  6089. Me.合約編號_n_cb.TabIndex = 1052
  6090. '
  6091. 'Label46
  6092. '
  6093. Me.Label46.AutoSize = True
  6094. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6095. Me.Label46.Location = New System.Drawing.Point(1, 95)
  6096. Me.Label46.Name = "Label46"
  6097. Me.Label46.Size = New System.Drawing.Size(99, 19)
  6098. Me.Label46.TabIndex = 1045
  6099. Me.Label46.Text = "舊版合約編號"
  6100. Me.Label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6101. '
  6102. '合約編號3_o_tb
  6103. '
  6104. Me.合約編號3_o_tb.Enabled = False
  6105. Me.合約編號3_o_tb.Location = New System.Drawing.Point(281, 93)
  6106. Me.合約編號3_o_tb.Name = "合約編號3_o_tb"
  6107. Me.合約編號3_o_tb.Size = New System.Drawing.Size(35, 23)
  6108. Me.合約編號3_o_tb.TabIndex = 1049
  6109. '
  6110. '合約編號2_o_tb
  6111. '
  6112. Me.合約編號2_o_tb.Enabled = False
  6113. Me.合約編號2_o_tb.Location = New System.Drawing.Point(215, 93)
  6114. Me.合約編號2_o_tb.MaxLength = 6
  6115. Me.合約編號2_o_tb.Name = "合約編號2_o_tb"
  6116. Me.合約編號2_o_tb.Size = New System.Drawing.Size(65, 23)
  6117. Me.合約編號2_o_tb.TabIndex = 1048
  6118. '
  6119. '合約編號1_o_tb
  6120. '
  6121. Me.合約編號1_o_tb.Enabled = False
  6122. Me.合約編號1_o_tb.Location = New System.Drawing.Point(164, 93)
  6123. Me.合約編號1_o_tb.Name = "合約編號1_o_tb"
  6124. Me.合約編號1_o_tb.Size = New System.Drawing.Size(50, 23)
  6125. Me.合約編號1_o_tb.TabIndex = 1047
  6126. '
  6127. '合約編號_o_cb
  6128. '
  6129. Me.合約編號_o_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  6130. Me.合約編號_o_cb.Enabled = False
  6131. Me.合約編號_o_cb.ForeColor = System.Drawing.Color.Blue
  6132. Me.合約編號_o_cb.FormattingEnabled = True
  6133. Me.合約編號_o_cb.Items.AddRange(New Object() {"", "HX", "PGS"})
  6134. Me.合約編號_o_cb.Location = New System.Drawing.Point(100, 92)
  6135. Me.合約編號_o_cb.Name = "合約編號_o_cb"
  6136. Me.合約編號_o_cb.Size = New System.Drawing.Size(62, 24)
  6137. Me.合約編號_o_cb.TabIndex = 1046
  6138. '
  6139. 'Label47
  6140. '
  6141. Me.Label47.AutoSize = True
  6142. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6143. Me.Label47.Location = New System.Drawing.Point(99, 78)
  6144. Me.Label47.Name = "Label47"
  6145. Me.Label47.Size = New System.Drawing.Size(220, 16)
  6146. Me.Label47.TabIndex = 1050
  6147. Me.Label47.Text = "乙方 甲方 立約日期 序號 "
  6148. Me.Label47.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6149. '
  6150. '新建_ch
  6151. '
  6152. Me.新建_ch.AutoSize = True
  6153. Me.新建_ch.Location = New System.Drawing.Point(5, 3)
  6154. Me.新建_ch.Name = "新建_ch"
  6155. Me.新建_ch.Size = New System.Drawing.Size(279, 20)
  6156. Me.新建_ch.TabIndex = 1365
  6157. Me.新建_ch.Text = "複製舊報價單來 [建立新的報價單] 與 [合約編號]"
  6158. Me.新建_ch.UseVisualStyleBackColor = True
  6159. '
  6160. 'Label72
  6161. '
  6162. Me.Label72.AutoSize = True
  6163. Me.Label72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6164. Me.Label72.Location = New System.Drawing.Point(0, 60)
  6165. Me.Label72.Name = "Label72"
  6166. Me.Label72.Size = New System.Drawing.Size(322, 16)
  6167. Me.Label72.TabIndex = 1367
  6168. Me.Label72.Text = "_______________________________________________________________"
  6169. Me.Label72.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  6170. '
  6171. 'Label56
  6172. '
  6173. Me.Label56.AutoSize = True
  6174. Me.Label56.Location = New System.Drawing.Point(5, 7)
  6175. Me.Label56.Name = "Label56"
  6176. Me.Label56.Size = New System.Drawing.Size(103, 16)
  6177. Me.Label56.TabIndex = 1375
  6178. Me.Label56.Text = "合約編號改版確認"
  6179. '
  6180. 'CanceL4_bt
  6181. '
  6182. Me.CanceL4_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6183. Me.CanceL4_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  6184. Me.CanceL4_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6185. Me.CanceL4_bt.ForeColor = System.Drawing.Color.Black
  6186. Me.CanceL4_bt.Location = New System.Drawing.Point(300, 2)
  6187. Me.CanceL4_bt.Name = "CanceL4_bt"
  6188. Me.CanceL4_bt.Size = New System.Drawing.Size(26, 26)
  6189. Me.CanceL4_bt.TabIndex = 1374
  6190. Me.CanceL4_bt.Text = "X"
  6191. Me.CanceL4_bt.UseVisualStyleBackColor = False
  6192. '
  6193. '合約_ch
  6194. '
  6195. Me.合約_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6196. Me.合約_ch.AutoSize = True
  6197. Me.合約_ch.BackColor = System.Drawing.SystemColors.Control
  6198. Me.合約_ch.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.document
  6199. Me.合約_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  6200. Me.合約_ch.Location = New System.Drawing.Point(1668, 5)
  6201. Me.合約_ch.Name = "合約_ch"
  6202. Me.合約_ch.Size = New System.Drawing.Size(59, 20)
  6203. Me.合約_ch.TabIndex = 1421
  6204. Me.合約_ch.Text = " "
  6205. Me.合約_ch.UseVisualStyleBackColor = False
  6206. '
  6207. 'BOM_ch
  6208. '
  6209. Me.BOM_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6210. Me.BOM_ch.AutoSize = True
  6211. Me.BOM_ch.BackColor = System.Drawing.SystemColors.Control
  6212. Me.BOM_ch.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.BADD02
  6213. Me.BOM_ch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  6214. Me.BOM_ch.Checked = True
  6215. Me.BOM_ch.CheckState = System.Windows.Forms.CheckState.Checked
  6216. Me.BOM_ch.Location = New System.Drawing.Point(1614, 5)
  6217. Me.BOM_ch.Name = "BOM_ch"
  6218. Me.BOM_ch.Size = New System.Drawing.Size(59, 20)
  6219. Me.BOM_ch.TabIndex = 1419
  6220. Me.BOM_ch.Text = " "
  6221. Me.BOM_ch.UseVisualStyleBackColor = False
  6222. '
  6223. '合約報價單
  6224. '
  6225. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  6226. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  6227. Me.ClientSize = New System.Drawing.Size(1914, 1041)
  6228. Me.Controls.Add(Me.合約_ch)
  6229. Me.Controls.Add(Me.BOM_ch)
  6230. Me.Controls.Add(Me.視窗4_pl)
  6231. Me.Controls.Add(Me.錨點1)
  6232. Me.Controls.Add(Me.空間2)
  6233. Me.Controls.Add(Me.空間1)
  6234. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6235. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  6236. Me.Name = "合約報價單"
  6237. Me.Text = "合約報價單"
  6238. Me.空間2.ResumeLayout(False)
  6239. Me.空間2.PerformLayout()
  6240. Me.TabControl1.ResumeLayout(False)
  6241. Me.建立合約資料_tc.ResumeLayout(False)
  6242. Me.建立合約資料_tc.PerformLayout()
  6243. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6244. Me.視窗2_pl.ResumeLayout(False)
  6245. Me.視窗2_pl.PerformLayout()
  6246. Me.Panel3.ResumeLayout(False)
  6247. Me.Panel3.PerformLayout()
  6248. CType(Me.報價明細表1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6249. Me.GroupBox1.ResumeLayout(False)
  6250. Me.GroupBox1.PerformLayout()
  6251. CType(Me.NUD_03, System.ComponentModel.ISupportInitialize).EndInit()
  6252. CType(Me.NUD_01, System.ComponentModel.ISupportInitialize).EndInit()
  6253. CType(Me.NUD_02, System.ComponentModel.ISupportInitialize).EndInit()
  6254. Me.GroupBox2.ResumeLayout(False)
  6255. Me.GroupBox2.PerformLayout()
  6256. Me.空間3.ResumeLayout(False)
  6257. Me.空間3.PerformLayout()
  6258. Me.Panel2.ResumeLayout(False)
  6259. Me.Panel2.PerformLayout()
  6260. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
  6261. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6262. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
  6263. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
  6264. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
  6265. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
  6266. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
  6267. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6268. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
  6269. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
  6270. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
  6271. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6272. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6273. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6274. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6275. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6276. Me.TabControl2.ResumeLayout(False)
  6277. Me.TabPage5.ResumeLayout(False)
  6278. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6279. Me.TabPage6.ResumeLayout(False)
  6280. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6281. Me.TabPage7.ResumeLayout(False)
  6282. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6283. Me.TabPage8.ResumeLayout(False)
  6284. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6285. Me.TabPage9.ResumeLayout(False)
  6286. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6287. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6288. Me.TabControl3.ResumeLayout(False)
  6289. Me.TabPage1.ResumeLayout(False)
  6290. Me.TabPage1.PerformLayout()
  6291. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6292. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6293. Me.TabPage2.ResumeLayout(False)
  6294. Me.TabPage2.PerformLayout()
  6295. Me.工程合約報價明細_tc.ResumeLayout(False)
  6296. Me.工程合約報價明細_tc.PerformLayout()
  6297. Me.視窗3_pl.ResumeLayout(False)
  6298. Me.視窗3_pl.PerformLayout()
  6299. Me.Panel4.ResumeLayout(False)
  6300. Me.Panel4.PerformLayout()
  6301. CType(Me.報價係數1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6302. Me.GroupBox4.ResumeLayout(False)
  6303. Me.GroupBox4.PerformLayout()
  6304. CType(Me.NUD_06, System.ComponentModel.ISupportInitialize).EndInit()
  6305. CType(Me.NUD_04, System.ComponentModel.ISupportInitialize).EndInit()
  6306. CType(Me.NUD_05, System.ComponentModel.ISupportInitialize).EndInit()
  6307. Me.GroupBox3.ResumeLayout(False)
  6308. Me.GroupBox3.PerformLayout()
  6309. Me.視窗1_pl.ResumeLayout(False)
  6310. Me.視窗1_pl.PerformLayout()
  6311. Me.物料群組_Panel.ResumeLayout(False)
  6312. Me.物料群組_Panel.PerformLayout()
  6313. CType(Me.係數_nup, System.ComponentModel.ISupportInitialize).EndInit()
  6314. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6315. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6316. Me.Panel5.ResumeLayout(False)
  6317. Me.Panel5.PerformLayout()
  6318. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6319. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).EndInit()
  6320. Me.工程合約試算表_tc.ResumeLayout(False)
  6321. Me.工程合約試算表_tc.PerformLayout()
  6322. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  6323. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6324. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
  6325. Me.Panel1.ResumeLayout(False)
  6326. Me.Panel1.PerformLayout()
  6327. CType(Me.主管_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6328. CType(Me.圖庫清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6329. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
  6330. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  6331. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).EndInit()
  6332. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).EndInit()
  6333. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6334. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6335. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6336. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6337. Me.空間1.ResumeLayout(False)
  6338. Me.BOM_p.ResumeLayout(False)
  6339. Me.BOM_p.PerformLayout()
  6340. CType(Me.BOM表明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6341. CType(Me.BOM表控制_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6342. Me.合約_p.ResumeLayout(False)
  6343. Me.合約_p.PerformLayout()
  6344. CType(Me.報價明細表2_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6345. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6346. Me.物料_p.ResumeLayout(False)
  6347. Me.物料_p.PerformLayout()
  6348. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6349. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6350. Me.視窗4_pl.ResumeLayout(False)
  6351. Me.視窗4_pl.PerformLayout()
  6352. Me.Panel6.ResumeLayout(False)
  6353. Me.Panel6.PerformLayout()
  6354. Me.ResumeLayout(False)
  6355. Me.PerformLayout()
  6356. End Sub
  6357. Friend WithEvents Y_2_tb As TextBox
  6358. Friend WithEvents X_2_tb As TextBox
  6359. Friend WithEvents 空間2 As Panel
  6360. Friend WithEvents 合約停止_ch As CheckBox
  6361. Friend WithEvents 列印成EXCEL_bt As Button
  6362. Friend WithEvents 工材分離_ch As CheckBox
  6363. Friend WithEvents Label41 As Label
  6364. Friend WithEvents 合約編號清單_bt As Button
  6365. Friend WithEvents 工程期1_ch As ComboBox
  6366. Friend WithEvents 縮放_bt As Button
  6367. Friend WithEvents Label2 As Label
  6368. Friend WithEvents 合約編號_tb As TextBox
  6369. Friend WithEvents TabControl1 As TabControl
  6370. Friend WithEvents 建立合約資料_tc As TabPage
  6371. Friend WithEvents 新增資料1_bt As Button
  6372. Friend WithEvents 排序1_bt As Button
  6373. Friend WithEvents 總表選擇刪除_bt As Button
  6374. Friend WithEvents 總表編輯_bt As Button
  6375. Friend WithEvents 報價總表存檔_bt As Button
  6376. Friend WithEvents 錨點2 As TextBox
  6377. Friend WithEvents 縮放1_bt As Button
  6378. Friend WithEvents 空間3 As Panel
  6379. Friend WithEvents 視窗2_pl As Panel
  6380. Friend WithEvents Panel3 As Panel
  6381. Friend WithEvents 報價明細表1_dgv As DataGridView
  6382. Friend WithEvents GroupBox1 As GroupBox
  6383. Friend WithEvents 等於_bt As Button
  6384. Friend WithEvents NUD_03 As NumericUpDown
  6385. Friend WithEvents 清除_bt As Button
  6386. Friend WithEvents NUD_01 As NumericUpDown
  6387. Friend WithEvents 小數點_bt As Button
  6388. Friend WithEvents 倒退_bt As Button
  6389. Friend WithEvents 計算1_ch As ComboBox
  6390. Friend WithEvents b0_bt As Button
  6391. Friend WithEvents Y_3_tb As TextBox
  6392. Friend WithEvents b9_bt As Button
  6393. Friend WithEvents NUD_02 As NumericUpDown
  6394. Friend WithEvents b8_bt As Button
  6395. Friend WithEvents X_3_tb As TextBox
  6396. Friend WithEvents b7_bt As Button
  6397. Friend WithEvents b6_bt As Button
  6398. Friend WithEvents 選擇_lb As Label
  6399. Friend WithEvents b5_bt As Button
  6400. Friend WithEvents b4_bt As Button
  6401. Friend WithEvents b3_bt As Button
  6402. Friend WithEvents b2_bt As Button
  6403. Friend WithEvents b1_bt As Button
  6404. Friend WithEvents 除_bt As Button
  6405. Friend WithEvents 乘_bt As Button
  6406. Friend WithEvents 減_bt As Button
  6407. Friend WithEvents 加_bt As Button
  6408. Friend WithEvents 座標_lb As Label
  6409. Friend WithEvents 結果_tb As TextBox
  6410. Friend WithEvents 文字資料輸入1_bt As Button
  6411. Friend WithEvents 計算式_tb As TextBox
  6412. Friend WithEvents Label24 As Label
  6413. Friend WithEvents 數值1_tb As TextBox
  6414. Friend WithEvents 數值2_tb As TextBox
  6415. Friend WithEvents 選擇項_tb As TextBox
  6416. Friend WithEvents GroupBox2 As GroupBox
  6417. Friend WithEvents Label31 As Label
  6418. Friend WithEvents 合計項_cb As ComboBox
  6419. Friend WithEvents Label30 As Label
  6420. Friend WithEvents 單位_tb As TextBox
  6421. Friend WithEvents 備註_tb As TextBox
  6422. Friend WithEvents 內容_tb As TextBox
  6423. Friend WithEvents 數字1_ch As CheckBox
  6424. Friend WithEvents 中文小寫1_ch As CheckBox
  6425. Friend WithEvents 中文大寫1_ch As CheckBox
  6426. Friend WithEvents ITEM1_cb As ComboBox
  6427. Friend WithEvents Label25 As Label
  6428. Friend WithEvents Label23 As Label
  6429. Friend WithEvents Label16 As Label
  6430. Friend WithEvents CanceL2_bt As Button
  6431. Friend WithEvents 報價總表_dgv As DataGridView
  6432. Friend WithEvents Panel2 As Panel
  6433. Friend WithEvents Label42 As Label
  6434. Friend WithEvents Label379 As Label
  6435. Friend WithEvents Label34 As Label
  6436. Friend WithEvents 工程期_ch As ComboBox
  6437. Friend WithEvents Label19 As Label
  6438. Friend WithEvents Label15 As Label
  6439. Friend WithEvents 最末頁_cb As ComboBox
  6440. Friend WithEvents Label20 As Label
  6441. Friend WithEvents 合約編號3_tb As TextBox
  6442. Friend WithEvents 合約編號2_tb As TextBox
  6443. Friend WithEvents 明細選項_bt As TextBox
  6444. Friend WithEvents 合約編號1_tb As TextBox
  6445. Friend WithEvents 刪除資料_bt As Button
  6446. Friend WithEvents 合約編號_cb As ComboBox
  6447. Friend WithEvents 新增資料_bt As Button
  6448. Friend WithEvents 自動讀取_bt As Button
  6449. Friend WithEvents Label397 As Label
  6450. Friend WithEvents 手動輸入_bt As Button
  6451. Friend WithEvents 金額6_und As NumericUpDown
  6452. Friend WithEvents Label5 As Label
  6453. Friend WithEvents 工程款6_nud As NumericUpDown
  6454. Friend WithEvents 最高扣款_bt As TextBox
  6455. Friend WithEvents 合約種類_tb As TextBox
  6456. Friend WithEvents NUD2 As NumericUpDown
  6457. Friend WithEvents NUD1 As NumericUpDown
  6458. Friend WithEvents Label372 As Label
  6459. Friend WithEvents Label394 As Label
  6460. Friend WithEvents 客戶名稱_tb As ComboBox
  6461. Friend WithEvents Label396 As Label
  6462. Friend WithEvents Label373 As Label
  6463. Friend WithEvents NUD3 As NumericUpDown
  6464. Friend WithEvents Label374 As Label
  6465. Friend WithEvents 合約種類_cb As ComboBox
  6466. Friend WithEvents Label375 As Label
  6467. Friend WithEvents 逾期_bt As TextBox
  6468. Friend WithEvents 工程名稱_中_tb As TextBox
  6469. Friend WithEvents Label395 As Label
  6470. Friend WithEvents 客戶地址_tb As TextBox
  6471. Friend WithEvents Label393 As Label
  6472. Friend WithEvents 金額5_und As NumericUpDown
  6473. Friend WithEvents Label380 As Label
  6474. Friend WithEvents 工程地點_tb As TextBox
  6475. Friend WithEvents Label406 As Label
  6476. Friend WithEvents 金額4_und As NumericUpDown
  6477. Friend WithEvents 逾期_英_bt As TextBox
  6478. Friend WithEvents Label376 As Label
  6479. Friend WithEvents 工期_nud As NumericUpDown
  6480. Friend WithEvents 金額3_und As NumericUpDown
  6481. Friend WithEvents 最高扣款_英_bt As TextBox
  6482. Friend WithEvents Label414 As Label
  6483. Friend WithEvents Label391 As Label
  6484. Friend WithEvents 金額2_und As NumericUpDown
  6485. Friend WithEvents Label403 As Label
  6486. Friend WithEvents 選擇公司_cb As ComboBox
  6487. Friend WithEvents 負責人_B_cb As ComboBox
  6488. Friend WithEvents 金額1_und As NumericUpDown
  6489. Friend WithEvents Label407 As Label
  6490. Friend WithEvents 立約日期_dtp As DateTimePicker
  6491. Friend WithEvents Label410 As Label
  6492. Friend WithEvents 工程款5_nud As NumericUpDown
  6493. Friend WithEvents Label408 As Label
  6494. Friend WithEvents Label377 As Label
  6495. Friend WithEvents Label405 As Label
  6496. Friend WithEvents 工程款4_nud As NumericUpDown
  6497. Friend WithEvents 減價_bt As TextBox
  6498. Friend WithEvents 頁數_bt As TextBox
  6499. Friend WithEvents Label409 As Label
  6500. Friend WithEvents Label399 As Label
  6501. Friend WithEvents 負責人_A_cb As ComboBox
  6502. Friend WithEvents 我司地址_tb As TextBox
  6503. Friend WithEvents 工程名稱_英_tb As TextBox
  6504. Friend WithEvents 工程款3_nud As NumericUpDown
  6505. Friend WithEvents Label404 As Label
  6506. Friend WithEvents Label413 As Label
  6507. Friend WithEvents Label412 As Label
  6508. Friend WithEvents Label400 As Label
  6509. Friend WithEvents 工程款1_nud As NumericUpDown
  6510. Friend WithEvents Label378 As Label
  6511. Friend WithEvents 廠區_中文_tb As TextBox
  6512. Friend WithEvents 工程款2_nud As NumericUpDown
  6513. Friend WithEvents Label28 As Label
  6514. Friend WithEvents Label382 As Label
  6515. Friend WithEvents 稅額顯示_lb As Label
  6516. Friend WithEvents CH2 As CheckBox
  6517. Friend WithEvents CH1 As CheckBox
  6518. Friend WithEvents Label402 As Label
  6519. Friend WithEvents Label392 As Label
  6520. Friend WithEvents Label381 As Label
  6521. Friend WithEvents Label386 As Label
  6522. Friend WithEvents Label21 As Label
  6523. Friend WithEvents TabControl2 As TabControl
  6524. Friend WithEvents TabPage5 As TabPage
  6525. Friend WithEvents 第1期_dgv As DataGridView
  6526. Friend WithEvents TabPage6 As TabPage
  6527. Friend WithEvents 第2期_dgv As DataGridView
  6528. Friend WithEvents TabPage7 As TabPage
  6529. Friend WithEvents 第3期_dgv As DataGridView
  6530. Friend WithEvents TabPage8 As TabPage
  6531. Friend WithEvents 第4期_dgv As DataGridView
  6532. Friend WithEvents TabPage9 As TabPage
  6533. Friend WithEvents 第5期_dgv As DataGridView
  6534. Friend WithEvents Label388 As Label
  6535. Friend WithEvents Label387 As Label
  6536. Friend WithEvents Label390 As Label
  6537. Friend WithEvents Label389 As Label
  6538. Friend WithEvents Label411 As Label
  6539. Friend WithEvents Label29 As Label
  6540. Friend WithEvents Label35 As Label
  6541. Friend WithEvents 查詢_bt As Button
  6542. Friend WithEvents Label7 As Label
  6543. Friend WithEvents ProgressBar1 As ProgressBar
  6544. Friend WithEvents 關鍵字搜尋_tb As TextBox
  6545. Friend WithEvents 刪除合約_bt As Button
  6546. Friend WithEvents 合約_dgv As DataGridView
  6547. Friend WithEvents 存檔_tb As Button
  6548. Friend WithEvents 工程合約報價明細_tc As TabPage
  6549. Friend WithEvents 規格顯示修改_bt As Button
  6550. Friend WithEvents 單位2_tb As TextBox
  6551. Friend WithEvents 工資_ch As CheckBox
  6552. Friend WithEvents 材料_ch As CheckBox
  6553. Friend WithEvents ITEM3_cb As ComboBox
  6554. Friend WithEvents Label22 As Label
  6555. Friend WithEvents 申請數_nud As NumericUpDown
  6556. Friend WithEvents 申請數_lb As Label
  6557. Friend WithEvents Label32 As Label
  6558. Friend WithEvents 料號_tb As TextBox
  6559. Friend WithEvents 修改明細表上的材料指定_bt As Button
  6560. Friend WithEvents 選擇材料新增到明細表_bt As Button
  6561. Friend WithEvents 新增資料2_bt As Button
  6562. Friend WithEvents 總表選擇刪除1_bt As Button
  6563. Friend WithEvents 明細表編輯_bt As Button
  6564. Friend WithEvents 報價明細表存檔_bt As Button
  6565. Friend WithEvents 排序2_bt As Button
  6566. Friend WithEvents 視窗1_pl As Panel
  6567. Friend WithEvents 物料群組_Panel As Panel
  6568. Friend WithEvents 複製係數範本_tb As Button
  6569. Friend WithEvents 係數項目新增_bt As Button
  6570. Friend WithEvents 係數項目刪除_bt As Button
  6571. Friend WithEvents 係數項目修改_bt As Button
  6572. Friend WithEvents 係數單位_cb As ComboBox
  6573. Friend WithEvents Label10 As Label
  6574. Friend WithEvents Label12 As Label
  6575. Friend WithEvents 係數項目_cb As ComboBox
  6576. Friend WithEvents Label11 As Label
  6577. Friend WithEvents 係數_nup As NumericUpDown
  6578. Friend WithEvents Cancel1_bt As Button
  6579. Friend WithEvents 合約_lb As Label
  6580. Friend WithEvents Label37 As Label
  6581. Friend WithEvents 係數範本_tb As Button
  6582. Friend WithEvents 報價係數_dgv As DataGridView
  6583. Friend WithEvents 報價單立約日期_dtp As DateTimePicker
  6584. Friend WithEvents Label27 As Label
  6585. Friend WithEvents Label26 As Label
  6586. Friend WithEvents 報價單合約編號_tb As TextBox
  6587. Friend WithEvents 報價工程名稱_英_tb As TextBox
  6588. Friend WithEvents 報價工程名稱_中_tb As TextBox
  6589. Friend WithEvents Label9 As Label
  6590. Friend WithEvents Label8 As Label
  6591. Friend WithEvents 報價單客戶名稱_cb As ComboBox
  6592. Friend WithEvents Label6 As Label
  6593. Friend WithEvents 編輯係數_bt As Button
  6594. Friend WithEvents 報價明細表_dgv As DataGridView
  6595. Friend WithEvents 利潤表_ch As CheckBox
  6596. Friend WithEvents Label33 As Label
  6597. Friend WithEvents 物料圖1_pb As PictureBox
  6598. Friend WithEvents 工程合約試算表_tc As TabPage
  6599. Friend WithEvents Label4 As Label
  6600. Friend WithEvents 刪除1_bt As Button
  6601. Friend WithEvents 係數_nud As NumericUpDown
  6602. Friend WithEvents 存檔_bt As Button
  6603. Friend WithEvents 使用計算機_ch As CheckBox
  6604. Friend WithEvents 直接輸入_ch As CheckBox
  6605. Friend WithEvents 材料加入1_bt As Button
  6606. Friend WithEvents 修改樓層_迴圈_bt As Button
  6607. Friend WithEvents 新增物件_bt As Button
  6608. Friend WithEvents 料號_lb As Label
  6609. Friend WithEvents 樓層_迴路_cb As ComboBox
  6610. Friend WithEvents 料號1_tb As TextBox
  6611. Friend WithEvents Label3 As Label
  6612. Friend WithEvents 修改試算表名稱_bt As Button
  6613. Friend WithEvents 新增試算表_bt As Button
  6614. Friend WithEvents Label1 As Label
  6615. Friend WithEvents 試算表_cb As ComboBox
  6616. Friend WithEvents 試算表_dgv As DataGridView
  6617. Friend WithEvents 物料圖_pb As PictureBox
  6618. Friend WithEvents 空間1 As Panel
  6619. Friend WithEvents 群組編碼_lb As Label
  6620. Friend WithEvents 搜尋_bt As Button
  6621. Friend WithEvents 小間距_ch As CheckBox
  6622. Friend WithEvents 中間距_ch As CheckBox
  6623. Friend WithEvents 新群組1_cb As ComboBox
  6624. Friend WithEvents 物料規格_dgv As DataGridView
  6625. Friend WithEvents 大間距_ch As CheckBox
  6626. Friend WithEvents Panel1 As Panel
  6627. Friend WithEvents 選擇項3_tb As TextBox
  6628. Friend WithEvents PictureBox2 As PictureBox
  6629. Friend WithEvents PictureBox1 As PictureBox
  6630. Friend WithEvents 選擇項2_tb As TextBox
  6631. Friend WithEvents DGV位置2 As NumericUpDown
  6632. Friend WithEvents DGV位置1 As NumericUpDown
  6633. Friend WithEvents 明細表流水_tb As TextBox
  6634. Friend WithEvents 總表流水_tb As TextBox
  6635. Friend WithEvents 係數合約號_tb As TextBox
  6636. Friend WithEvents 係數流水號_tb As TextBox
  6637. Friend WithEvents 群組編碼_cb As ComboBox
  6638. Friend WithEvents 語言_dgv As DataGridView
  6639. Friend WithEvents 存檔比較_dgv As DataGridView
  6640. Friend WithEvents 範例文本_dgv As DataGridView
  6641. Friend WithEvents 群組碼_tb As TextBox
  6642. Friend WithEvents 表號_tb As TextBox
  6643. Friend WithEvents 表頭_tb As TextBox
  6644. Friend WithEvents 試算控制表_dgv As DataGridView
  6645. Friend WithEvents 物料清單_dgv As DataGridView
  6646. Friend WithEvents 錨點1 As TextBox
  6647. Friend WithEvents 總表範例_bt As Button
  6648. Friend WithEvents 鍵盤鎖定1_ch As CheckBox
  6649. Friend WithEvents 連動編號_tb As TextBox
  6650. Friend WithEvents Label43 As Label
  6651. Friend WithEvents Label44 As Label
  6652. Friend WithEvents 數量_tb As TextBox
  6653. Friend WithEvents Label45 As Label
  6654. Friend WithEvents 合約改版_bt As Button
  6655. Friend WithEvents 視窗4_pl As Panel
  6656. Friend WithEvents Panel6 As Panel
  6657. Friend WithEvents Label56 As Label
  6658. Friend WithEvents CanceL4_bt As Button
  6659. Friend WithEvents Label48 As Label
  6660. Friend WithEvents 合約編號3_n_tb As TextBox
  6661. Friend WithEvents 合約編號2_n_tb As TextBox
  6662. Friend WithEvents 合約編號1_n_tb As TextBox
  6663. Friend WithEvents 合約編號_n_cb As ComboBox
  6664. Friend WithEvents Label46 As Label
  6665. Friend WithEvents 合約編號3_o_tb As TextBox
  6666. Friend WithEvents 合約編號2_o_tb As TextBox
  6667. Friend WithEvents 合約編號1_o_tb As TextBox
  6668. Friend WithEvents 合約編號_o_cb As ComboBox
  6669. Friend WithEvents Label47 As Label
  6670. Friend WithEvents 複製轉移_bt As Button
  6671. Friend WithEvents Label50 As Label
  6672. Friend WithEvents 歷史單價_tb As TextBox
  6673. Friend WithEvents Label49 As Label
  6674. Friend WithEvents 最後採購日_tb As TextBox
  6675. Friend WithEvents 帶上歷史單價_ch As CheckBox
  6676. Friend WithEvents 縮放2_bt As Button
  6677. Friend WithEvents 視窗3_pl As Panel
  6678. Friend WithEvents Panel4 As Panel
  6679. Friend WithEvents 報價係數1_dgv As DataGridView
  6680. Friend WithEvents 座標1_lb As Label
  6681. Friend WithEvents GroupBox4 As GroupBox
  6682. Friend WithEvents 鍵盤鎖定2_ch As CheckBox
  6683. Friend WithEvents 等於1_bt As Button
  6684. Friend WithEvents NUD_06 As NumericUpDown
  6685. Friend WithEvents 清除1_bt As Button
  6686. Friend WithEvents NUD_04 As NumericUpDown
  6687. Friend WithEvents 小數點1_bt As Button
  6688. Friend WithEvents 倒退1_bt As Button
  6689. Friend WithEvents 計算2_ch As ComboBox
  6690. Friend WithEvents A0_bt As Button
  6691. Friend WithEvents A9_bt As Button
  6692. Friend WithEvents NUD_05 As NumericUpDown
  6693. Friend WithEvents A8_bt As Button
  6694. Friend WithEvents A7_bt As Button
  6695. Friend WithEvents A6_bt As Button
  6696. Friend WithEvents 選擇1_lb As Label
  6697. Friend WithEvents A5_bt As Button
  6698. Friend WithEvents A4_bt As Button
  6699. Friend WithEvents A3_bt As Button
  6700. Friend WithEvents A2_bt As Button
  6701. Friend WithEvents A1_bt As Button
  6702. Friend WithEvents 除1_bt As Button
  6703. Friend WithEvents 乘1_bt As Button
  6704. Friend WithEvents 減1_bt As Button
  6705. Friend WithEvents 加1_bt As Button
  6706. Friend WithEvents 文字資料輸入2_bt As Button
  6707. Friend WithEvents Label13 As Label
  6708. Friend WithEvents 選擇項1_tb As TextBox
  6709. Friend WithEvents GroupBox3 As GroupBox
  6710. Friend WithEvents Label14 As Label
  6711. Friend WithEvents 合計項1_cb As ComboBox
  6712. Friend WithEvents 單位1_tb As TextBox
  6713. Friend WithEvents 備註1_tb As TextBox
  6714. Friend WithEvents 內容1_tb As TextBox
  6715. Friend WithEvents 數字2_ch As CheckBox
  6716. Friend WithEvents 中文小寫2_ch As CheckBox
  6717. Friend WithEvents 中文大寫2_ch As CheckBox
  6718. Friend WithEvents ITEM2_cb As ComboBox
  6719. Friend WithEvents Label18 As Label
  6720. Friend WithEvents Label17 As Label
  6721. Friend WithEvents 結果1_tb As TextBox
  6722. Friend WithEvents 計算式1_tb As TextBox
  6723. Friend WithEvents 數值3_tb As TextBox
  6724. Friend WithEvents 數值4_tb As TextBox
  6725. Friend WithEvents Label36 As Label
  6726. Friend WithEvents Label38 As Label
  6727. Friend WithEvents CanceL3_bt As Button
  6728. Friend WithEvents Label40 As Label
  6729. Friend WithEvents 合約編號1_cb As ComboBox
  6730. Friend WithEvents Panel5 As Panel
  6731. Friend WithEvents 物料_ch As CheckBox
  6732. Friend WithEvents BOM_ch As CheckBox
  6733. Friend WithEvents BOM_p As Panel
  6734. Friend WithEvents 物料_p As Panel
  6735. Friend WithEvents BOM表明細_dgv As DataGridView
  6736. Friend WithEvents BOM表控制_dgv As DataGridView
  6737. Friend WithEvents 項目流水_tb As TextBox
  6738. Friend WithEvents 中文小寫3_ch As CheckBox
  6739. Friend WithEvents Label52 As Label
  6740. Friend WithEvents Label51 As Label
  6741. Friend WithEvents 主項目_tb As TextBox
  6742. Friend WithEvents 中文大寫3_ch As CheckBox
  6743. Friend WithEvents ITEM4_cb As ComboBox
  6744. Friend WithEvents BOM新增到明細表_bt As Button
  6745. Friend WithEvents Label53 As Label
  6746. Friend WithEvents Label55 As Label
  6747. Friend WithEvents Label54 As Label
  6748. Friend WithEvents Label65 As Label
  6749. Friend WithEvents Label66 As Label
  6750. Friend WithEvents Label61 As Label
  6751. Friend WithEvents Label62 As Label
  6752. Friend WithEvents 利潤比1_tb As TextBox
  6753. Friend WithEvents 預估利潤_tb As TextBox
  6754. Friend WithEvents 預估材料總報價_tb As TextBox
  6755. Friend WithEvents 預估工資總報價_tb As TextBox
  6756. Friend WithEvents 預估材料總成本_tb As TextBox
  6757. Friend WithEvents 預估工資總成本_tb As TextBox
  6758. Friend WithEvents 利潤比3_tb As TextBox
  6759. Friend WithEvents Label60 As Label
  6760. Friend WithEvents 總報價_tb As TextBox
  6761. Friend WithEvents 總成本_tb As TextBox
  6762. Friend WithEvents Label58 As Label
  6763. Friend WithEvents Label59 As Label
  6764. Friend WithEvents 利潤比2_tb As TextBox
  6765. Friend WithEvents Label57 As Label
  6766. Friend WithEvents 利潤比4_tb As TextBox
  6767. Friend WithEvents Label71 As Label
  6768. Friend WithEvents Label70 As Label
  6769. Friend WithEvents Label69 As Label
  6770. Friend WithEvents Label68 As Label
  6771. Friend WithEvents Label67 As Label
  6772. Friend WithEvents Label64 As Label
  6773. Friend WithEvents Label63 As Label
  6774. Friend WithEvents 彙總存檔_bt As Button
  6775. Friend WithEvents 查閱文件_bt As Button
  6776. Friend WithEvents 改版_ch As CheckBox
  6777. Friend WithEvents 新建_ch As CheckBox
  6778. Friend WithEvents Label72 As Label
  6779. Friend WithEvents Label73 As Label
  6780. Friend WithEvents 啟用批量選擇_ch As CheckBox
  6781. Friend WithEvents 圖庫清單_dgv As DataGridView
  6782. Friend WithEvents 合約_p As Panel
  6783. Friend WithEvents Label74 As Label
  6784. Friend WithEvents 報價明細表2_dgv As DataGridView
  6785. Friend WithEvents 合約1_dgv As DataGridView
  6786. Friend WithEvents 合約_ch As CheckBox
  6787. Friend WithEvents Label77 As Label
  6788. Friend WithEvents 合約編號2_cb As ComboBox
  6789. Friend WithEvents 合約編號_1_tb As TextBox
  6790. Friend WithEvents Label78 As Label
  6791. Friend WithEvents 關鍵字搜尋1_tb As TextBox
  6792. Friend WithEvents 查詢1_bt As Button
  6793. Friend WithEvents 詳細資料_ch As CheckBox
  6794. Friend WithEvents 詳細資料1_ch As CheckBox
  6795. Friend WithEvents 詳細資料2_ch As CheckBox
  6796. Friend WithEvents 全部取消_bt As Button
  6797. Friend WithEvents 全部選擇_bt As Button
  6798. Friend WithEvents 選取資料新增到明細表_bt As Button
  6799. Friend WithEvents Label76 As Label
  6800. Friend WithEvents Label75 As Label
  6801. Friend WithEvents 詳細資料3_ch As CheckBox
  6802. Friend WithEvents 發送_bt As Button
  6803. Friend WithEvents 主管_dgv As DataGridView
  6804. Friend WithEvents 轉移_ch As CheckBox
  6805. Friend WithEvents TabControl3 As TabControl
  6806. Friend WithEvents TabPage1 As TabPage
  6807. Friend WithEvents 折讓比例_nud As NumericUpDown
  6808. Friend WithEvents Label79 As Label
  6809. Friend WithEvents 報價小計_tb As TextBox
  6810. Friend WithEvents Label39 As Label
  6811. Friend WithEvents TabPage2 As TabPage
  6812. Friend WithEvents 報價說明_tb As TextBox
  6813. Friend WithEvents 未折價前_tb As TextBox
  6814. Friend WithEvents Label82 As Label
  6815. Friend WithEvents 歸零位數_nud As NumericUpDown
  6816. Friend WithEvents Label81 As Label
  6817. Friend WithEvents 稅後歸零_ch As CheckBox
  6818. Friend WithEvents 稅前歸零_ch As CheckBox
  6819. Friend WithEvents Label80 As Label
  6820. Friend WithEvents Label83 As Label
  6821. Friend WithEvents 甲方_cb As ComboBox
  6822. Friend WithEvents 折價計算_bt As Button
  6823. Friend WithEvents 歸零數_tb As TextBox
  6824. Friend WithEvents 印尼盾_ch As CheckBox
  6825. Friend WithEvents 人民幣_ch As CheckBox
  6826. Friend WithEvents 美金_ch As CheckBox
  6827. Friend WithEvents 台幣_ch As CheckBox
  6828. End Class