暫無描述
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 287KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691
  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 resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(卜卦))
  25. Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
  26. Me.Label1 = New System.Windows.Forms.Label()
  27. Me.Label2 = New System.Windows.Forms.Label()
  28. Me.Label3 = New System.Windows.Forms.Label()
  29. Me.TextBox198 = New System.Windows.Forms.TextBox()
  30. Me.TextBox197 = New System.Windows.Forms.TextBox()
  31. Me.TextBox196 = New System.Windows.Forms.TextBox()
  32. Me.TextBox195 = New System.Windows.Forms.TextBox()
  33. Me.TextBox194 = New System.Windows.Forms.TextBox()
  34. Me.TextBox193 = New System.Windows.Forms.TextBox()
  35. Me.TextBox192 = New System.Windows.Forms.TextBox()
  36. Me.TextBox191 = New System.Windows.Forms.TextBox()
  37. Me.TextBox189 = New System.Windows.Forms.TextBox()
  38. Me.TextBox186 = New System.Windows.Forms.TextBox()
  39. Me.TextBox185 = New System.Windows.Forms.TextBox()
  40. Me.TextBox184 = New System.Windows.Forms.TextBox()
  41. Me.TextBox188 = New System.Windows.Forms.TextBox()
  42. Me.Label95 = New System.Windows.Forms.Label()
  43. Me.TextBox187 = New System.Windows.Forms.TextBox()
  44. Me.Label94 = New System.Windows.Forms.Label()
  45. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  46. Me.Label48 = New System.Windows.Forms.Label()
  47. Me.TextBox144 = New System.Windows.Forms.TextBox()
  48. Me.TextBox143 = New System.Windows.Forms.TextBox()
  49. Me.TextBox142 = New System.Windows.Forms.TextBox()
  50. Me.ComboBox5 = New System.Windows.Forms.ComboBox()
  51. Me.Label46 = New System.Windows.Forms.Label()
  52. Me.TextBox141 = New System.Windows.Forms.TextBox()
  53. Me.Label47 = New System.Windows.Forms.Label()
  54. Me.TextBox140 = New System.Windows.Forms.TextBox()
  55. Me.TextBox139 = New System.Windows.Forms.TextBox()
  56. Me.Label49 = New System.Windows.Forms.Label()
  57. Me.ComboBox4 = New System.Windows.Forms.ComboBox()
  58. Me.TextBox182 = New System.Windows.Forms.TextBox()
  59. Me.TextBox181 = New System.Windows.Forms.TextBox()
  60. Me.TextBox227 = New System.Windows.Forms.TextBox()
  61. Me.TextBox226 = New System.Windows.Forms.TextBox()
  62. Me.TextBox173 = New System.Windows.Forms.TextBox()
  63. Me.TextBox138 = New System.Windows.Forms.TextBox()
  64. Me.TextBox137 = New System.Windows.Forms.TextBox()
  65. Me.TextBox136 = New System.Windows.Forms.TextBox()
  66. Me.TextBox135 = New System.Windows.Forms.TextBox()
  67. Me.TextBox134 = New System.Windows.Forms.TextBox()
  68. Me.TextBox133 = New System.Windows.Forms.TextBox()
  69. Me.TextBox132 = New System.Windows.Forms.TextBox()
  70. Me.TextBox131 = New System.Windows.Forms.TextBox()
  71. Me.TextBox130 = New System.Windows.Forms.TextBox()
  72. Me.TextBox129 = New System.Windows.Forms.TextBox()
  73. Me.TextBox128 = New System.Windows.Forms.TextBox()
  74. Me.TextBox127 = New System.Windows.Forms.TextBox()
  75. Me.TextBox126 = New System.Windows.Forms.TextBox()
  76. Me.TextBox125 = New System.Windows.Forms.TextBox()
  77. Me.TextBox124 = New System.Windows.Forms.TextBox()
  78. Me.TextBox123 = New System.Windows.Forms.TextBox()
  79. Me.TextBox122 = New System.Windows.Forms.TextBox()
  80. Me.TextBox121 = New System.Windows.Forms.TextBox()
  81. Me.TextBox120 = New System.Windows.Forms.TextBox()
  82. Me.TextBox119 = New System.Windows.Forms.TextBox()
  83. Me.TextBox118 = New System.Windows.Forms.TextBox()
  84. Me.TextBox117 = New System.Windows.Forms.TextBox()
  85. Me.TextBox116 = New System.Windows.Forms.TextBox()
  86. Me.TextBox115 = New System.Windows.Forms.TextBox()
  87. Me.TextBox114 = New System.Windows.Forms.TextBox()
  88. Me.Label45 = New System.Windows.Forms.Label()
  89. Me.Label44 = New System.Windows.Forms.Label()
  90. Me.Label43 = New System.Windows.Forms.Label()
  91. Me.Label42 = New System.Windows.Forms.Label()
  92. Me.Label41 = New System.Windows.Forms.Label()
  93. Me.Label40 = New System.Windows.Forms.Label()
  94. Me.TextBox113 = New System.Windows.Forms.TextBox()
  95. Me.TextBox112 = New System.Windows.Forms.TextBox()
  96. Me.TextBox111 = New System.Windows.Forms.TextBox()
  97. Me.TextBox110 = New System.Windows.Forms.TextBox()
  98. Me.TextBox109 = New System.Windows.Forms.TextBox()
  99. Me.TextBox108 = New System.Windows.Forms.TextBox()
  100. Me.TextBox107 = New System.Windows.Forms.TextBox()
  101. Me.TextBox106 = New System.Windows.Forms.TextBox()
  102. Me.TextBox105 = New System.Windows.Forms.TextBox()
  103. Me.TextBox104 = New System.Windows.Forms.TextBox()
  104. Me.TextBox103 = New System.Windows.Forms.TextBox()
  105. Me.TextBox102 = New System.Windows.Forms.TextBox()
  106. Me.TextBox101 = New System.Windows.Forms.TextBox()
  107. Me.TextBox100 = New System.Windows.Forms.TextBox()
  108. Me.TextBox99 = New System.Windows.Forms.TextBox()
  109. Me.TextBox98 = New System.Windows.Forms.TextBox()
  110. Me.TextBox97 = New System.Windows.Forms.TextBox()
  111. Me.TextBox96 = New System.Windows.Forms.TextBox()
  112. Me.TextBox95 = New System.Windows.Forms.TextBox()
  113. Me.TextBox94 = New System.Windows.Forms.TextBox()
  114. Me.TextBox93 = New System.Windows.Forms.TextBox()
  115. Me.TextBox92 = New System.Windows.Forms.TextBox()
  116. Me.TextBox91 = New System.Windows.Forms.TextBox()
  117. Me.TextBox90 = New System.Windows.Forms.TextBox()
  118. Me.TextBox89 = New System.Windows.Forms.TextBox()
  119. Me.TextBox88 = New System.Windows.Forms.TextBox()
  120. Me.TextBox87 = New System.Windows.Forms.TextBox()
  121. Me.TextBox86 = New System.Windows.Forms.TextBox()
  122. Me.TextBox85 = New System.Windows.Forms.TextBox()
  123. Me.TextBox84 = New System.Windows.Forms.TextBox()
  124. Me.TextBox83 = New System.Windows.Forms.TextBox()
  125. Me.TextBox82 = New System.Windows.Forms.TextBox()
  126. Me.TextBox81 = New System.Windows.Forms.TextBox()
  127. Me.TextBox80 = New System.Windows.Forms.TextBox()
  128. Me.TextBox79 = New System.Windows.Forms.TextBox()
  129. Me.TextBox78 = New System.Windows.Forms.TextBox()
  130. Me.TextBox77 = New System.Windows.Forms.TextBox()
  131. Me.TextBox76 = New System.Windows.Forms.TextBox()
  132. Me.TextBox75 = New System.Windows.Forms.TextBox()
  133. Me.TextBox74 = New System.Windows.Forms.TextBox()
  134. Me.TextBox73 = New System.Windows.Forms.TextBox()
  135. Me.TextBox72 = New System.Windows.Forms.TextBox()
  136. Me.TextBox71 = New System.Windows.Forms.TextBox()
  137. Me.TextBox70 = New System.Windows.Forms.TextBox()
  138. Me.TextBox69 = New System.Windows.Forms.TextBox()
  139. Me.TextBox68 = New System.Windows.Forms.TextBox()
  140. Me.TextBox67 = New System.Windows.Forms.TextBox()
  141. Me.TextBox66 = New System.Windows.Forms.TextBox()
  142. Me.TextBox65 = New System.Windows.Forms.TextBox()
  143. Me.TextBox64 = New System.Windows.Forms.TextBox()
  144. Me.TextBox63 = New System.Windows.Forms.TextBox()
  145. Me.TextBox62 = New System.Windows.Forms.TextBox()
  146. Me.TextBox61 = New System.Windows.Forms.TextBox()
  147. Me.TextBox60 = New System.Windows.Forms.TextBox()
  148. Me.TextBox59 = New System.Windows.Forms.TextBox()
  149. Me.TextBox58 = New System.Windows.Forms.TextBox()
  150. Me.TextBox57 = New System.Windows.Forms.TextBox()
  151. Me.TextBox56 = New System.Windows.Forms.TextBox()
  152. Me.TextBox55 = New System.Windows.Forms.TextBox()
  153. Me.Label39 = New System.Windows.Forms.Label()
  154. Me.Label38 = New System.Windows.Forms.Label()
  155. Me.Label37 = New System.Windows.Forms.Label()
  156. Me.Label36 = New System.Windows.Forms.Label()
  157. Me.Label35 = New System.Windows.Forms.Label()
  158. Me.Label34 = New System.Windows.Forms.Label()
  159. Me.TextBox54 = New System.Windows.Forms.TextBox()
  160. Me.TextBox53 = New System.Windows.Forms.TextBox()
  161. Me.TextBox52 = New System.Windows.Forms.TextBox()
  162. Me.TextBox51 = New System.Windows.Forms.TextBox()
  163. Me.TextBox50 = New System.Windows.Forms.TextBox()
  164. Me.TextBox49 = New System.Windows.Forms.TextBox()
  165. Me.TextBox48 = New System.Windows.Forms.TextBox()
  166. Me.TextBox47 = New System.Windows.Forms.TextBox()
  167. Me.TextBox46 = New System.Windows.Forms.TextBox()
  168. Me.TextBox45 = New System.Windows.Forms.TextBox()
  169. Me.TextBox44 = New System.Windows.Forms.TextBox()
  170. Me.TextBox43 = New System.Windows.Forms.TextBox()
  171. Me.TextBox42 = New System.Windows.Forms.TextBox()
  172. Me.TextBox41 = New System.Windows.Forms.TextBox()
  173. Me.TextBox40 = New System.Windows.Forms.TextBox()
  174. Me.TextBox39 = New System.Windows.Forms.TextBox()
  175. Me.TextBox38 = New System.Windows.Forms.TextBox()
  176. Me.TextBox37 = New System.Windows.Forms.TextBox()
  177. Me.TextBox36 = New System.Windows.Forms.TextBox()
  178. Me.TextBox35 = New System.Windows.Forms.TextBox()
  179. Me.TextBox34 = New System.Windows.Forms.TextBox()
  180. Me.TextBox33 = New System.Windows.Forms.TextBox()
  181. Me.TextBox32 = New System.Windows.Forms.TextBox()
  182. Me.TextBox31 = New System.Windows.Forms.TextBox()
  183. Me.TextBox30 = New System.Windows.Forms.TextBox()
  184. Me.TextBox29 = New System.Windows.Forms.TextBox()
  185. Me.TextBox28 = New System.Windows.Forms.TextBox()
  186. Me.TextBox27 = New System.Windows.Forms.TextBox()
  187. Me.TextBox26 = New System.Windows.Forms.TextBox()
  188. Me.TextBox25 = New System.Windows.Forms.TextBox()
  189. Me.Label33 = New System.Windows.Forms.Label()
  190. Me.TextBox24 = New System.Windows.Forms.TextBox()
  191. Me.TextBox23 = New System.Windows.Forms.TextBox()
  192. Me.TextBox22 = New System.Windows.Forms.TextBox()
  193. Me.TextBox21 = New System.Windows.Forms.TextBox()
  194. Me.TextBox20 = New System.Windows.Forms.TextBox()
  195. Me.TextBox19 = New System.Windows.Forms.TextBox()
  196. Me.TextBox18 = New System.Windows.Forms.TextBox()
  197. Me.TextBox17 = New System.Windows.Forms.TextBox()
  198. Me.TextBox16 = New System.Windows.Forms.TextBox()
  199. Me.TextBox15 = New System.Windows.Forms.TextBox()
  200. Me.TextBox14 = New System.Windows.Forms.TextBox()
  201. Me.TextBox13 = New System.Windows.Forms.TextBox()
  202. Me.TextBox12 = New System.Windows.Forms.TextBox()
  203. Me.Label32 = New System.Windows.Forms.Label()
  204. Me.Label31 = New System.Windows.Forms.Label()
  205. Me.Label30 = New System.Windows.Forms.Label()
  206. Me.Label29 = New System.Windows.Forms.Label()
  207. Me.Label28 = New System.Windows.Forms.Label()
  208. Me.Label27 = New System.Windows.Forms.Label()
  209. Me.Label26 = New System.Windows.Forms.Label()
  210. Me.Label25 = New System.Windows.Forms.Label()
  211. Me.Label24 = New System.Windows.Forms.Label()
  212. Me.Label23 = New System.Windows.Forms.Label()
  213. Me.Label22 = New System.Windows.Forms.Label()
  214. Me.Label21 = New System.Windows.Forms.Label()
  215. Me.Label20 = New System.Windows.Forms.Label()
  216. Me.Label19 = New System.Windows.Forms.Label()
  217. Me.Label18 = New System.Windows.Forms.Label()
  218. Me.Label17 = New System.Windows.Forms.Label()
  219. Me.Label16 = New System.Windows.Forms.Label()
  220. Me.Label15 = New System.Windows.Forms.Label()
  221. Me.ComboBox3 = New System.Windows.Forms.ComboBox()
  222. Me.ComboBox2 = New System.Windows.Forms.ComboBox()
  223. Me.ComboBox1 = New System.Windows.Forms.ComboBox()
  224. Me.Label14 = New System.Windows.Forms.Label()
  225. Me.Label13 = New System.Windows.Forms.Label()
  226. Me.Label12 = New System.Windows.Forms.Label()
  227. Me.Label11 = New System.Windows.Forms.Label()
  228. Me.Label10 = New System.Windows.Forms.Label()
  229. Me.Label9 = New System.Windows.Forms.Label()
  230. Me.TextBox11 = New System.Windows.Forms.TextBox()
  231. Me.TextBox10 = New System.Windows.Forms.TextBox()
  232. Me.TextBox9 = New System.Windows.Forms.TextBox()
  233. Me.Label8 = New System.Windows.Forms.Label()
  234. Me.Label7 = New System.Windows.Forms.Label()
  235. Me.Label6 = New System.Windows.Forms.Label()
  236. Me.TextBox8 = New System.Windows.Forms.TextBox()
  237. Me.TextBox7 = New System.Windows.Forms.TextBox()
  238. Me.TextBox6 = New System.Windows.Forms.TextBox()
  239. Me.TextBox5 = New System.Windows.Forms.TextBox()
  240. Me.TextBox4 = New System.Windows.Forms.TextBox()
  241. Me.TextBox3 = New System.Windows.Forms.TextBox()
  242. Me.TextBox2 = New System.Windows.Forms.TextBox()
  243. Me.TextBox1 = New System.Windows.Forms.TextBox()
  244. Me.Label5 = New System.Windows.Forms.Label()
  245. Me.Label4 = New System.Windows.Forms.Label()
  246. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  247. Me.Button10 = New System.Windows.Forms.Button()
  248. Me.Button6 = New System.Windows.Forms.Button()
  249. Me.Button7 = New System.Windows.Forms.Button()
  250. Me.Button8 = New System.Windows.Forms.Button()
  251. Me.Button1 = New System.Windows.Forms.Button()
  252. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  253. Me.Label63 = New System.Windows.Forms.Label()
  254. Me.Label62 = New System.Windows.Forms.Label()
  255. Me.Label61 = New System.Windows.Forms.Label()
  256. Me.Label60 = New System.Windows.Forms.Label()
  257. Me.Label59 = New System.Windows.Forms.Label()
  258. Me.Label58 = New System.Windows.Forms.Label()
  259. Me.Label57 = New System.Windows.Forms.Label()
  260. Me.Label56 = New System.Windows.Forms.Label()
  261. Me.Label53 = New System.Windows.Forms.Label()
  262. Me.Label52 = New System.Windows.Forms.Label()
  263. Me.Label51 = New System.Windows.Forms.Label()
  264. Me.Label50 = New System.Windows.Forms.Label()
  265. Me.TextBox168 = New System.Windows.Forms.TextBox()
  266. Me.TextBox167 = New System.Windows.Forms.TextBox()
  267. Me.TextBox166 = New System.Windows.Forms.TextBox()
  268. Me.TextBox165 = New System.Windows.Forms.TextBox()
  269. Me.TextBox164 = New System.Windows.Forms.TextBox()
  270. Me.TextBox163 = New System.Windows.Forms.TextBox()
  271. Me.TextBox162 = New System.Windows.Forms.TextBox()
  272. Me.TextBox161 = New System.Windows.Forms.TextBox()
  273. Me.TextBox160 = New System.Windows.Forms.TextBox()
  274. Me.TextBox159 = New System.Windows.Forms.TextBox()
  275. Me.TextBox158 = New System.Windows.Forms.TextBox()
  276. Me.TextBox157 = New System.Windows.Forms.TextBox()
  277. Me.TextBox156 = New System.Windows.Forms.TextBox()
  278. Me.TextBox155 = New System.Windows.Forms.TextBox()
  279. Me.TextBox154 = New System.Windows.Forms.TextBox()
  280. Me.TextBox153 = New System.Windows.Forms.TextBox()
  281. Me.TextBox152 = New System.Windows.Forms.TextBox()
  282. Me.TextBox151 = New System.Windows.Forms.TextBox()
  283. Me.TextBox150 = New System.Windows.Forms.TextBox()
  284. Me.TextBox149 = New System.Windows.Forms.TextBox()
  285. Me.TextBox148 = New System.Windows.Forms.TextBox()
  286. Me.TextBox147 = New System.Windows.Forms.TextBox()
  287. Me.TextBox146 = New System.Windows.Forms.TextBox()
  288. Me.TextBox145 = New System.Windows.Forms.TextBox()
  289. Me.Label55 = New System.Windows.Forms.Label()
  290. Me.Label54 = New System.Windows.Forms.Label()
  291. Me.Label65 = New System.Windows.Forms.Label()
  292. Me.卦辭_tb = New System.Windows.Forms.TextBox()
  293. Me.篆曰_tb = New System.Windows.Forms.TextBox()
  294. Me.Label66 = New System.Windows.Forms.Label()
  295. Me.象曰_tb = New System.Windows.Forms.TextBox()
  296. Me.Label68 = New System.Windows.Forms.Label()
  297. Me.Label67 = New System.Windows.Forms.Label()
  298. Me.經文3_tb = New System.Windows.Forms.TextBox()
  299. Me.經文4_tb = New System.Windows.Forms.TextBox()
  300. Me.經文2_tb = New System.Windows.Forms.TextBox()
  301. Me.經文1_tb = New System.Windows.Forms.TextBox()
  302. Me.TextBox178 = New System.Windows.Forms.TextBox()
  303. Me.TextBox180 = New System.Windows.Forms.TextBox()
  304. Me.GroupBox7 = New System.Windows.Forms.GroupBox()
  305. Me.TextBox190 = New System.Windows.Forms.TextBox()
  306. Me.TextBox172 = New System.Windows.Forms.TextBox()
  307. Me.Label69 = New System.Windows.Forms.Label()
  308. Me.Label108 = New System.Windows.Forms.Label()
  309. Me.Label109 = New System.Windows.Forms.Label()
  310. Me.Label110 = New System.Windows.Forms.Label()
  311. Me.Label111 = New System.Windows.Forms.Label()
  312. Me.Label112 = New System.Windows.Forms.Label()
  313. Me.Label113 = New System.Windows.Forms.Label()
  314. Me.Label114 = New System.Windows.Forms.Label()
  315. Me.Label115 = New System.Windows.Forms.Label()
  316. Me.Label116 = New System.Windows.Forms.Label()
  317. Me.Label117 = New System.Windows.Forms.Label()
  318. Me.Label118 = New System.Windows.Forms.Label()
  319. Me.Label119 = New System.Windows.Forms.Label()
  320. Me.Label107 = New System.Windows.Forms.Label()
  321. Me.Label64 = New System.Windows.Forms.Label()
  322. Me.Label96 = New System.Windows.Forms.Label()
  323. Me.Label97 = New System.Windows.Forms.Label()
  324. Me.Label98 = New System.Windows.Forms.Label()
  325. Me.Label99 = New System.Windows.Forms.Label()
  326. Me.Label100 = New System.Windows.Forms.Label()
  327. Me.Label101 = New System.Windows.Forms.Label()
  328. Me.Label102 = New System.Windows.Forms.Label()
  329. Me.Label103 = New System.Windows.Forms.Label()
  330. Me.Label104 = New System.Windows.Forms.Label()
  331. Me.Label105 = New System.Windows.Forms.Label()
  332. Me.Label106 = New System.Windows.Forms.Label()
  333. Me.Label73 = New System.Windows.Forms.Label()
  334. Me.Label74 = New System.Windows.Forms.Label()
  335. Me.Label75 = New System.Windows.Forms.Label()
  336. Me.Label76 = New System.Windows.Forms.Label()
  337. Me.Label85 = New System.Windows.Forms.Label()
  338. Me.Label86 = New System.Windows.Forms.Label()
  339. Me.Label87 = New System.Windows.Forms.Label()
  340. Me.Label88 = New System.Windows.Forms.Label()
  341. Me.Label89 = New System.Windows.Forms.Label()
  342. Me.Label90 = New System.Windows.Forms.Label()
  343. Me.Label91 = New System.Windows.Forms.Label()
  344. Me.Label92 = New System.Windows.Forms.Label()
  345. Me.GroupBox8 = New System.Windows.Forms.GroupBox()
  346. Me.DataGridView1 = New System.Windows.Forms.DataGridView()
  347. Me.GroupBox9 = New System.Windows.Forms.GroupBox()
  348. Me.Label93 = New System.Windows.Forms.Label()
  349. Me.TextBox183 = New System.Windows.Forms.TextBox()
  350. Me.TextBox179 = New System.Windows.Forms.TextBox()
  351. Me.Button12 = New System.Windows.Forms.Button()
  352. Me.Button13 = New System.Windows.Forms.Button()
  353. Me.Button14 = New System.Windows.Forms.Button()
  354. Me.Button15 = New System.Windows.Forms.Button()
  355. Me.GroupBox6 = New System.Windows.Forms.GroupBox()
  356. Me.Label79 = New System.Windows.Forms.Label()
  357. Me.Label78 = New System.Windows.Forms.Label()
  358. Me.Label72 = New System.Windows.Forms.Label()
  359. Me.Label71 = New System.Windows.Forms.Label()
  360. Me.Label148 = New System.Windows.Forms.Label()
  361. Me.Label70 = New System.Windows.Forms.Label()
  362. Me.Label147 = New System.Windows.Forms.Label()
  363. Me.TextBox200 = New System.Windows.Forms.TextBox()
  364. Me.Label123 = New System.Windows.Forms.Label()
  365. Me.Label77 = New System.Windows.Forms.Label()
  366. Me.Label83 = New System.Windows.Forms.Label()
  367. Me.Label120 = New System.Windows.Forms.Label()
  368. Me.Button16 = New System.Windows.Forms.Button()
  369. Me.Label122 = New System.Windows.Forms.Label()
  370. Me.Label125 = New System.Windows.Forms.Label()
  371. Me.Label128 = New System.Windows.Forms.Label()
  372. Me.Label131 = New System.Windows.Forms.Label()
  373. Me.Label132 = New System.Windows.Forms.Label()
  374. Me.Label134 = New System.Windows.Forms.Label()
  375. Me.Label135 = New System.Windows.Forms.Label()
  376. Me.Label138 = New System.Windows.Forms.Label()
  377. Me.Label141 = New System.Windows.Forms.Label()
  378. Me.Label145 = New System.Windows.Forms.Label()
  379. Me.GroupBox10 = New System.Windows.Forms.GroupBox()
  380. Me.GroupBox12 = New System.Windows.Forms.GroupBox()
  381. Me.Label129 = New System.Windows.Forms.Label()
  382. Me.Label124 = New System.Windows.Forms.Label()
  383. Me.Label130 = New System.Windows.Forms.Label()
  384. Me.Label133 = New System.Windows.Forms.Label()
  385. Me.Label137 = New System.Windows.Forms.Label()
  386. Me.Label139 = New System.Windows.Forms.Label()
  387. Me.Button34 = New System.Windows.Forms.Button()
  388. Me.Label140 = New System.Windows.Forms.Label()
  389. Me.TextBox201 = New System.Windows.Forms.TextBox()
  390. Me.Label136 = New System.Windows.Forms.Label()
  391. Me.Label142 = New System.Windows.Forms.Label()
  392. Me.Label151 = New System.Windows.Forms.Label()
  393. Me.Label146 = New System.Windows.Forms.Label()
  394. Me.Label144 = New System.Windows.Forms.Label()
  395. Me.Label143 = New System.Windows.Forms.Label()
  396. Me.Label149 = New System.Windows.Forms.Label()
  397. Me.Label150 = New System.Windows.Forms.Label()
  398. Me.Label152 = New System.Windows.Forms.Label()
  399. Me.Label153 = New System.Windows.Forms.Label()
  400. Me.Button33 = New System.Windows.Forms.Button()
  401. Me.Button32 = New System.Windows.Forms.Button()
  402. Me.Button17 = New System.Windows.Forms.Button()
  403. Me.RadioButton10 = New System.Windows.Forms.RadioButton()
  404. Me.RadioButton8 = New System.Windows.Forms.RadioButton()
  405. Me.Button18 = New System.Windows.Forms.Button()
  406. Me.RadioButton3 = New System.Windows.Forms.RadioButton()
  407. Me.RadioButton4 = New System.Windows.Forms.RadioButton()
  408. Me.Button23 = New System.Windows.Forms.Button()
  409. Me.RadioButton9 = New System.Windows.Forms.RadioButton()
  410. Me.Button24 = New System.Windows.Forms.Button()
  411. Me.Button20 = New System.Windows.Forms.Button()
  412. Me.Label121 = New System.Windows.Forms.Label()
  413. Me.RadioButton5 = New System.Windows.Forms.RadioButton()
  414. Me.RadioButton6 = New System.Windows.Forms.RadioButton()
  415. Me.RadioButton1 = New System.Windows.Forms.RadioButton()
  416. Me.Button19 = New System.Windows.Forms.Button()
  417. Me.TextBox199 = New System.Windows.Forms.TextBox()
  418. Me.RadioButton7 = New System.Windows.Forms.RadioButton()
  419. Me.CheckBox1 = New System.Windows.Forms.CheckBox()
  420. Me.RadioButton2 = New System.Windows.Forms.RadioButton()
  421. Me.Button21 = New System.Windows.Forms.Button()
  422. Me.Button22 = New System.Windows.Forms.Button()
  423. Me.Button28 = New System.Windows.Forms.Button()
  424. Me.Button27 = New System.Windows.Forms.Button()
  425. Me.Button30 = New System.Windows.Forms.Button()
  426. Me.Label82 = New System.Windows.Forms.Label()
  427. Me.Button31 = New System.Windows.Forms.Button()
  428. Me.Button29 = New System.Windows.Forms.Button()
  429. Me.Label84 = New System.Windows.Forms.Label()
  430. Me.Label81 = New System.Windows.Forms.Label()
  431. Me.Label80 = New System.Windows.Forms.Label()
  432. Me.Button26 = New System.Windows.Forms.Button()
  433. Me.Button25 = New System.Windows.Forms.Button()
  434. Me.GroupBox11 = New System.Windows.Forms.GroupBox()
  435. Me.Label126 = New System.Windows.Forms.Label()
  436. Me.Label127 = New System.Windows.Forms.Label()
  437. Me.易林_tb = New System.Windows.Forms.TextBox()
  438. Me.Label154 = New System.Windows.Forms.Label()
  439. Me.Label155 = New System.Windows.Forms.Label()
  440. Me.Label156 = New System.Windows.Forms.Label()
  441. Me.Label157 = New System.Windows.Forms.Label()
  442. Me.Label158 = New System.Windows.Forms.Label()
  443. Me.存檔_bt = New System.Windows.Forms.Button()
  444. Me.GroupBox3.SuspendLayout()
  445. Me.GroupBox2.SuspendLayout()
  446. Me.GroupBox4.SuspendLayout()
  447. Me.GroupBox7.SuspendLayout()
  448. Me.GroupBox8.SuspendLayout()
  449. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  450. Me.GroupBox9.SuspendLayout()
  451. Me.GroupBox6.SuspendLayout()
  452. Me.GroupBox10.SuspendLayout()
  453. Me.GroupBox12.SuspendLayout()
  454. Me.GroupBox11.SuspendLayout()
  455. Me.SuspendLayout()
  456. '
  457. 'DateTimePicker1
  458. '
  459. Me.DateTimePicker1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  460. Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  461. Me.DateTimePicker1.Location = New System.Drawing.Point(41, 26)
  462. Me.DateTimePicker1.Name = "DateTimePicker1"
  463. Me.DateTimePicker1.Size = New System.Drawing.Size(110, 25)
  464. Me.DateTimePicker1.TabIndex = 0
  465. '
  466. 'Label1
  467. '
  468. Me.Label1.AutoSize = True
  469. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  470. Me.Label1.Location = New System.Drawing.Point(6, 32)
  471. Me.Label1.Name = "Label1"
  472. Me.Label1.Size = New System.Drawing.Size(34, 17)
  473. Me.Label1.TabIndex = 1
  474. Me.Label1.Text = "日期"
  475. '
  476. 'Label2
  477. '
  478. Me.Label2.AutoSize = True
  479. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  480. Me.Label2.ForeColor = System.Drawing.Color.Blue
  481. Me.Label2.Location = New System.Drawing.Point(1159, 65)
  482. Me.Label2.Name = "Label2"
  483. Me.Label2.Size = New System.Drawing.Size(26, 21)
  484. Me.Label2.TabIndex = 2
  485. Me.Label2.Text = "年"
  486. '
  487. 'Label3
  488. '
  489. Me.Label3.AutoSize = True
  490. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  491. Me.Label3.ForeColor = System.Drawing.Color.Blue
  492. Me.Label3.Location = New System.Drawing.Point(1159, 141)
  493. Me.Label3.Name = "Label3"
  494. Me.Label3.Size = New System.Drawing.Size(26, 21)
  495. Me.Label3.TabIndex = 3
  496. Me.Label3.Text = "月"
  497. '
  498. 'TextBox198
  499. '
  500. Me.TextBox198.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  501. Me.TextBox198.ForeColor = System.Drawing.Color.Black
  502. Me.TextBox198.Location = New System.Drawing.Point(697, 27)
  503. Me.TextBox198.Multiline = True
  504. Me.TextBox198.Name = "TextBox198"
  505. Me.TextBox198.Size = New System.Drawing.Size(40, 20)
  506. Me.TextBox198.TabIndex = 212
  507. '
  508. 'TextBox197
  509. '
  510. Me.TextBox197.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  511. Me.TextBox197.ForeColor = System.Drawing.Color.Black
  512. Me.TextBox197.Location = New System.Drawing.Point(697, 198)
  513. Me.TextBox197.Multiline = True
  514. Me.TextBox197.Name = "TextBox197"
  515. Me.TextBox197.Size = New System.Drawing.Size(40, 20)
  516. Me.TextBox197.TabIndex = 211
  517. '
  518. 'TextBox196
  519. '
  520. Me.TextBox196.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  521. Me.TextBox196.ForeColor = System.Drawing.Color.Black
  522. Me.TextBox196.Location = New System.Drawing.Point(697, 373)
  523. Me.TextBox196.Multiline = True
  524. Me.TextBox196.Name = "TextBox196"
  525. Me.TextBox196.Size = New System.Drawing.Size(40, 20)
  526. Me.TextBox196.TabIndex = 210
  527. '
  528. 'TextBox195
  529. '
  530. Me.TextBox195.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  531. Me.TextBox195.ForeColor = System.Drawing.Color.Black
  532. Me.TextBox195.Location = New System.Drawing.Point(697, 546)
  533. Me.TextBox195.Multiline = True
  534. Me.TextBox195.Name = "TextBox195"
  535. Me.TextBox195.Size = New System.Drawing.Size(40, 20)
  536. Me.TextBox195.TabIndex = 209
  537. '
  538. 'TextBox194
  539. '
  540. Me.TextBox194.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  541. Me.TextBox194.ForeColor = System.Drawing.Color.Black
  542. Me.TextBox194.Location = New System.Drawing.Point(697, 709)
  543. Me.TextBox194.Multiline = True
  544. Me.TextBox194.Name = "TextBox194"
  545. Me.TextBox194.Size = New System.Drawing.Size(40, 20)
  546. Me.TextBox194.TabIndex = 208
  547. '
  548. 'TextBox193
  549. '
  550. Me.TextBox193.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  551. Me.TextBox193.ForeColor = System.Drawing.Color.Black
  552. Me.TextBox193.Location = New System.Drawing.Point(696, 868)
  553. Me.TextBox193.Multiline = True
  554. Me.TextBox193.Name = "TextBox193"
  555. Me.TextBox193.Size = New System.Drawing.Size(40, 20)
  556. Me.TextBox193.TabIndex = 207
  557. '
  558. 'TextBox192
  559. '
  560. Me.TextBox192.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  561. Me.TextBox192.ForeColor = System.Drawing.Color.Black
  562. Me.TextBox192.Location = New System.Drawing.Point(871, 79)
  563. Me.TextBox192.Multiline = True
  564. Me.TextBox192.Name = "TextBox192"
  565. Me.TextBox192.Size = New System.Drawing.Size(40, 20)
  566. Me.TextBox192.TabIndex = 206
  567. '
  568. 'TextBox191
  569. '
  570. Me.TextBox191.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  571. Me.TextBox191.ForeColor = System.Drawing.Color.Black
  572. Me.TextBox191.Location = New System.Drawing.Point(871, 250)
  573. Me.TextBox191.Multiline = True
  574. Me.TextBox191.Name = "TextBox191"
  575. Me.TextBox191.Size = New System.Drawing.Size(40, 20)
  576. Me.TextBox191.TabIndex = 205
  577. '
  578. 'TextBox189
  579. '
  580. Me.TextBox189.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  581. Me.TextBox189.ForeColor = System.Drawing.Color.Black
  582. Me.TextBox189.Location = New System.Drawing.Point(871, 424)
  583. Me.TextBox189.Multiline = True
  584. Me.TextBox189.Name = "TextBox189"
  585. Me.TextBox189.Size = New System.Drawing.Size(40, 20)
  586. Me.TextBox189.TabIndex = 204
  587. '
  588. 'TextBox186
  589. '
  590. Me.TextBox186.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  591. Me.TextBox186.ForeColor = System.Drawing.Color.Black
  592. Me.TextBox186.Location = New System.Drawing.Point(871, 598)
  593. Me.TextBox186.Multiline = True
  594. Me.TextBox186.Name = "TextBox186"
  595. Me.TextBox186.Size = New System.Drawing.Size(40, 20)
  596. Me.TextBox186.TabIndex = 203
  597. '
  598. 'TextBox185
  599. '
  600. Me.TextBox185.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  601. Me.TextBox185.ForeColor = System.Drawing.Color.Black
  602. Me.TextBox185.Location = New System.Drawing.Point(871, 759)
  603. Me.TextBox185.Multiline = True
  604. Me.TextBox185.Name = "TextBox185"
  605. Me.TextBox185.Size = New System.Drawing.Size(40, 20)
  606. Me.TextBox185.TabIndex = 202
  607. '
  608. 'TextBox184
  609. '
  610. Me.TextBox184.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  611. Me.TextBox184.ForeColor = System.Drawing.Color.Black
  612. Me.TextBox184.Location = New System.Drawing.Point(870, 918)
  613. Me.TextBox184.Multiline = True
  614. Me.TextBox184.Name = "TextBox184"
  615. Me.TextBox184.Size = New System.Drawing.Size(40, 20)
  616. Me.TextBox184.TabIndex = 201
  617. '
  618. 'TextBox188
  619. '
  620. Me.TextBox188.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  621. Me.TextBox188.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  622. Me.TextBox188.Location = New System.Drawing.Point(1163, 520)
  623. Me.TextBox188.Multiline = True
  624. Me.TextBox188.Name = "TextBox188"
  625. Me.TextBox188.Size = New System.Drawing.Size(20, 20)
  626. Me.TextBox188.TabIndex = 200
  627. '
  628. 'Label95
  629. '
  630. Me.Label95.AutoSize = True
  631. Me.Label95.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  632. Me.Label95.ForeColor = System.Drawing.Color.Purple
  633. Me.Label95.Location = New System.Drawing.Point(1160, 543)
  634. Me.Label95.Name = "Label95"
  635. Me.Label95.Size = New System.Drawing.Size(26, 21)
  636. Me.Label95.TabIndex = 199
  637. Me.Label95.Text = "囚"
  638. '
  639. 'TextBox187
  640. '
  641. Me.TextBox187.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  642. Me.TextBox187.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  643. Me.TextBox187.Location = New System.Drawing.Point(1163, 473)
  644. Me.TextBox187.Multiline = True
  645. Me.TextBox187.Name = "TextBox187"
  646. Me.TextBox187.Size = New System.Drawing.Size(20, 20)
  647. Me.TextBox187.TabIndex = 198
  648. '
  649. 'Label94
  650. '
  651. Me.Label94.AutoSize = True
  652. Me.Label94.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  653. Me.Label94.ForeColor = System.Drawing.Color.Purple
  654. Me.Label94.Location = New System.Drawing.Point(1160, 496)
  655. Me.Label94.Name = "Label94"
  656. Me.Label94.Size = New System.Drawing.Size(26, 21)
  657. Me.Label94.TabIndex = 197
  658. Me.Label94.Text = "休"
  659. '
  660. 'GroupBox3
  661. '
  662. Me.GroupBox3.Controls.Add(Me.Label48)
  663. Me.GroupBox3.Controls.Add(Me.TextBox144)
  664. Me.GroupBox3.Controls.Add(Me.TextBox143)
  665. Me.GroupBox3.Controls.Add(Me.TextBox142)
  666. Me.GroupBox3.Controls.Add(Me.ComboBox5)
  667. Me.GroupBox3.Controls.Add(Me.Label46)
  668. Me.GroupBox3.Controls.Add(Me.TextBox141)
  669. Me.GroupBox3.Controls.Add(Me.Label47)
  670. Me.GroupBox3.Controls.Add(Me.TextBox140)
  671. Me.GroupBox3.Controls.Add(Me.TextBox139)
  672. Me.GroupBox3.Controls.Add(Me.Label49)
  673. Me.GroupBox3.Controls.Add(Me.ComboBox4)
  674. Me.GroupBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  675. Me.GroupBox3.Location = New System.Drawing.Point(1031, 693)
  676. Me.GroupBox3.Name = "GroupBox3"
  677. Me.GroupBox3.Size = New System.Drawing.Size(150, 142)
  678. Me.GroupBox3.TabIndex = 196
  679. Me.GroupBox3.TabStop = False
  680. '
  681. 'Label48
  682. '
  683. Me.Label48.AutoSize = True
  684. Me.Label48.Location = New System.Drawing.Point(4, 111)
  685. Me.Label48.Name = "Label48"
  686. Me.Label48.Size = New System.Drawing.Size(34, 17)
  687. Me.Label48.TabIndex = 190
  688. Me.Label48.Text = "仇神"
  689. '
  690. 'TextBox144
  691. '
  692. Me.TextBox144.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  693. Me.TextBox144.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  694. Me.TextBox144.Location = New System.Drawing.Point(100, 108)
  695. Me.TextBox144.Multiline = True
  696. Me.TextBox144.Name = "TextBox144"
  697. Me.TextBox144.Size = New System.Drawing.Size(44, 25)
  698. Me.TextBox144.TabIndex = 199
  699. '
  700. 'TextBox143
  701. '
  702. Me.TextBox143.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  703. Me.TextBox143.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  704. Me.TextBox143.Location = New System.Drawing.Point(100, 77)
  705. Me.TextBox143.Multiline = True
  706. Me.TextBox143.Name = "TextBox143"
  707. Me.TextBox143.Size = New System.Drawing.Size(44, 25)
  708. Me.TextBox143.TabIndex = 198
  709. '
  710. 'TextBox142
  711. '
  712. Me.TextBox142.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  713. Me.TextBox142.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  714. Me.TextBox142.Location = New System.Drawing.Point(100, 46)
  715. Me.TextBox142.Multiline = True
  716. Me.TextBox142.Name = "TextBox142"
  717. Me.TextBox142.Size = New System.Drawing.Size(44, 25)
  718. Me.TextBox142.TabIndex = 197
  719. '
  720. 'ComboBox5
  721. '
  722. Me.ComboBox5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  723. Me.ComboBox5.FormattingEnabled = True
  724. Me.ComboBox5.Items.AddRange(New Object() {"水", "火", "木", "金", "土"})
  725. Me.ComboBox5.Location = New System.Drawing.Point(100, 15)
  726. Me.ComboBox5.Name = "ComboBox5"
  727. Me.ComboBox5.Size = New System.Drawing.Size(44, 25)
  728. Me.ComboBox5.TabIndex = 196
  729. '
  730. 'Label46
  731. '
  732. Me.Label46.AutoSize = True
  733. Me.Label46.Location = New System.Drawing.Point(4, 18)
  734. Me.Label46.Name = "Label46"
  735. Me.Label46.Size = New System.Drawing.Size(34, 17)
  736. Me.Label46.TabIndex = 188
  737. Me.Label46.Text = "用神"
  738. '
  739. 'TextBox141
  740. '
  741. Me.TextBox141.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  742. Me.TextBox141.ForeColor = System.Drawing.Color.Black
  743. Me.TextBox141.Location = New System.Drawing.Point(44, 108)
  744. Me.TextBox141.Multiline = True
  745. Me.TextBox141.Name = "TextBox141"
  746. Me.TextBox141.Size = New System.Drawing.Size(50, 25)
  747. Me.TextBox141.TabIndex = 195
  748. '
  749. 'Label47
  750. '
  751. Me.Label47.AutoSize = True
  752. Me.Label47.Location = New System.Drawing.Point(4, 49)
  753. Me.Label47.Name = "Label47"
  754. Me.Label47.Size = New System.Drawing.Size(34, 17)
  755. Me.Label47.TabIndex = 189
  756. Me.Label47.Text = "原神"
  757. '
  758. 'TextBox140
  759. '
  760. Me.TextBox140.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  761. Me.TextBox140.ForeColor = System.Drawing.Color.Black
  762. Me.TextBox140.Location = New System.Drawing.Point(44, 77)
  763. Me.TextBox140.Multiline = True
  764. Me.TextBox140.Name = "TextBox140"
  765. Me.TextBox140.Size = New System.Drawing.Size(50, 25)
  766. Me.TextBox140.TabIndex = 194
  767. '
  768. 'TextBox139
  769. '
  770. Me.TextBox139.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  771. Me.TextBox139.ForeColor = System.Drawing.Color.Black
  772. Me.TextBox139.Location = New System.Drawing.Point(44, 46)
  773. Me.TextBox139.Multiline = True
  774. Me.TextBox139.Name = "TextBox139"
  775. Me.TextBox139.Size = New System.Drawing.Size(50, 25)
  776. Me.TextBox139.TabIndex = 193
  777. '
  778. 'Label49
  779. '
  780. Me.Label49.AutoSize = True
  781. Me.Label49.Location = New System.Drawing.Point(4, 80)
  782. Me.Label49.Name = "Label49"
  783. Me.Label49.Size = New System.Drawing.Size(34, 17)
  784. Me.Label49.TabIndex = 191
  785. Me.Label49.Text = "忌神"
  786. '
  787. 'ComboBox4
  788. '
  789. Me.ComboBox4.FormattingEnabled = True
  790. Me.ComboBox4.Items.AddRange(New Object() {"父母", "官鬼", "子孫", "妻財", "兄弟"})
  791. Me.ComboBox4.Location = New System.Drawing.Point(44, 15)
  792. Me.ComboBox4.Name = "ComboBox4"
  793. Me.ComboBox4.Size = New System.Drawing.Size(50, 25)
  794. Me.ComboBox4.TabIndex = 192
  795. '
  796. 'TextBox182
  797. '
  798. Me.TextBox182.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  799. Me.TextBox182.ForeColor = System.Drawing.Color.Black
  800. Me.TextBox182.Location = New System.Drawing.Point(1067, 870)
  801. Me.TextBox182.Multiline = True
  802. Me.TextBox182.Name = "TextBox182"
  803. Me.TextBox182.Size = New System.Drawing.Size(25, 99)
  804. Me.TextBox182.TabIndex = 193
  805. Me.TextBox182.Visible = False
  806. '
  807. 'TextBox181
  808. '
  809. Me.TextBox181.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  810. Me.TextBox181.ForeColor = System.Drawing.Color.Black
  811. Me.TextBox181.Location = New System.Drawing.Point(1098, 870)
  812. Me.TextBox181.Multiline = True
  813. Me.TextBox181.Name = "TextBox181"
  814. Me.TextBox181.Size = New System.Drawing.Size(25, 99)
  815. Me.TextBox181.TabIndex = 192
  816. Me.TextBox181.Visible = False
  817. '
  818. 'TextBox227
  819. '
  820. Me.TextBox227.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  821. Me.TextBox227.ForeColor = System.Drawing.Color.Black
  822. Me.TextBox227.Location = New System.Drawing.Point(1062, 202)
  823. Me.TextBox227.Multiline = True
  824. Me.TextBox227.Name = "TextBox227"
  825. Me.TextBox227.Size = New System.Drawing.Size(25, 50)
  826. Me.TextBox227.TabIndex = 191
  827. '
  828. 'TextBox226
  829. '
  830. Me.TextBox226.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  831. Me.TextBox226.ForeColor = System.Drawing.Color.Black
  832. Me.TextBox226.Location = New System.Drawing.Point(1062, 57)
  833. Me.TextBox226.Multiline = True
  834. Me.TextBox226.Name = "TextBox226"
  835. Me.TextBox226.Size = New System.Drawing.Size(25, 50)
  836. Me.TextBox226.TabIndex = 190
  837. '
  838. 'TextBox173
  839. '
  840. Me.TextBox173.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  841. Me.TextBox173.ForeColor = System.Drawing.Color.Black
  842. Me.TextBox173.Location = New System.Drawing.Point(1036, 963)
  843. Me.TextBox173.Multiline = True
  844. Me.TextBox173.Name = "TextBox173"
  845. Me.TextBox173.Size = New System.Drawing.Size(25, 25)
  846. Me.TextBox173.TabIndex = 189
  847. Me.TextBox173.Visible = False
  848. '
  849. 'TextBox138
  850. '
  851. Me.TextBox138.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  852. Me.TextBox138.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  853. Me.TextBox138.Location = New System.Drawing.Point(742, 79)
  854. Me.TextBox138.Multiline = True
  855. Me.TextBox138.Name = "TextBox138"
  856. Me.TextBox138.Size = New System.Drawing.Size(20, 20)
  857. Me.TextBox138.TabIndex = 187
  858. '
  859. 'TextBox137
  860. '
  861. Me.TextBox137.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  862. Me.TextBox137.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  863. Me.TextBox137.Location = New System.Drawing.Point(742, 251)
  864. Me.TextBox137.Multiline = True
  865. Me.TextBox137.Name = "TextBox137"
  866. Me.TextBox137.Size = New System.Drawing.Size(20, 20)
  867. Me.TextBox137.TabIndex = 186
  868. '
  869. 'TextBox136
  870. '
  871. Me.TextBox136.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  872. Me.TextBox136.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  873. Me.TextBox136.Location = New System.Drawing.Point(742, 426)
  874. Me.TextBox136.Multiline = True
  875. Me.TextBox136.Name = "TextBox136"
  876. Me.TextBox136.Size = New System.Drawing.Size(20, 20)
  877. Me.TextBox136.TabIndex = 185
  878. '
  879. 'TextBox135
  880. '
  881. Me.TextBox135.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  882. Me.TextBox135.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  883. Me.TextBox135.Location = New System.Drawing.Point(742, 599)
  884. Me.TextBox135.Multiline = True
  885. Me.TextBox135.Name = "TextBox135"
  886. Me.TextBox135.Size = New System.Drawing.Size(20, 20)
  887. Me.TextBox135.TabIndex = 184
  888. '
  889. 'TextBox134
  890. '
  891. Me.TextBox134.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  892. Me.TextBox134.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  893. Me.TextBox134.Location = New System.Drawing.Point(742, 760)
  894. Me.TextBox134.Multiline = True
  895. Me.TextBox134.Name = "TextBox134"
  896. Me.TextBox134.Size = New System.Drawing.Size(20, 20)
  897. Me.TextBox134.TabIndex = 183
  898. '
  899. 'TextBox133
  900. '
  901. Me.TextBox133.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  902. Me.TextBox133.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  903. Me.TextBox133.Location = New System.Drawing.Point(741, 919)
  904. Me.TextBox133.Multiline = True
  905. Me.TextBox133.Name = "TextBox133"
  906. Me.TextBox133.Size = New System.Drawing.Size(20, 20)
  907. Me.TextBox133.TabIndex = 182
  908. '
  909. 'TextBox132
  910. '
  911. Me.TextBox132.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  912. Me.TextBox132.ForeColor = System.Drawing.Color.Black
  913. Me.TextBox132.Location = New System.Drawing.Point(1036, 932)
  914. Me.TextBox132.Multiline = True
  915. Me.TextBox132.Name = "TextBox132"
  916. Me.TextBox132.Size = New System.Drawing.Size(25, 25)
  917. Me.TextBox132.TabIndex = 181
  918. Me.TextBox132.Visible = False
  919. '
  920. 'TextBox131
  921. '
  922. Me.TextBox131.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  923. Me.TextBox131.ForeColor = System.Drawing.Color.Red
  924. Me.TextBox131.Location = New System.Drawing.Point(758, 104)
  925. Me.TextBox131.Multiline = True
  926. Me.TextBox131.Name = "TextBox131"
  927. Me.TextBox131.Size = New System.Drawing.Size(20, 40)
  928. Me.TextBox131.TabIndex = 180
  929. '
  930. 'TextBox130
  931. '
  932. Me.TextBox130.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  933. Me.TextBox130.ForeColor = System.Drawing.Color.Red
  934. Me.TextBox130.Location = New System.Drawing.Point(758, 274)
  935. Me.TextBox130.Multiline = True
  936. Me.TextBox130.Name = "TextBox130"
  937. Me.TextBox130.Size = New System.Drawing.Size(20, 40)
  938. Me.TextBox130.TabIndex = 179
  939. '
  940. 'TextBox129
  941. '
  942. Me.TextBox129.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  943. Me.TextBox129.ForeColor = System.Drawing.Color.Red
  944. Me.TextBox129.Location = New System.Drawing.Point(758, 449)
  945. Me.TextBox129.Multiline = True
  946. Me.TextBox129.Name = "TextBox129"
  947. Me.TextBox129.Size = New System.Drawing.Size(20, 40)
  948. Me.TextBox129.TabIndex = 178
  949. '
  950. 'TextBox128
  951. '
  952. Me.TextBox128.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  953. Me.TextBox128.ForeColor = System.Drawing.Color.Red
  954. Me.TextBox128.Location = New System.Drawing.Point(758, 622)
  955. Me.TextBox128.Multiline = True
  956. Me.TextBox128.Name = "TextBox128"
  957. Me.TextBox128.Size = New System.Drawing.Size(20, 40)
  958. Me.TextBox128.TabIndex = 177
  959. '
  960. 'TextBox127
  961. '
  962. Me.TextBox127.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  963. Me.TextBox127.ForeColor = System.Drawing.Color.Red
  964. Me.TextBox127.Location = New System.Drawing.Point(757, 785)
  965. Me.TextBox127.Multiline = True
  966. Me.TextBox127.Name = "TextBox127"
  967. Me.TextBox127.Size = New System.Drawing.Size(20, 40)
  968. Me.TextBox127.TabIndex = 176
  969. '
  970. 'TextBox126
  971. '
  972. Me.TextBox126.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  973. Me.TextBox126.ForeColor = System.Drawing.Color.Red
  974. Me.TextBox126.Location = New System.Drawing.Point(757, 942)
  975. Me.TextBox126.Multiline = True
  976. Me.TextBox126.Name = "TextBox126"
  977. Me.TextBox126.Size = New System.Drawing.Size(20, 40)
  978. Me.TextBox126.TabIndex = 175
  979. '
  980. 'TextBox125
  981. '
  982. Me.TextBox125.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  983. Me.TextBox125.ForeColor = System.Drawing.Color.Red
  984. Me.TextBox125.Location = New System.Drawing.Point(732, 104)
  985. Me.TextBox125.Multiline = True
  986. Me.TextBox125.Name = "TextBox125"
  987. Me.TextBox125.Size = New System.Drawing.Size(20, 40)
  988. Me.TextBox125.TabIndex = 174
  989. '
  990. 'TextBox124
  991. '
  992. Me.TextBox124.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  993. Me.TextBox124.ForeColor = System.Drawing.Color.Red
  994. Me.TextBox124.Location = New System.Drawing.Point(732, 274)
  995. Me.TextBox124.Multiline = True
  996. Me.TextBox124.Name = "TextBox124"
  997. Me.TextBox124.Size = New System.Drawing.Size(20, 40)
  998. Me.TextBox124.TabIndex = 173
  999. '
  1000. 'TextBox123
  1001. '
  1002. Me.TextBox123.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1003. Me.TextBox123.ForeColor = System.Drawing.Color.Red
  1004. Me.TextBox123.Location = New System.Drawing.Point(732, 449)
  1005. Me.TextBox123.Multiline = True
  1006. Me.TextBox123.Name = "TextBox123"
  1007. Me.TextBox123.Size = New System.Drawing.Size(20, 40)
  1008. Me.TextBox123.TabIndex = 172
  1009. '
  1010. 'TextBox122
  1011. '
  1012. Me.TextBox122.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1013. Me.TextBox122.ForeColor = System.Drawing.Color.Red
  1014. Me.TextBox122.Location = New System.Drawing.Point(732, 622)
  1015. Me.TextBox122.Multiline = True
  1016. Me.TextBox122.Name = "TextBox122"
  1017. Me.TextBox122.Size = New System.Drawing.Size(20, 40)
  1018. Me.TextBox122.TabIndex = 171
  1019. '
  1020. 'TextBox121
  1021. '
  1022. Me.TextBox121.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1023. Me.TextBox121.ForeColor = System.Drawing.Color.Red
  1024. Me.TextBox121.Location = New System.Drawing.Point(731, 785)
  1025. Me.TextBox121.Multiline = True
  1026. Me.TextBox121.Name = "TextBox121"
  1027. Me.TextBox121.Size = New System.Drawing.Size(20, 40)
  1028. Me.TextBox121.TabIndex = 170
  1029. '
  1030. 'TextBox120
  1031. '
  1032. Me.TextBox120.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1033. Me.TextBox120.ForeColor = System.Drawing.Color.Red
  1034. Me.TextBox120.Location = New System.Drawing.Point(731, 942)
  1035. Me.TextBox120.Multiline = True
  1036. Me.TextBox120.Name = "TextBox120"
  1037. Me.TextBox120.Size = New System.Drawing.Size(20, 40)
  1038. Me.TextBox120.TabIndex = 169
  1039. '
  1040. 'TextBox119
  1041. '
  1042. Me.TextBox119.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1043. Me.TextBox119.ForeColor = System.Drawing.Color.Red
  1044. Me.TextBox119.Location = New System.Drawing.Point(706, 104)
  1045. Me.TextBox119.Multiline = True
  1046. Me.TextBox119.Name = "TextBox119"
  1047. Me.TextBox119.Size = New System.Drawing.Size(20, 40)
  1048. Me.TextBox119.TabIndex = 168
  1049. '
  1050. 'TextBox118
  1051. '
  1052. Me.TextBox118.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1053. Me.TextBox118.ForeColor = System.Drawing.Color.Red
  1054. Me.TextBox118.Location = New System.Drawing.Point(706, 274)
  1055. Me.TextBox118.Multiline = True
  1056. Me.TextBox118.Name = "TextBox118"
  1057. Me.TextBox118.Size = New System.Drawing.Size(20, 40)
  1058. Me.TextBox118.TabIndex = 167
  1059. '
  1060. 'TextBox117
  1061. '
  1062. Me.TextBox117.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1063. Me.TextBox117.ForeColor = System.Drawing.Color.Red
  1064. Me.TextBox117.Location = New System.Drawing.Point(706, 449)
  1065. Me.TextBox117.Multiline = True
  1066. Me.TextBox117.Name = "TextBox117"
  1067. Me.TextBox117.Size = New System.Drawing.Size(20, 40)
  1068. Me.TextBox117.TabIndex = 166
  1069. '
  1070. 'TextBox116
  1071. '
  1072. Me.TextBox116.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1073. Me.TextBox116.ForeColor = System.Drawing.Color.Red
  1074. Me.TextBox116.Location = New System.Drawing.Point(706, 622)
  1075. Me.TextBox116.Multiline = True
  1076. Me.TextBox116.Name = "TextBox116"
  1077. Me.TextBox116.Size = New System.Drawing.Size(20, 40)
  1078. Me.TextBox116.TabIndex = 165
  1079. '
  1080. 'TextBox115
  1081. '
  1082. Me.TextBox115.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1083. Me.TextBox115.ForeColor = System.Drawing.Color.Red
  1084. Me.TextBox115.Location = New System.Drawing.Point(705, 785)
  1085. Me.TextBox115.Multiline = True
  1086. Me.TextBox115.Name = "TextBox115"
  1087. Me.TextBox115.Size = New System.Drawing.Size(20, 40)
  1088. Me.TextBox115.TabIndex = 164
  1089. '
  1090. 'TextBox114
  1091. '
  1092. Me.TextBox114.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1093. Me.TextBox114.ForeColor = System.Drawing.Color.Red
  1094. Me.TextBox114.Location = New System.Drawing.Point(705, 942)
  1095. Me.TextBox114.Multiline = True
  1096. Me.TextBox114.Name = "TextBox114"
  1097. Me.TextBox114.Size = New System.Drawing.Size(20, 40)
  1098. Me.TextBox114.TabIndex = 163
  1099. '
  1100. 'Label45
  1101. '
  1102. Me.Label45.AutoSize = True
  1103. Me.Label45.Location = New System.Drawing.Point(740, 32)
  1104. Me.Label45.Name = "Label45"
  1105. Me.Label45.Size = New System.Drawing.Size(17, 12)
  1106. Me.Label45.TabIndex = 162
  1107. Me.Label45.Text = "化"
  1108. '
  1109. 'Label44
  1110. '
  1111. Me.Label44.AutoSize = True
  1112. Me.Label44.Location = New System.Drawing.Point(739, 202)
  1113. Me.Label44.Name = "Label44"
  1114. Me.Label44.Size = New System.Drawing.Size(17, 12)
  1115. Me.Label44.TabIndex = 161
  1116. Me.Label44.Text = "化"
  1117. '
  1118. 'Label43
  1119. '
  1120. Me.Label43.AutoSize = True
  1121. Me.Label43.Location = New System.Drawing.Point(739, 378)
  1122. Me.Label43.Name = "Label43"
  1123. Me.Label43.Size = New System.Drawing.Size(17, 12)
  1124. Me.Label43.TabIndex = 160
  1125. Me.Label43.Text = "化"
  1126. '
  1127. 'Label42
  1128. '
  1129. Me.Label42.AutoSize = True
  1130. Me.Label42.Location = New System.Drawing.Point(740, 550)
  1131. Me.Label42.Name = "Label42"
  1132. Me.Label42.Size = New System.Drawing.Size(17, 12)
  1133. Me.Label42.TabIndex = 159
  1134. Me.Label42.Text = "化"
  1135. '
  1136. 'Label41
  1137. '
  1138. Me.Label41.AutoSize = True
  1139. Me.Label41.Location = New System.Drawing.Point(740, 713)
  1140. Me.Label41.Name = "Label41"
  1141. Me.Label41.Size = New System.Drawing.Size(17, 12)
  1142. Me.Label41.TabIndex = 158
  1143. Me.Label41.Text = "化"
  1144. '
  1145. 'Label40
  1146. '
  1147. Me.Label40.AutoSize = True
  1148. Me.Label40.Location = New System.Drawing.Point(739, 873)
  1149. Me.Label40.Name = "Label40"
  1150. Me.Label40.Size = New System.Drawing.Size(17, 12)
  1151. Me.Label40.TabIndex = 157
  1152. Me.Label40.Text = "化"
  1153. '
  1154. 'TextBox113
  1155. '
  1156. Me.TextBox113.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1157. Me.TextBox113.ForeColor = System.Drawing.Color.Black
  1158. Me.TextBox113.Location = New System.Drawing.Point(706, 48)
  1159. Me.TextBox113.Multiline = True
  1160. Me.TextBox113.Name = "TextBox113"
  1161. Me.TextBox113.Size = New System.Drawing.Size(25, 50)
  1162. Me.TextBox113.TabIndex = 156
  1163. '
  1164. 'TextBox112
  1165. '
  1166. Me.TextBox112.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1167. Me.TextBox112.ForeColor = System.Drawing.Color.Black
  1168. Me.TextBox112.Location = New System.Drawing.Point(706, 221)
  1169. Me.TextBox112.Multiline = True
  1170. Me.TextBox112.Name = "TextBox112"
  1171. Me.TextBox112.Size = New System.Drawing.Size(25, 50)
  1172. Me.TextBox112.TabIndex = 155
  1173. '
  1174. 'TextBox111
  1175. '
  1176. Me.TextBox111.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1177. Me.TextBox111.ForeColor = System.Drawing.Color.Black
  1178. Me.TextBox111.Location = New System.Drawing.Point(706, 395)
  1179. Me.TextBox111.Multiline = True
  1180. Me.TextBox111.Name = "TextBox111"
  1181. Me.TextBox111.Size = New System.Drawing.Size(25, 50)
  1182. Me.TextBox111.TabIndex = 154
  1183. '
  1184. 'TextBox110
  1185. '
  1186. Me.TextBox110.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1187. Me.TextBox110.ForeColor = System.Drawing.Color.Black
  1188. Me.TextBox110.Location = New System.Drawing.Point(706, 569)
  1189. Me.TextBox110.Multiline = True
  1190. Me.TextBox110.Name = "TextBox110"
  1191. Me.TextBox110.Size = New System.Drawing.Size(25, 50)
  1192. Me.TextBox110.TabIndex = 153
  1193. '
  1194. 'TextBox109
  1195. '
  1196. Me.TextBox109.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1197. Me.TextBox109.ForeColor = System.Drawing.Color.Black
  1198. Me.TextBox109.Location = New System.Drawing.Point(706, 730)
  1199. Me.TextBox109.Multiline = True
  1200. Me.TextBox109.Name = "TextBox109"
  1201. Me.TextBox109.Size = New System.Drawing.Size(25, 50)
  1202. Me.TextBox109.TabIndex = 152
  1203. '
  1204. 'TextBox108
  1205. '
  1206. Me.TextBox108.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1207. Me.TextBox108.ForeColor = System.Drawing.Color.Black
  1208. Me.TextBox108.Location = New System.Drawing.Point(705, 889)
  1209. Me.TextBox108.Multiline = True
  1210. Me.TextBox108.Name = "TextBox108"
  1211. Me.TextBox108.Size = New System.Drawing.Size(25, 50)
  1212. Me.TextBox108.TabIndex = 151
  1213. '
  1214. 'TextBox107
  1215. '
  1216. Me.TextBox107.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1217. Me.TextBox107.ForeColor = System.Drawing.Color.Black
  1218. Me.TextBox107.Location = New System.Drawing.Point(737, 53)
  1219. Me.TextBox107.Multiline = True
  1220. Me.TextBox107.Name = "TextBox107"
  1221. Me.TextBox107.Size = New System.Drawing.Size(25, 25)
  1222. Me.TextBox107.TabIndex = 150
  1223. '
  1224. 'TextBox106
  1225. '
  1226. Me.TextBox106.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1227. Me.TextBox106.ForeColor = System.Drawing.Color.Black
  1228. Me.TextBox106.Location = New System.Drawing.Point(737, 224)
  1229. Me.TextBox106.Multiline = True
  1230. Me.TextBox106.Name = "TextBox106"
  1231. Me.TextBox106.Size = New System.Drawing.Size(25, 25)
  1232. Me.TextBox106.TabIndex = 149
  1233. '
  1234. 'TextBox105
  1235. '
  1236. Me.TextBox105.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1237. Me.TextBox105.ForeColor = System.Drawing.Color.Black
  1238. Me.TextBox105.Location = New System.Drawing.Point(737, 399)
  1239. Me.TextBox105.Multiline = True
  1240. Me.TextBox105.Name = "TextBox105"
  1241. Me.TextBox105.Size = New System.Drawing.Size(25, 25)
  1242. Me.TextBox105.TabIndex = 148
  1243. '
  1244. 'TextBox104
  1245. '
  1246. Me.TextBox104.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1247. Me.TextBox104.ForeColor = System.Drawing.Color.Black
  1248. Me.TextBox104.Location = New System.Drawing.Point(737, 572)
  1249. Me.TextBox104.Multiline = True
  1250. Me.TextBox104.Name = "TextBox104"
  1251. Me.TextBox104.Size = New System.Drawing.Size(25, 25)
  1252. Me.TextBox104.TabIndex = 147
  1253. '
  1254. 'TextBox103
  1255. '
  1256. Me.TextBox103.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1257. Me.TextBox103.ForeColor = System.Drawing.Color.Black
  1258. Me.TextBox103.Location = New System.Drawing.Point(737, 733)
  1259. Me.TextBox103.Multiline = True
  1260. Me.TextBox103.Name = "TextBox103"
  1261. Me.TextBox103.Size = New System.Drawing.Size(25, 25)
  1262. Me.TextBox103.TabIndex = 146
  1263. '
  1264. 'TextBox102
  1265. '
  1266. Me.TextBox102.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1267. Me.TextBox102.ForeColor = System.Drawing.Color.Black
  1268. Me.TextBox102.Location = New System.Drawing.Point(736, 892)
  1269. Me.TextBox102.Multiline = True
  1270. Me.TextBox102.Name = "TextBox102"
  1271. Me.TextBox102.Size = New System.Drawing.Size(25, 25)
  1272. Me.TextBox102.TabIndex = 145
  1273. '
  1274. 'TextBox101
  1275. '
  1276. Me.TextBox101.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1277. Me.TextBox101.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1278. Me.TextBox101.Location = New System.Drawing.Point(1098, 258)
  1279. Me.TextBox101.Multiline = True
  1280. Me.TextBox101.Name = "TextBox101"
  1281. Me.TextBox101.Size = New System.Drawing.Size(20, 20)
  1282. Me.TextBox101.TabIndex = 144
  1283. '
  1284. 'TextBox100
  1285. '
  1286. Me.TextBox100.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1287. Me.TextBox100.ForeColor = System.Drawing.Color.Black
  1288. Me.TextBox100.Location = New System.Drawing.Point(1093, 159)
  1289. Me.TextBox100.Multiline = True
  1290. Me.TextBox100.Name = "TextBox100"
  1291. Me.TextBox100.Size = New System.Drawing.Size(25, 93)
  1292. Me.TextBox100.TabIndex = 143
  1293. '
  1294. 'TextBox99
  1295. '
  1296. Me.TextBox99.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1297. Me.TextBox99.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1298. Me.TextBox99.Location = New System.Drawing.Point(1098, 113)
  1299. Me.TextBox99.Multiline = True
  1300. Me.TextBox99.Name = "TextBox99"
  1301. Me.TextBox99.Size = New System.Drawing.Size(20, 20)
  1302. Me.TextBox99.TabIndex = 142
  1303. '
  1304. 'TextBox98
  1305. '
  1306. Me.TextBox98.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1307. Me.TextBox98.ForeColor = System.Drawing.Color.Black
  1308. Me.TextBox98.Location = New System.Drawing.Point(1037, 901)
  1309. Me.TextBox98.Multiline = True
  1310. Me.TextBox98.Name = "TextBox98"
  1311. Me.TextBox98.Size = New System.Drawing.Size(25, 25)
  1312. Me.TextBox98.TabIndex = 141
  1313. Me.TextBox98.Visible = False
  1314. '
  1315. 'TextBox97
  1316. '
  1317. Me.TextBox97.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1318. Me.TextBox97.ForeColor = System.Drawing.Color.Black
  1319. Me.TextBox97.Location = New System.Drawing.Point(1036, 870)
  1320. Me.TextBox97.Multiline = True
  1321. Me.TextBox97.Name = "TextBox97"
  1322. Me.TextBox97.Size = New System.Drawing.Size(25, 25)
  1323. Me.TextBox97.TabIndex = 140
  1324. Me.TextBox97.Visible = False
  1325. '
  1326. 'TextBox96
  1327. '
  1328. Me.TextBox96.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1329. Me.TextBox96.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1330. Me.TextBox96.Location = New System.Drawing.Point(1000, 103)
  1331. Me.TextBox96.Multiline = True
  1332. Me.TextBox96.Name = "TextBox96"
  1333. Me.TextBox96.Size = New System.Drawing.Size(20, 40)
  1334. Me.TextBox96.TabIndex = 138
  1335. '
  1336. 'TextBox95
  1337. '
  1338. Me.TextBox95.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1339. Me.TextBox95.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1340. Me.TextBox95.Location = New System.Drawing.Point(974, 103)
  1341. Me.TextBox95.Multiline = True
  1342. Me.TextBox95.Name = "TextBox95"
  1343. Me.TextBox95.Size = New System.Drawing.Size(20, 40)
  1344. Me.TextBox95.TabIndex = 137
  1345. '
  1346. 'TextBox94
  1347. '
  1348. Me.TextBox94.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1349. Me.TextBox94.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1350. Me.TextBox94.Location = New System.Drawing.Point(948, 103)
  1351. Me.TextBox94.Multiline = True
  1352. Me.TextBox94.Name = "TextBox94"
  1353. Me.TextBox94.Size = New System.Drawing.Size(20, 40)
  1354. Me.TextBox94.TabIndex = 136
  1355. '
  1356. 'TextBox93
  1357. '
  1358. Me.TextBox93.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1359. Me.TextBox93.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1360. Me.TextBox93.Location = New System.Drawing.Point(897, 103)
  1361. Me.TextBox93.Multiline = True
  1362. Me.TextBox93.Name = "TextBox93"
  1363. Me.TextBox93.Size = New System.Drawing.Size(20, 40)
  1364. Me.TextBox93.TabIndex = 135
  1365. '
  1366. 'TextBox92
  1367. '
  1368. Me.TextBox92.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1369. Me.TextBox92.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1370. Me.TextBox92.Location = New System.Drawing.Point(871, 103)
  1371. Me.TextBox92.Multiline = True
  1372. Me.TextBox92.Name = "TextBox92"
  1373. Me.TextBox92.Size = New System.Drawing.Size(20, 40)
  1374. Me.TextBox92.TabIndex = 134
  1375. '
  1376. 'TextBox91
  1377. '
  1378. Me.TextBox91.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1379. Me.TextBox91.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1380. Me.TextBox91.Location = New System.Drawing.Point(845, 103)
  1381. Me.TextBox91.Multiline = True
  1382. Me.TextBox91.Name = "TextBox91"
  1383. Me.TextBox91.Size = New System.Drawing.Size(20, 40)
  1384. Me.TextBox91.TabIndex = 133
  1385. '
  1386. 'TextBox90
  1387. '
  1388. Me.TextBox90.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1389. Me.TextBox90.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1390. Me.TextBox90.Location = New System.Drawing.Point(1000, 274)
  1391. Me.TextBox90.Multiline = True
  1392. Me.TextBox90.Name = "TextBox90"
  1393. Me.TextBox90.Size = New System.Drawing.Size(20, 40)
  1394. Me.TextBox90.TabIndex = 132
  1395. '
  1396. 'TextBox89
  1397. '
  1398. Me.TextBox89.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1399. Me.TextBox89.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1400. Me.TextBox89.Location = New System.Drawing.Point(974, 274)
  1401. Me.TextBox89.Multiline = True
  1402. Me.TextBox89.Name = "TextBox89"
  1403. Me.TextBox89.Size = New System.Drawing.Size(20, 40)
  1404. Me.TextBox89.TabIndex = 131
  1405. '
  1406. 'TextBox88
  1407. '
  1408. Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1409. Me.TextBox88.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1410. Me.TextBox88.Location = New System.Drawing.Point(948, 274)
  1411. Me.TextBox88.Multiline = True
  1412. Me.TextBox88.Name = "TextBox88"
  1413. Me.TextBox88.Size = New System.Drawing.Size(20, 40)
  1414. Me.TextBox88.TabIndex = 130
  1415. '
  1416. 'TextBox87
  1417. '
  1418. Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1419. Me.TextBox87.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1420. Me.TextBox87.Location = New System.Drawing.Point(897, 274)
  1421. Me.TextBox87.Multiline = True
  1422. Me.TextBox87.Name = "TextBox87"
  1423. Me.TextBox87.Size = New System.Drawing.Size(20, 40)
  1424. Me.TextBox87.TabIndex = 129
  1425. '
  1426. 'TextBox86
  1427. '
  1428. Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1429. Me.TextBox86.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1430. Me.TextBox86.Location = New System.Drawing.Point(871, 274)
  1431. Me.TextBox86.Multiline = True
  1432. Me.TextBox86.Name = "TextBox86"
  1433. Me.TextBox86.Size = New System.Drawing.Size(20, 40)
  1434. Me.TextBox86.TabIndex = 128
  1435. '
  1436. 'TextBox85
  1437. '
  1438. Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1439. Me.TextBox85.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1440. Me.TextBox85.Location = New System.Drawing.Point(845, 274)
  1441. Me.TextBox85.Multiline = True
  1442. Me.TextBox85.Name = "TextBox85"
  1443. Me.TextBox85.Size = New System.Drawing.Size(20, 40)
  1444. Me.TextBox85.TabIndex = 127
  1445. '
  1446. 'TextBox84
  1447. '
  1448. Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1449. Me.TextBox84.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1450. Me.TextBox84.Location = New System.Drawing.Point(1000, 449)
  1451. Me.TextBox84.Multiline = True
  1452. Me.TextBox84.Name = "TextBox84"
  1453. Me.TextBox84.Size = New System.Drawing.Size(20, 40)
  1454. Me.TextBox84.TabIndex = 126
  1455. '
  1456. 'TextBox83
  1457. '
  1458. Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1459. Me.TextBox83.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1460. Me.TextBox83.Location = New System.Drawing.Point(974, 449)
  1461. Me.TextBox83.Multiline = True
  1462. Me.TextBox83.Name = "TextBox83"
  1463. Me.TextBox83.Size = New System.Drawing.Size(20, 40)
  1464. Me.TextBox83.TabIndex = 125
  1465. '
  1466. 'TextBox82
  1467. '
  1468. Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1469. Me.TextBox82.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1470. Me.TextBox82.Location = New System.Drawing.Point(948, 449)
  1471. Me.TextBox82.Multiline = True
  1472. Me.TextBox82.Name = "TextBox82"
  1473. Me.TextBox82.Size = New System.Drawing.Size(20, 40)
  1474. Me.TextBox82.TabIndex = 124
  1475. '
  1476. 'TextBox81
  1477. '
  1478. Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1479. Me.TextBox81.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1480. Me.TextBox81.Location = New System.Drawing.Point(897, 449)
  1481. Me.TextBox81.Multiline = True
  1482. Me.TextBox81.Name = "TextBox81"
  1483. Me.TextBox81.Size = New System.Drawing.Size(20, 40)
  1484. Me.TextBox81.TabIndex = 123
  1485. '
  1486. 'TextBox80
  1487. '
  1488. Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1489. Me.TextBox80.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1490. Me.TextBox80.Location = New System.Drawing.Point(871, 449)
  1491. Me.TextBox80.Multiline = True
  1492. Me.TextBox80.Name = "TextBox80"
  1493. Me.TextBox80.Size = New System.Drawing.Size(20, 40)
  1494. Me.TextBox80.TabIndex = 122
  1495. '
  1496. 'TextBox79
  1497. '
  1498. Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1499. Me.TextBox79.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1500. Me.TextBox79.Location = New System.Drawing.Point(845, 449)
  1501. Me.TextBox79.Multiline = True
  1502. Me.TextBox79.Name = "TextBox79"
  1503. Me.TextBox79.Size = New System.Drawing.Size(20, 40)
  1504. Me.TextBox79.TabIndex = 121
  1505. '
  1506. 'TextBox78
  1507. '
  1508. Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1509. Me.TextBox78.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1510. Me.TextBox78.Location = New System.Drawing.Point(1000, 622)
  1511. Me.TextBox78.Multiline = True
  1512. Me.TextBox78.Name = "TextBox78"
  1513. Me.TextBox78.Size = New System.Drawing.Size(20, 40)
  1514. Me.TextBox78.TabIndex = 120
  1515. '
  1516. 'TextBox77
  1517. '
  1518. Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1519. Me.TextBox77.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1520. Me.TextBox77.Location = New System.Drawing.Point(974, 622)
  1521. Me.TextBox77.Multiline = True
  1522. Me.TextBox77.Name = "TextBox77"
  1523. Me.TextBox77.Size = New System.Drawing.Size(20, 40)
  1524. Me.TextBox77.TabIndex = 119
  1525. '
  1526. 'TextBox76
  1527. '
  1528. Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1529. Me.TextBox76.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1530. Me.TextBox76.Location = New System.Drawing.Point(948, 622)
  1531. Me.TextBox76.Multiline = True
  1532. Me.TextBox76.Name = "TextBox76"
  1533. Me.TextBox76.Size = New System.Drawing.Size(20, 40)
  1534. Me.TextBox76.TabIndex = 118
  1535. '
  1536. 'TextBox75
  1537. '
  1538. Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1539. Me.TextBox75.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1540. Me.TextBox75.Location = New System.Drawing.Point(897, 622)
  1541. Me.TextBox75.Multiline = True
  1542. Me.TextBox75.Name = "TextBox75"
  1543. Me.TextBox75.Size = New System.Drawing.Size(20, 40)
  1544. Me.TextBox75.TabIndex = 117
  1545. '
  1546. 'TextBox74
  1547. '
  1548. Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1549. Me.TextBox74.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1550. Me.TextBox74.Location = New System.Drawing.Point(871, 622)
  1551. Me.TextBox74.Multiline = True
  1552. Me.TextBox74.Name = "TextBox74"
  1553. Me.TextBox74.Size = New System.Drawing.Size(20, 40)
  1554. Me.TextBox74.TabIndex = 116
  1555. '
  1556. 'TextBox73
  1557. '
  1558. Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1559. Me.TextBox73.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1560. Me.TextBox73.Location = New System.Drawing.Point(845, 622)
  1561. Me.TextBox73.Multiline = True
  1562. Me.TextBox73.Name = "TextBox73"
  1563. Me.TextBox73.Size = New System.Drawing.Size(20, 40)
  1564. Me.TextBox73.TabIndex = 115
  1565. '
  1566. 'TextBox72
  1567. '
  1568. Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1569. Me.TextBox72.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1570. Me.TextBox72.Location = New System.Drawing.Point(999, 785)
  1571. Me.TextBox72.Multiline = True
  1572. Me.TextBox72.Name = "TextBox72"
  1573. Me.TextBox72.Size = New System.Drawing.Size(20, 40)
  1574. Me.TextBox72.TabIndex = 114
  1575. '
  1576. 'TextBox71
  1577. '
  1578. Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1579. Me.TextBox71.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1580. Me.TextBox71.Location = New System.Drawing.Point(973, 785)
  1581. Me.TextBox71.Multiline = True
  1582. Me.TextBox71.Name = "TextBox71"
  1583. Me.TextBox71.Size = New System.Drawing.Size(20, 40)
  1584. Me.TextBox71.TabIndex = 113
  1585. '
  1586. 'TextBox70
  1587. '
  1588. Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1589. Me.TextBox70.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1590. Me.TextBox70.Location = New System.Drawing.Point(947, 785)
  1591. Me.TextBox70.Multiline = True
  1592. Me.TextBox70.Name = "TextBox70"
  1593. Me.TextBox70.Size = New System.Drawing.Size(20, 40)
  1594. Me.TextBox70.TabIndex = 112
  1595. '
  1596. 'TextBox69
  1597. '
  1598. Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1599. Me.TextBox69.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1600. Me.TextBox69.Location = New System.Drawing.Point(896, 785)
  1601. Me.TextBox69.Multiline = True
  1602. Me.TextBox69.Name = "TextBox69"
  1603. Me.TextBox69.Size = New System.Drawing.Size(20, 40)
  1604. Me.TextBox69.TabIndex = 111
  1605. '
  1606. 'TextBox68
  1607. '
  1608. Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1609. Me.TextBox68.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1610. Me.TextBox68.Location = New System.Drawing.Point(870, 785)
  1611. Me.TextBox68.Multiline = True
  1612. Me.TextBox68.Name = "TextBox68"
  1613. Me.TextBox68.Size = New System.Drawing.Size(20, 40)
  1614. Me.TextBox68.TabIndex = 110
  1615. '
  1616. 'TextBox67
  1617. '
  1618. Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1619. Me.TextBox67.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1620. Me.TextBox67.Location = New System.Drawing.Point(844, 785)
  1621. Me.TextBox67.Multiline = True
  1622. Me.TextBox67.Name = "TextBox67"
  1623. Me.TextBox67.Size = New System.Drawing.Size(20, 40)
  1624. Me.TextBox67.TabIndex = 109
  1625. '
  1626. 'TextBox66
  1627. '
  1628. Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1629. Me.TextBox66.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1630. Me.TextBox66.Location = New System.Drawing.Point(999, 942)
  1631. Me.TextBox66.Multiline = True
  1632. Me.TextBox66.Name = "TextBox66"
  1633. Me.TextBox66.Size = New System.Drawing.Size(20, 40)
  1634. Me.TextBox66.TabIndex = 108
  1635. '
  1636. 'TextBox65
  1637. '
  1638. Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1639. Me.TextBox65.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1640. Me.TextBox65.Location = New System.Drawing.Point(973, 942)
  1641. Me.TextBox65.Multiline = True
  1642. Me.TextBox65.Name = "TextBox65"
  1643. Me.TextBox65.Size = New System.Drawing.Size(20, 40)
  1644. Me.TextBox65.TabIndex = 107
  1645. '
  1646. 'TextBox64
  1647. '
  1648. Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1649. Me.TextBox64.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1650. Me.TextBox64.Location = New System.Drawing.Point(947, 942)
  1651. Me.TextBox64.Multiline = True
  1652. Me.TextBox64.Name = "TextBox64"
  1653. Me.TextBox64.Size = New System.Drawing.Size(20, 40)
  1654. Me.TextBox64.TabIndex = 106
  1655. '
  1656. 'TextBox63
  1657. '
  1658. Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1659. Me.TextBox63.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1660. Me.TextBox63.Location = New System.Drawing.Point(896, 942)
  1661. Me.TextBox63.Multiline = True
  1662. Me.TextBox63.Name = "TextBox63"
  1663. Me.TextBox63.Size = New System.Drawing.Size(20, 40)
  1664. Me.TextBox63.TabIndex = 105
  1665. '
  1666. 'TextBox62
  1667. '
  1668. Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1669. Me.TextBox62.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1670. Me.TextBox62.Location = New System.Drawing.Point(870, 942)
  1671. Me.TextBox62.Multiline = True
  1672. Me.TextBox62.Name = "TextBox62"
  1673. Me.TextBox62.Size = New System.Drawing.Size(20, 40)
  1674. Me.TextBox62.TabIndex = 104
  1675. '
  1676. 'TextBox61
  1677. '
  1678. Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1679. Me.TextBox61.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1680. Me.TextBox61.Location = New System.Drawing.Point(844, 942)
  1681. Me.TextBox61.Multiline = True
  1682. Me.TextBox61.Name = "TextBox61"
  1683. Me.TextBox61.Size = New System.Drawing.Size(20, 40)
  1684. Me.TextBox61.TabIndex = 103
  1685. '
  1686. 'TextBox60
  1687. '
  1688. Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1689. Me.TextBox60.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1690. Me.TextBox60.Location = New System.Drawing.Point(938, 78)
  1691. Me.TextBox60.Multiline = True
  1692. Me.TextBox60.Name = "TextBox60"
  1693. Me.TextBox60.Size = New System.Drawing.Size(20, 20)
  1694. Me.TextBox60.TabIndex = 102
  1695. '
  1696. 'TextBox59
  1697. '
  1698. Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1699. Me.TextBox59.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1700. Me.TextBox59.Location = New System.Drawing.Point(938, 251)
  1701. Me.TextBox59.Multiline = True
  1702. Me.TextBox59.Name = "TextBox59"
  1703. Me.TextBox59.Size = New System.Drawing.Size(20, 20)
  1704. Me.TextBox59.TabIndex = 101
  1705. '
  1706. 'TextBox58
  1707. '
  1708. Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1709. Me.TextBox58.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1710. Me.TextBox58.Location = New System.Drawing.Point(938, 426)
  1711. Me.TextBox58.Multiline = True
  1712. Me.TextBox58.Name = "TextBox58"
  1713. Me.TextBox58.Size = New System.Drawing.Size(20, 20)
  1714. Me.TextBox58.TabIndex = 100
  1715. '
  1716. 'TextBox57
  1717. '
  1718. Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1719. Me.TextBox57.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1720. Me.TextBox57.Location = New System.Drawing.Point(938, 599)
  1721. Me.TextBox57.Multiline = True
  1722. Me.TextBox57.Name = "TextBox57"
  1723. Me.TextBox57.Size = New System.Drawing.Size(20, 20)
  1724. Me.TextBox57.TabIndex = 99
  1725. '
  1726. 'TextBox56
  1727. '
  1728. Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1729. Me.TextBox56.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1730. Me.TextBox56.Location = New System.Drawing.Point(938, 760)
  1731. Me.TextBox56.Multiline = True
  1732. Me.TextBox56.Name = "TextBox56"
  1733. Me.TextBox56.Size = New System.Drawing.Size(20, 20)
  1734. Me.TextBox56.TabIndex = 98
  1735. '
  1736. 'TextBox55
  1737. '
  1738. Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1739. Me.TextBox55.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1740. Me.TextBox55.Location = New System.Drawing.Point(937, 919)
  1741. Me.TextBox55.Multiline = True
  1742. Me.TextBox55.Name = "TextBox55"
  1743. Me.TextBox55.Size = New System.Drawing.Size(20, 20)
  1744. Me.TextBox55.TabIndex = 97
  1745. '
  1746. 'Label39
  1747. '
  1748. Me.Label39.AutoSize = True
  1749. Me.Label39.Location = New System.Drawing.Point(968, 34)
  1750. Me.Label39.Name = "Label39"
  1751. Me.Label39.Size = New System.Drawing.Size(17, 12)
  1752. Me.Label39.TabIndex = 96
  1753. Me.Label39.Text = "伏"
  1754. '
  1755. 'Label38
  1756. '
  1757. Me.Label38.AutoSize = True
  1758. Me.Label38.Location = New System.Drawing.Point(968, 206)
  1759. Me.Label38.Name = "Label38"
  1760. Me.Label38.Size = New System.Drawing.Size(17, 12)
  1761. Me.Label38.TabIndex = 95
  1762. Me.Label38.Text = "伏"
  1763. '
  1764. 'Label37
  1765. '
  1766. Me.Label37.AutoSize = True
  1767. Me.Label37.Location = New System.Drawing.Point(968, 380)
  1768. Me.Label37.Name = "Label37"
  1769. Me.Label37.Size = New System.Drawing.Size(17, 12)
  1770. Me.Label37.TabIndex = 94
  1771. Me.Label37.Text = "伏"
  1772. '
  1773. 'Label36
  1774. '
  1775. Me.Label36.AutoSize = True
  1776. Me.Label36.Location = New System.Drawing.Point(968, 553)
  1777. Me.Label36.Name = "Label36"
  1778. Me.Label36.Size = New System.Drawing.Size(17, 12)
  1779. Me.Label36.TabIndex = 93
  1780. Me.Label36.Text = "伏"
  1781. '
  1782. 'Label35
  1783. '
  1784. Me.Label35.AutoSize = True
  1785. Me.Label35.Location = New System.Drawing.Point(968, 714)
  1786. Me.Label35.Name = "Label35"
  1787. Me.Label35.Size = New System.Drawing.Size(17, 12)
  1788. Me.Label35.TabIndex = 92
  1789. Me.Label35.Text = "伏"
  1790. '
  1791. 'Label34
  1792. '
  1793. Me.Label34.AutoSize = True
  1794. Me.Label34.Location = New System.Drawing.Point(966, 873)
  1795. Me.Label34.Name = "Label34"
  1796. Me.Label34.Size = New System.Drawing.Size(17, 12)
  1797. Me.Label34.TabIndex = 91
  1798. Me.Label34.Text = "伏"
  1799. '
  1800. 'TextBox54
  1801. '
  1802. Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1803. Me.TextBox54.ForeColor = System.Drawing.Color.Black
  1804. Me.TextBox54.Location = New System.Drawing.Point(995, 49)
  1805. Me.TextBox54.Multiline = True
  1806. Me.TextBox54.Name = "TextBox54"
  1807. Me.TextBox54.Size = New System.Drawing.Size(25, 50)
  1808. Me.TextBox54.TabIndex = 90
  1809. '
  1810. 'TextBox53
  1811. '
  1812. Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1813. Me.TextBox53.ForeColor = System.Drawing.Color.Black
  1814. Me.TextBox53.Location = New System.Drawing.Point(995, 220)
  1815. Me.TextBox53.Multiline = True
  1816. Me.TextBox53.Name = "TextBox53"
  1817. Me.TextBox53.Size = New System.Drawing.Size(25, 50)
  1818. Me.TextBox53.TabIndex = 89
  1819. '
  1820. 'TextBox52
  1821. '
  1822. Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1823. Me.TextBox52.ForeColor = System.Drawing.Color.Black
  1824. Me.TextBox52.Location = New System.Drawing.Point(995, 395)
  1825. Me.TextBox52.Multiline = True
  1826. Me.TextBox52.Name = "TextBox52"
  1827. Me.TextBox52.Size = New System.Drawing.Size(25, 50)
  1828. Me.TextBox52.TabIndex = 88
  1829. '
  1830. 'TextBox51
  1831. '
  1832. Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1833. Me.TextBox51.ForeColor = System.Drawing.Color.Black
  1834. Me.TextBox51.Location = New System.Drawing.Point(995, 568)
  1835. Me.TextBox51.Multiline = True
  1836. Me.TextBox51.Name = "TextBox51"
  1837. Me.TextBox51.Size = New System.Drawing.Size(25, 50)
  1838. Me.TextBox51.TabIndex = 87
  1839. '
  1840. 'TextBox50
  1841. '
  1842. Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1843. Me.TextBox50.ForeColor = System.Drawing.Color.Black
  1844. Me.TextBox50.Location = New System.Drawing.Point(995, 729)
  1845. Me.TextBox50.Multiline = True
  1846. Me.TextBox50.Name = "TextBox50"
  1847. Me.TextBox50.Size = New System.Drawing.Size(25, 50)
  1848. Me.TextBox50.TabIndex = 86
  1849. '
  1850. 'TextBox49
  1851. '
  1852. Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1853. Me.TextBox49.ForeColor = System.Drawing.Color.Black
  1854. Me.TextBox49.Location = New System.Drawing.Point(994, 888)
  1855. Me.TextBox49.Multiline = True
  1856. Me.TextBox49.Name = "TextBox49"
  1857. Me.TextBox49.Size = New System.Drawing.Size(25, 50)
  1858. Me.TextBox49.TabIndex = 85
  1859. '
  1860. 'TextBox48
  1861. '
  1862. Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1863. Me.TextBox48.ForeColor = System.Drawing.Color.Black
  1864. Me.TextBox48.Location = New System.Drawing.Point(933, 50)
  1865. Me.TextBox48.Multiline = True
  1866. Me.TextBox48.Name = "TextBox48"
  1867. Me.TextBox48.Size = New System.Drawing.Size(25, 25)
  1868. Me.TextBox48.TabIndex = 84
  1869. '
  1870. 'TextBox47
  1871. '
  1872. Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1873. Me.TextBox47.ForeColor = System.Drawing.Color.Black
  1874. Me.TextBox47.Location = New System.Drawing.Point(933, 220)
  1875. Me.TextBox47.Multiline = True
  1876. Me.TextBox47.Name = "TextBox47"
  1877. Me.TextBox47.Size = New System.Drawing.Size(25, 25)
  1878. Me.TextBox47.TabIndex = 83
  1879. '
  1880. 'TextBox46
  1881. '
  1882. Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1883. Me.TextBox46.ForeColor = System.Drawing.Color.Black
  1884. Me.TextBox46.Location = New System.Drawing.Point(933, 395)
  1885. Me.TextBox46.Multiline = True
  1886. Me.TextBox46.Name = "TextBox46"
  1887. Me.TextBox46.Size = New System.Drawing.Size(25, 25)
  1888. Me.TextBox46.TabIndex = 82
  1889. '
  1890. 'TextBox45
  1891. '
  1892. Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1893. Me.TextBox45.ForeColor = System.Drawing.Color.Black
  1894. Me.TextBox45.Location = New System.Drawing.Point(933, 568)
  1895. Me.TextBox45.Multiline = True
  1896. Me.TextBox45.Name = "TextBox45"
  1897. Me.TextBox45.Size = New System.Drawing.Size(25, 25)
  1898. Me.TextBox45.TabIndex = 81
  1899. '
  1900. 'TextBox44
  1901. '
  1902. Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1903. Me.TextBox44.ForeColor = System.Drawing.Color.Black
  1904. Me.TextBox44.Location = New System.Drawing.Point(933, 729)
  1905. Me.TextBox44.Multiline = True
  1906. Me.TextBox44.Name = "TextBox44"
  1907. Me.TextBox44.Size = New System.Drawing.Size(25, 25)
  1908. Me.TextBox44.TabIndex = 80
  1909. '
  1910. 'TextBox43
  1911. '
  1912. Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1913. Me.TextBox43.ForeColor = System.Drawing.Color.Black
  1914. Me.TextBox43.Location = New System.Drawing.Point(932, 888)
  1915. Me.TextBox43.Multiline = True
  1916. Me.TextBox43.Name = "TextBox43"
  1917. Me.TextBox43.Size = New System.Drawing.Size(25, 25)
  1918. Me.TextBox43.TabIndex = 79
  1919. '
  1920. 'TextBox42
  1921. '
  1922. Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1923. Me.TextBox42.ForeColor = System.Drawing.Color.Black
  1924. Me.TextBox42.Location = New System.Drawing.Point(964, 49)
  1925. Me.TextBox42.Multiline = True
  1926. Me.TextBox42.Name = "TextBox42"
  1927. Me.TextBox42.Size = New System.Drawing.Size(25, 50)
  1928. Me.TextBox42.TabIndex = 78
  1929. '
  1930. 'TextBox41
  1931. '
  1932. Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1933. Me.TextBox41.ForeColor = System.Drawing.Color.Black
  1934. Me.TextBox41.Location = New System.Drawing.Point(964, 220)
  1935. Me.TextBox41.Multiline = True
  1936. Me.TextBox41.Name = "TextBox41"
  1937. Me.TextBox41.Size = New System.Drawing.Size(25, 50)
  1938. Me.TextBox41.TabIndex = 77
  1939. '
  1940. 'TextBox40
  1941. '
  1942. Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1943. Me.TextBox40.ForeColor = System.Drawing.Color.Black
  1944. Me.TextBox40.Location = New System.Drawing.Point(964, 395)
  1945. Me.TextBox40.Multiline = True
  1946. Me.TextBox40.Name = "TextBox40"
  1947. Me.TextBox40.Size = New System.Drawing.Size(25, 50)
  1948. Me.TextBox40.TabIndex = 76
  1949. '
  1950. 'TextBox39
  1951. '
  1952. Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1953. Me.TextBox39.ForeColor = System.Drawing.Color.Black
  1954. Me.TextBox39.Location = New System.Drawing.Point(964, 568)
  1955. Me.TextBox39.Multiline = True
  1956. Me.TextBox39.Name = "TextBox39"
  1957. Me.TextBox39.Size = New System.Drawing.Size(25, 50)
  1958. Me.TextBox39.TabIndex = 75
  1959. '
  1960. 'TextBox38
  1961. '
  1962. Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1963. Me.TextBox38.ForeColor = System.Drawing.Color.Black
  1964. Me.TextBox38.Location = New System.Drawing.Point(964, 729)
  1965. Me.TextBox38.Multiline = True
  1966. Me.TextBox38.Name = "TextBox38"
  1967. Me.TextBox38.Size = New System.Drawing.Size(25, 50)
  1968. Me.TextBox38.TabIndex = 74
  1969. '
  1970. 'TextBox37
  1971. '
  1972. Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1973. Me.TextBox37.ForeColor = System.Drawing.Color.Black
  1974. Me.TextBox37.Location = New System.Drawing.Point(963, 888)
  1975. Me.TextBox37.Multiline = True
  1976. Me.TextBox37.Name = "TextBox37"
  1977. Me.TextBox37.Size = New System.Drawing.Size(25, 50)
  1978. Me.TextBox37.TabIndex = 73
  1979. '
  1980. 'TextBox36
  1981. '
  1982. Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1983. Me.TextBox36.ForeColor = System.Drawing.Color.Black
  1984. Me.TextBox36.Location = New System.Drawing.Point(902, 25)
  1985. Me.TextBox36.Multiline = True
  1986. Me.TextBox36.Name = "TextBox36"
  1987. Me.TextBox36.Size = New System.Drawing.Size(25, 50)
  1988. Me.TextBox36.TabIndex = 72
  1989. '
  1990. 'TextBox35
  1991. '
  1992. Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1993. Me.TextBox35.ForeColor = System.Drawing.Color.Black
  1994. Me.TextBox35.Location = New System.Drawing.Point(902, 195)
  1995. Me.TextBox35.Multiline = True
  1996. Me.TextBox35.Name = "TextBox35"
  1997. Me.TextBox35.Size = New System.Drawing.Size(25, 50)
  1998. Me.TextBox35.TabIndex = 71
  1999. '
  2000. 'TextBox34
  2001. '
  2002. Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2003. Me.TextBox34.ForeColor = System.Drawing.Color.Black
  2004. Me.TextBox34.Location = New System.Drawing.Point(902, 370)
  2005. Me.TextBox34.Multiline = True
  2006. Me.TextBox34.Name = "TextBox34"
  2007. Me.TextBox34.Size = New System.Drawing.Size(25, 50)
  2008. Me.TextBox34.TabIndex = 70
  2009. '
  2010. 'TextBox33
  2011. '
  2012. Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2013. Me.TextBox33.ForeColor = System.Drawing.Color.Black
  2014. Me.TextBox33.Location = New System.Drawing.Point(902, 543)
  2015. Me.TextBox33.Multiline = True
  2016. Me.TextBox33.Name = "TextBox33"
  2017. Me.TextBox33.Size = New System.Drawing.Size(25, 50)
  2018. Me.TextBox33.TabIndex = 69
  2019. '
  2020. 'TextBox32
  2021. '
  2022. Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2023. Me.TextBox32.ForeColor = System.Drawing.Color.Black
  2024. Me.TextBox32.Location = New System.Drawing.Point(902, 706)
  2025. Me.TextBox32.Multiline = True
  2026. Me.TextBox32.Name = "TextBox32"
  2027. Me.TextBox32.Size = New System.Drawing.Size(25, 50)
  2028. Me.TextBox32.TabIndex = 68
  2029. '
  2030. 'TextBox31
  2031. '
  2032. Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2033. Me.TextBox31.ForeColor = System.Drawing.Color.Black
  2034. Me.TextBox31.Location = New System.Drawing.Point(901, 865)
  2035. Me.TextBox31.Multiline = True
  2036. Me.TextBox31.Name = "TextBox31"
  2037. Me.TextBox31.Size = New System.Drawing.Size(25, 50)
  2038. Me.TextBox31.TabIndex = 67
  2039. '
  2040. 'TextBox30
  2041. '
  2042. Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2043. Me.TextBox30.ForeColor = System.Drawing.Color.Black
  2044. Me.TextBox30.Location = New System.Drawing.Point(812, 79)
  2045. Me.TextBox30.Multiline = True
  2046. Me.TextBox30.Name = "TextBox30"
  2047. Me.TextBox30.Size = New System.Drawing.Size(25, 25)
  2048. Me.TextBox30.TabIndex = 66
  2049. '
  2050. 'TextBox29
  2051. '
  2052. Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2053. Me.TextBox29.ForeColor = System.Drawing.Color.Black
  2054. Me.TextBox29.Location = New System.Drawing.Point(807, 248)
  2055. Me.TextBox29.Multiline = True
  2056. Me.TextBox29.Name = "TextBox29"
  2057. Me.TextBox29.Size = New System.Drawing.Size(25, 25)
  2058. Me.TextBox29.TabIndex = 65
  2059. '
  2060. 'TextBox28
  2061. '
  2062. Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2063. Me.TextBox28.ForeColor = System.Drawing.Color.Black
  2064. Me.TextBox28.Location = New System.Drawing.Point(807, 423)
  2065. Me.TextBox28.Multiline = True
  2066. Me.TextBox28.Name = "TextBox28"
  2067. Me.TextBox28.Size = New System.Drawing.Size(25, 25)
  2068. Me.TextBox28.TabIndex = 64
  2069. '
  2070. 'TextBox27
  2071. '
  2072. Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2073. Me.TextBox27.ForeColor = System.Drawing.Color.Black
  2074. Me.TextBox27.Location = New System.Drawing.Point(807, 596)
  2075. Me.TextBox27.Multiline = True
  2076. Me.TextBox27.Name = "TextBox27"
  2077. Me.TextBox27.Size = New System.Drawing.Size(25, 25)
  2078. Me.TextBox27.TabIndex = 63
  2079. '
  2080. 'TextBox26
  2081. '
  2082. Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2083. Me.TextBox26.ForeColor = System.Drawing.Color.Black
  2084. Me.TextBox26.Location = New System.Drawing.Point(807, 757)
  2085. Me.TextBox26.Multiline = True
  2086. Me.TextBox26.Name = "TextBox26"
  2087. Me.TextBox26.Size = New System.Drawing.Size(25, 25)
  2088. Me.TextBox26.TabIndex = 62
  2089. '
  2090. 'TextBox25
  2091. '
  2092. Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2093. Me.TextBox25.ForeColor = System.Drawing.Color.Black
  2094. Me.TextBox25.Location = New System.Drawing.Point(806, 916)
  2095. Me.TextBox25.Multiline = True
  2096. Me.TextBox25.Name = "TextBox25"
  2097. Me.TextBox25.Size = New System.Drawing.Size(25, 25)
  2098. Me.TextBox25.TabIndex = 61
  2099. '
  2100. 'Label33
  2101. '
  2102. Me.Label33.AutoSize = True
  2103. Me.Label33.Location = New System.Drawing.Point(1094, 137)
  2104. Me.Label33.Name = "Label33"
  2105. Me.Label33.Size = New System.Drawing.Size(17, 12)
  2106. Me.Label33.TabIndex = 60
  2107. Me.Label33.Text = "化"
  2108. '
  2109. 'TextBox24
  2110. '
  2111. Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2112. Me.TextBox24.ForeColor = System.Drawing.Color.Black
  2113. Me.TextBox24.Location = New System.Drawing.Point(1093, 14)
  2114. Me.TextBox24.Multiline = True
  2115. Me.TextBox24.Name = "TextBox24"
  2116. Me.TextBox24.Size = New System.Drawing.Size(25, 93)
  2117. Me.TextBox24.TabIndex = 59
  2118. '
  2119. 'TextBox23
  2120. '
  2121. Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2122. Me.TextBox23.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2123. Me.TextBox23.Location = New System.Drawing.Point(845, 77)
  2124. Me.TextBox23.Multiline = True
  2125. Me.TextBox23.Name = "TextBox23"
  2126. Me.TextBox23.Size = New System.Drawing.Size(20, 20)
  2127. Me.TextBox23.TabIndex = 58
  2128. '
  2129. 'TextBox22
  2130. '
  2131. Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2132. Me.TextBox22.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2133. Me.TextBox22.Location = New System.Drawing.Point(845, 248)
  2134. Me.TextBox22.Multiline = True
  2135. Me.TextBox22.Name = "TextBox22"
  2136. Me.TextBox22.Size = New System.Drawing.Size(20, 20)
  2137. Me.TextBox22.TabIndex = 57
  2138. '
  2139. 'TextBox21
  2140. '
  2141. Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2142. Me.TextBox21.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2143. Me.TextBox21.Location = New System.Drawing.Point(845, 423)
  2144. Me.TextBox21.Multiline = True
  2145. Me.TextBox21.Name = "TextBox21"
  2146. Me.TextBox21.Size = New System.Drawing.Size(20, 20)
  2147. Me.TextBox21.TabIndex = 56
  2148. '
  2149. 'TextBox20
  2150. '
  2151. Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2152. Me.TextBox20.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2153. Me.TextBox20.Location = New System.Drawing.Point(845, 596)
  2154. Me.TextBox20.Multiline = True
  2155. Me.TextBox20.Name = "TextBox20"
  2156. Me.TextBox20.Size = New System.Drawing.Size(20, 20)
  2157. Me.TextBox20.TabIndex = 55
  2158. '
  2159. 'TextBox19
  2160. '
  2161. Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2162. Me.TextBox19.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2163. Me.TextBox19.Location = New System.Drawing.Point(845, 757)
  2164. Me.TextBox19.Multiline = True
  2165. Me.TextBox19.Name = "TextBox19"
  2166. Me.TextBox19.Size = New System.Drawing.Size(20, 20)
  2167. Me.TextBox19.TabIndex = 54
  2168. '
  2169. 'TextBox18
  2170. '
  2171. Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2172. Me.TextBox18.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2173. Me.TextBox18.Location = New System.Drawing.Point(844, 916)
  2174. Me.TextBox18.Multiline = True
  2175. Me.TextBox18.Name = "TextBox18"
  2176. Me.TextBox18.Size = New System.Drawing.Size(20, 20)
  2177. Me.TextBox18.TabIndex = 53
  2178. '
  2179. 'TextBox17
  2180. '
  2181. Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2182. Me.TextBox17.ForeColor = System.Drawing.Color.Black
  2183. Me.TextBox17.Location = New System.Drawing.Point(871, 25)
  2184. Me.TextBox17.Multiline = True
  2185. Me.TextBox17.Name = "TextBox17"
  2186. Me.TextBox17.Size = New System.Drawing.Size(25, 50)
  2187. Me.TextBox17.TabIndex = 52
  2188. '
  2189. 'TextBox16
  2190. '
  2191. Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2192. Me.TextBox16.ForeColor = System.Drawing.Color.Black
  2193. Me.TextBox16.Location = New System.Drawing.Point(871, 195)
  2194. Me.TextBox16.Multiline = True
  2195. Me.TextBox16.Name = "TextBox16"
  2196. Me.TextBox16.Size = New System.Drawing.Size(25, 50)
  2197. Me.TextBox16.TabIndex = 51
  2198. '
  2199. 'TextBox15
  2200. '
  2201. Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2202. Me.TextBox15.ForeColor = System.Drawing.Color.Black
  2203. Me.TextBox15.Location = New System.Drawing.Point(871, 370)
  2204. Me.TextBox15.Multiline = True
  2205. Me.TextBox15.Name = "TextBox15"
  2206. Me.TextBox15.Size = New System.Drawing.Size(25, 50)
  2207. Me.TextBox15.TabIndex = 50
  2208. '
  2209. 'TextBox14
  2210. '
  2211. Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2212. Me.TextBox14.ForeColor = System.Drawing.Color.Black
  2213. Me.TextBox14.Location = New System.Drawing.Point(871, 543)
  2214. Me.TextBox14.Multiline = True
  2215. Me.TextBox14.Name = "TextBox14"
  2216. Me.TextBox14.Size = New System.Drawing.Size(25, 50)
  2217. Me.TextBox14.TabIndex = 49
  2218. '
  2219. 'TextBox13
  2220. '
  2221. Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2222. Me.TextBox13.ForeColor = System.Drawing.Color.Black
  2223. Me.TextBox13.Location = New System.Drawing.Point(871, 706)
  2224. Me.TextBox13.Multiline = True
  2225. Me.TextBox13.Name = "TextBox13"
  2226. Me.TextBox13.Size = New System.Drawing.Size(25, 50)
  2227. Me.TextBox13.TabIndex = 48
  2228. '
  2229. 'TextBox12
  2230. '
  2231. Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2232. Me.TextBox12.ForeColor = System.Drawing.Color.Black
  2233. Me.TextBox12.Location = New System.Drawing.Point(870, 865)
  2234. Me.TextBox12.Multiline = True
  2235. Me.TextBox12.Name = "TextBox12"
  2236. Me.TextBox12.Size = New System.Drawing.Size(25, 50)
  2237. Me.TextBox12.TabIndex = 47
  2238. '
  2239. 'Label32
  2240. '
  2241. Me.Label32.AutoSize = True
  2242. Me.Label32.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2243. Me.Label32.FlatStyle = System.Windows.Forms.FlatStyle.System
  2244. Me.Label32.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2245. Me.Label32.Location = New System.Drawing.Point(838, 53)
  2246. Me.Label32.Name = "Label32"
  2247. Me.Label32.Size = New System.Drawing.Size(26, 18)
  2248. Me.Label32.TabIndex = 46
  2249. Me.Label32.Text = " "
  2250. Me.Label32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2251. '
  2252. 'Label31
  2253. '
  2254. Me.Label31.AutoSize = True
  2255. Me.Label31.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2256. Me.Label31.FlatStyle = System.Windows.Forms.FlatStyle.System
  2257. Me.Label31.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2258. Me.Label31.Location = New System.Drawing.Point(838, 224)
  2259. Me.Label31.Name = "Label31"
  2260. Me.Label31.Size = New System.Drawing.Size(26, 18)
  2261. Me.Label31.TabIndex = 45
  2262. Me.Label31.Text = " "
  2263. Me.Label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2264. '
  2265. 'Label30
  2266. '
  2267. Me.Label30.AutoSize = True
  2268. Me.Label30.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2269. Me.Label30.FlatStyle = System.Windows.Forms.FlatStyle.System
  2270. Me.Label30.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2271. Me.Label30.Location = New System.Drawing.Point(838, 399)
  2272. Me.Label30.Name = "Label30"
  2273. Me.Label30.Size = New System.Drawing.Size(26, 18)
  2274. Me.Label30.TabIndex = 44
  2275. Me.Label30.Text = " "
  2276. Me.Label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2277. '
  2278. 'Label29
  2279. '
  2280. Me.Label29.AutoSize = True
  2281. Me.Label29.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2282. Me.Label29.FlatStyle = System.Windows.Forms.FlatStyle.System
  2283. Me.Label29.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2284. Me.Label29.Location = New System.Drawing.Point(838, 572)
  2285. Me.Label29.Name = "Label29"
  2286. Me.Label29.Size = New System.Drawing.Size(26, 18)
  2287. Me.Label29.TabIndex = 43
  2288. Me.Label29.Text = " "
  2289. Me.Label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2290. '
  2291. 'Label28
  2292. '
  2293. Me.Label28.AutoSize = True
  2294. Me.Label28.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2295. Me.Label28.FlatStyle = System.Windows.Forms.FlatStyle.System
  2296. Me.Label28.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2297. Me.Label28.Location = New System.Drawing.Point(838, 733)
  2298. Me.Label28.Name = "Label28"
  2299. Me.Label28.Size = New System.Drawing.Size(26, 18)
  2300. Me.Label28.TabIndex = 42
  2301. Me.Label28.Text = " "
  2302. Me.Label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2303. '
  2304. 'Label27
  2305. '
  2306. Me.Label27.AutoSize = True
  2307. Me.Label27.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2308. Me.Label27.FlatStyle = System.Windows.Forms.FlatStyle.System
  2309. Me.Label27.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2310. Me.Label27.Location = New System.Drawing.Point(837, 892)
  2311. Me.Label27.Name = "Label27"
  2312. Me.Label27.Size = New System.Drawing.Size(26, 18)
  2313. Me.Label27.TabIndex = 41
  2314. Me.Label27.Text = " "
  2315. Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2316. '
  2317. 'Label26
  2318. '
  2319. Me.Label26.AutoSize = True
  2320. Me.Label26.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2321. Me.Label26.FlatStyle = System.Windows.Forms.FlatStyle.System
  2322. Me.Label26.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2323. Me.Label26.Location = New System.Drawing.Point(838, 26)
  2324. Me.Label26.Name = "Label26"
  2325. Me.Label26.Size = New System.Drawing.Size(26, 18)
  2326. Me.Label26.TabIndex = 40
  2327. Me.Label26.Text = " "
  2328. Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2329. '
  2330. 'Label25
  2331. '
  2332. Me.Label25.AutoSize = True
  2333. Me.Label25.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2334. Me.Label25.FlatStyle = System.Windows.Forms.FlatStyle.System
  2335. Me.Label25.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2336. Me.Label25.Location = New System.Drawing.Point(838, 197)
  2337. Me.Label25.Name = "Label25"
  2338. Me.Label25.Size = New System.Drawing.Size(26, 18)
  2339. Me.Label25.TabIndex = 39
  2340. Me.Label25.Text = " "
  2341. Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2342. '
  2343. 'Label24
  2344. '
  2345. Me.Label24.AutoSize = True
  2346. Me.Label24.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2347. Me.Label24.FlatStyle = System.Windows.Forms.FlatStyle.System
  2348. Me.Label24.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2349. Me.Label24.Location = New System.Drawing.Point(838, 372)
  2350. Me.Label24.Name = "Label24"
  2351. Me.Label24.Size = New System.Drawing.Size(26, 18)
  2352. Me.Label24.TabIndex = 38
  2353. Me.Label24.Text = " "
  2354. Me.Label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2355. '
  2356. 'Label23
  2357. '
  2358. Me.Label23.AutoSize = True
  2359. Me.Label23.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2360. Me.Label23.FlatStyle = System.Windows.Forms.FlatStyle.System
  2361. Me.Label23.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2362. Me.Label23.Location = New System.Drawing.Point(838, 543)
  2363. Me.Label23.Name = "Label23"
  2364. Me.Label23.Size = New System.Drawing.Size(26, 18)
  2365. Me.Label23.TabIndex = 37
  2366. Me.Label23.Text = " "
  2367. Me.Label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2368. '
  2369. 'Label22
  2370. '
  2371. Me.Label22.AutoSize = True
  2372. Me.Label22.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2373. Me.Label22.FlatStyle = System.Windows.Forms.FlatStyle.System
  2374. Me.Label22.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2375. Me.Label22.Location = New System.Drawing.Point(838, 706)
  2376. Me.Label22.Name = "Label22"
  2377. Me.Label22.Size = New System.Drawing.Size(26, 18)
  2378. Me.Label22.TabIndex = 36
  2379. Me.Label22.Text = " "
  2380. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2381. '
  2382. 'Label21
  2383. '
  2384. Me.Label21.AutoSize = True
  2385. Me.Label21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2386. Me.Label21.FlatStyle = System.Windows.Forms.FlatStyle.System
  2387. Me.Label21.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2388. Me.Label21.Location = New System.Drawing.Point(837, 865)
  2389. Me.Label21.Name = "Label21"
  2390. Me.Label21.Size = New System.Drawing.Size(26, 18)
  2391. Me.Label21.TabIndex = 35
  2392. Me.Label21.Text = " "
  2393. Me.Label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2394. '
  2395. 'Label20
  2396. '
  2397. Me.Label20.AutoSize = True
  2398. Me.Label20.FlatStyle = System.Windows.Forms.FlatStyle.System
  2399. Me.Label20.Location = New System.Drawing.Point(813, 55)
  2400. Me.Label20.Name = "Label20"
  2401. Me.Label20.Size = New System.Drawing.Size(17, 12)
  2402. Me.Label20.TabIndex = 34
  2403. Me.Label20.Text = "一"
  2404. Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2405. '
  2406. 'Label19
  2407. '
  2408. Me.Label19.AutoSize = True
  2409. Me.Label19.FlatStyle = System.Windows.Forms.FlatStyle.System
  2410. Me.Label19.Location = New System.Drawing.Point(808, 224)
  2411. Me.Label19.Name = "Label19"
  2412. Me.Label19.Size = New System.Drawing.Size(17, 12)
  2413. Me.Label19.TabIndex = 33
  2414. Me.Label19.Text = "一"
  2415. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2416. '
  2417. 'Label18
  2418. '
  2419. Me.Label18.AutoSize = True
  2420. Me.Label18.FlatStyle = System.Windows.Forms.FlatStyle.System
  2421. Me.Label18.Location = New System.Drawing.Point(808, 399)
  2422. Me.Label18.Name = "Label18"
  2423. Me.Label18.Size = New System.Drawing.Size(17, 12)
  2424. Me.Label18.TabIndex = 32
  2425. Me.Label18.Text = "一"
  2426. Me.Label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2427. '
  2428. 'Label17
  2429. '
  2430. Me.Label17.AutoSize = True
  2431. Me.Label17.FlatStyle = System.Windows.Forms.FlatStyle.System
  2432. Me.Label17.Location = New System.Drawing.Point(808, 572)
  2433. Me.Label17.Name = "Label17"
  2434. Me.Label17.Size = New System.Drawing.Size(17, 12)
  2435. Me.Label17.TabIndex = 31
  2436. Me.Label17.Text = "一"
  2437. Me.Label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2438. '
  2439. 'Label16
  2440. '
  2441. Me.Label16.AutoSize = True
  2442. Me.Label16.FlatStyle = System.Windows.Forms.FlatStyle.System
  2443. Me.Label16.Location = New System.Drawing.Point(808, 733)
  2444. Me.Label16.Name = "Label16"
  2445. Me.Label16.Size = New System.Drawing.Size(17, 12)
  2446. Me.Label16.TabIndex = 30
  2447. Me.Label16.Text = "一"
  2448. Me.Label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2449. '
  2450. 'Label15
  2451. '
  2452. Me.Label15.AutoSize = True
  2453. Me.Label15.FlatStyle = System.Windows.Forms.FlatStyle.System
  2454. Me.Label15.Location = New System.Drawing.Point(807, 892)
  2455. Me.Label15.Name = "Label15"
  2456. Me.Label15.Size = New System.Drawing.Size(17, 12)
  2457. Me.Label15.TabIndex = 29
  2458. Me.Label15.Text = "一"
  2459. Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2460. '
  2461. 'ComboBox3
  2462. '
  2463. Me.ComboBox3.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2464. Me.ComboBox3.FormattingEnabled = True
  2465. Me.ComboBox3.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8"})
  2466. Me.ComboBox3.Location = New System.Drawing.Point(1140, 844)
  2467. Me.ComboBox3.Name = "ComboBox3"
  2468. Me.ComboBox3.Size = New System.Drawing.Size(35, 24)
  2469. Me.ComboBox3.TabIndex = 28
  2470. '
  2471. 'ComboBox2
  2472. '
  2473. Me.ComboBox2.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2474. Me.ComboBox2.FormattingEnabled = True
  2475. Me.ComboBox2.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8"})
  2476. Me.ComboBox2.Location = New System.Drawing.Point(1140, 877)
  2477. Me.ComboBox2.Name = "ComboBox2"
  2478. Me.ComboBox2.Size = New System.Drawing.Size(35, 24)
  2479. Me.ComboBox2.TabIndex = 27
  2480. '
  2481. 'ComboBox1
  2482. '
  2483. Me.ComboBox1.Font = New System.Drawing.Font("新細明體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2484. Me.ComboBox1.FormattingEnabled = True
  2485. Me.ComboBox1.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8"})
  2486. Me.ComboBox1.Location = New System.Drawing.Point(1140, 910)
  2487. Me.ComboBox1.Name = "ComboBox1"
  2488. Me.ComboBox1.Size = New System.Drawing.Size(35, 24)
  2489. Me.ComboBox1.TabIndex = 26
  2490. '
  2491. 'Label14
  2492. '
  2493. Me.Label14.AutoSize = True
  2494. Me.Label14.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2495. Me.Label14.Location = New System.Drawing.Point(768, 55)
  2496. Me.Label14.Name = "Label14"
  2497. Me.Label14.Size = New System.Drawing.Size(29, 12)
  2498. Me.Label14.TabIndex = 25
  2499. Me.Label14.Text = "青龍"
  2500. Me.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2501. '
  2502. 'Label13
  2503. '
  2504. Me.Label13.AutoSize = True
  2505. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2506. Me.Label13.Location = New System.Drawing.Point(768, 224)
  2507. Me.Label13.Name = "Label13"
  2508. Me.Label13.Size = New System.Drawing.Size(29, 12)
  2509. Me.Label13.TabIndex = 24
  2510. Me.Label13.Text = "青龍"
  2511. Me.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2512. '
  2513. 'Label12
  2514. '
  2515. Me.Label12.AutoSize = True
  2516. Me.Label12.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2517. Me.Label12.Location = New System.Drawing.Point(768, 399)
  2518. Me.Label12.Name = "Label12"
  2519. Me.Label12.Size = New System.Drawing.Size(29, 12)
  2520. Me.Label12.TabIndex = 23
  2521. Me.Label12.Text = "青龍"
  2522. Me.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2523. '
  2524. 'Label11
  2525. '
  2526. Me.Label11.AutoSize = True
  2527. Me.Label11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2528. Me.Label11.Location = New System.Drawing.Point(768, 572)
  2529. Me.Label11.Name = "Label11"
  2530. Me.Label11.Size = New System.Drawing.Size(29, 12)
  2531. Me.Label11.TabIndex = 22
  2532. Me.Label11.Text = "青龍"
  2533. Me.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2534. '
  2535. 'Label10
  2536. '
  2537. Me.Label10.AutoSize = True
  2538. Me.Label10.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2539. Me.Label10.Location = New System.Drawing.Point(768, 733)
  2540. Me.Label10.Name = "Label10"
  2541. Me.Label10.Size = New System.Drawing.Size(29, 12)
  2542. Me.Label10.TabIndex = 21
  2543. Me.Label10.Text = "青龍"
  2544. Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2545. '
  2546. 'Label9
  2547. '
  2548. Me.Label9.AutoSize = True
  2549. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2550. Me.Label9.Location = New System.Drawing.Point(767, 892)
  2551. Me.Label9.Name = "Label9"
  2552. Me.Label9.Size = New System.Drawing.Size(29, 12)
  2553. Me.Label9.TabIndex = 20
  2554. Me.Label9.Text = "青龍"
  2555. Me.Label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2556. '
  2557. 'TextBox11
  2558. '
  2559. Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2560. Me.TextBox11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2561. Me.TextBox11.Location = New System.Drawing.Point(1163, 426)
  2562. Me.TextBox11.Multiline = True
  2563. Me.TextBox11.Name = "TextBox11"
  2564. Me.TextBox11.Size = New System.Drawing.Size(20, 20)
  2565. Me.TextBox11.TabIndex = 19
  2566. '
  2567. 'TextBox10
  2568. '
  2569. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2570. Me.TextBox10.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2571. Me.TextBox10.Location = New System.Drawing.Point(1163, 379)
  2572. Me.TextBox10.Multiline = True
  2573. Me.TextBox10.Name = "TextBox10"
  2574. Me.TextBox10.Size = New System.Drawing.Size(20, 20)
  2575. Me.TextBox10.TabIndex = 18
  2576. '
  2577. 'TextBox9
  2578. '
  2579. Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2580. Me.TextBox9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2581. Me.TextBox9.Location = New System.Drawing.Point(1163, 332)
  2582. Me.TextBox9.Multiline = True
  2583. Me.TextBox9.Name = "TextBox9"
  2584. Me.TextBox9.Size = New System.Drawing.Size(20, 20)
  2585. Me.TextBox9.TabIndex = 17
  2586. '
  2587. 'Label8
  2588. '
  2589. Me.Label8.AutoSize = True
  2590. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2591. Me.Label8.ForeColor = System.Drawing.Color.Purple
  2592. Me.Label8.Location = New System.Drawing.Point(1160, 449)
  2593. Me.Label8.Name = "Label8"
  2594. Me.Label8.Size = New System.Drawing.Size(26, 21)
  2595. Me.Label8.TabIndex = 16
  2596. Me.Label8.Text = "氣"
  2597. '
  2598. 'Label7
  2599. '
  2600. Me.Label7.AutoSize = True
  2601. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2602. Me.Label7.ForeColor = System.Drawing.Color.Purple
  2603. Me.Label7.Location = New System.Drawing.Point(1160, 402)
  2604. Me.Label7.Name = "Label7"
  2605. Me.Label7.Size = New System.Drawing.Size(26, 21)
  2606. Me.Label7.TabIndex = 15
  2607. Me.Label7.Text = "相"
  2608. '
  2609. 'Label6
  2610. '
  2611. Me.Label6.AutoSize = True
  2612. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2613. Me.Label6.ForeColor = System.Drawing.Color.Purple
  2614. Me.Label6.Location = New System.Drawing.Point(1160, 355)
  2615. Me.Label6.Name = "Label6"
  2616. Me.Label6.Size = New System.Drawing.Size(26, 21)
  2617. Me.Label6.TabIndex = 14
  2618. Me.Label6.Text = "旺"
  2619. '
  2620. 'TextBox8
  2621. '
  2622. Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2623. Me.TextBox8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2624. Me.TextBox8.Location = New System.Drawing.Point(1133, 270)
  2625. Me.TextBox8.Multiline = True
  2626. Me.TextBox8.Name = "TextBox8"
  2627. Me.TextBox8.Size = New System.Drawing.Size(20, 20)
  2628. Me.TextBox8.TabIndex = 13
  2629. '
  2630. 'TextBox7
  2631. '
  2632. Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2633. Me.TextBox7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2634. Me.TextBox7.Location = New System.Drawing.Point(1133, 194)
  2635. Me.TextBox7.Multiline = True
  2636. Me.TextBox7.Name = "TextBox7"
  2637. Me.TextBox7.Size = New System.Drawing.Size(20, 20)
  2638. Me.TextBox7.TabIndex = 12
  2639. '
  2640. 'TextBox6
  2641. '
  2642. Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2643. Me.TextBox6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2644. Me.TextBox6.Location = New System.Drawing.Point(1133, 118)
  2645. Me.TextBox6.Multiline = True
  2646. Me.TextBox6.Name = "TextBox6"
  2647. Me.TextBox6.Size = New System.Drawing.Size(20, 20)
  2648. Me.TextBox6.TabIndex = 11
  2649. '
  2650. 'TextBox5
  2651. '
  2652. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2653. Me.TextBox5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2654. Me.TextBox5.Location = New System.Drawing.Point(1133, 42)
  2655. Me.TextBox5.Multiline = True
  2656. Me.TextBox5.Name = "TextBox5"
  2657. Me.TextBox5.Size = New System.Drawing.Size(20, 20)
  2658. Me.TextBox5.TabIndex = 10
  2659. '
  2660. 'TextBox4
  2661. '
  2662. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2663. Me.TextBox4.ForeColor = System.Drawing.Color.Black
  2664. Me.TextBox4.Location = New System.Drawing.Point(1159, 240)
  2665. Me.TextBox4.Multiline = True
  2666. Me.TextBox4.Name = "TextBox4"
  2667. Me.TextBox4.Size = New System.Drawing.Size(25, 50)
  2668. Me.TextBox4.TabIndex = 9
  2669. '
  2670. 'TextBox3
  2671. '
  2672. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2673. Me.TextBox3.ForeColor = System.Drawing.Color.Black
  2674. Me.TextBox3.Location = New System.Drawing.Point(1159, 164)
  2675. Me.TextBox3.Multiline = True
  2676. Me.TextBox3.Name = "TextBox3"
  2677. Me.TextBox3.Size = New System.Drawing.Size(25, 50)
  2678. Me.TextBox3.TabIndex = 8
  2679. '
  2680. 'TextBox2
  2681. '
  2682. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2683. Me.TextBox2.ForeColor = System.Drawing.Color.Black
  2684. Me.TextBox2.Location = New System.Drawing.Point(1159, 88)
  2685. Me.TextBox2.Multiline = True
  2686. Me.TextBox2.Name = "TextBox2"
  2687. Me.TextBox2.Size = New System.Drawing.Size(25, 50)
  2688. Me.TextBox2.TabIndex = 7
  2689. '
  2690. 'TextBox1
  2691. '
  2692. Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2693. Me.TextBox1.ForeColor = System.Drawing.Color.Black
  2694. Me.TextBox1.Location = New System.Drawing.Point(1159, 12)
  2695. Me.TextBox1.Multiline = True
  2696. Me.TextBox1.Name = "TextBox1"
  2697. Me.TextBox1.Size = New System.Drawing.Size(25, 50)
  2698. Me.TextBox1.TabIndex = 6
  2699. '
  2700. 'Label5
  2701. '
  2702. Me.Label5.AutoSize = True
  2703. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2704. Me.Label5.ForeColor = System.Drawing.Color.Blue
  2705. Me.Label5.Location = New System.Drawing.Point(1159, 293)
  2706. Me.Label5.Name = "Label5"
  2707. Me.Label5.Size = New System.Drawing.Size(26, 21)
  2708. Me.Label5.TabIndex = 5
  2709. Me.Label5.Text = "日"
  2710. '
  2711. 'Label4
  2712. '
  2713. Me.Label4.AutoSize = True
  2714. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2715. Me.Label4.ForeColor = System.Drawing.Color.Blue
  2716. Me.Label4.Location = New System.Drawing.Point(1159, 217)
  2717. Me.Label4.Name = "Label4"
  2718. Me.Label4.Size = New System.Drawing.Size(26, 21)
  2719. Me.Label4.TabIndex = 4
  2720. Me.Label4.Text = "旬"
  2721. '
  2722. 'GroupBox2
  2723. '
  2724. Me.GroupBox2.Controls.Add(Me.Button10)
  2725. Me.GroupBox2.Controls.Add(Me.Button6)
  2726. Me.GroupBox2.Controls.Add(Me.Button7)
  2727. Me.GroupBox2.Controls.Add(Me.Button8)
  2728. Me.GroupBox2.Controls.Add(Me.Button1)
  2729. Me.GroupBox2.Controls.Add(Me.DateTimePicker1)
  2730. Me.GroupBox2.Controls.Add(Me.Label1)
  2731. Me.GroupBox2.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2732. Me.GroupBox2.Location = New System.Drawing.Point(1187, 783)
  2733. Me.GroupBox2.Name = "GroupBox2"
  2734. Me.GroupBox2.Size = New System.Drawing.Size(161, 212)
  2735. Me.GroupBox2.TabIndex = 5
  2736. Me.GroupBox2.TabStop = False
  2737. Me.GroupBox2.Text = "控制項"
  2738. '
  2739. 'Button10
  2740. '
  2741. Me.Button10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2742. Me.Button10.Location = New System.Drawing.Point(11, 87)
  2743. Me.Button10.Name = "Button10"
  2744. Me.Button10.Size = New System.Drawing.Size(140, 25)
  2745. Me.Button10.TabIndex = 208
  2746. Me.Button10.Text = "還 原"
  2747. Me.Button10.UseVisualStyleBackColor = True
  2748. '
  2749. 'Button6
  2750. '
  2751. Me.Button6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2752. Me.Button6.ForeColor = System.Drawing.Color.Red
  2753. Me.Button6.Location = New System.Drawing.Point(11, 180)
  2754. Me.Button6.Name = "Button6"
  2755. Me.Button6.Size = New System.Drawing.Size(140, 25)
  2756. Me.Button6.TabIndex = 206
  2757. Me.Button6.Text = "刪 除確認"
  2758. Me.Button6.UseVisualStyleBackColor = True
  2759. '
  2760. 'Button7
  2761. '
  2762. Me.Button7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2763. Me.Button7.ForeColor = System.Drawing.Color.Green
  2764. Me.Button7.Location = New System.Drawing.Point(11, 149)
  2765. Me.Button7.Name = "Button7"
  2766. Me.Button7.Size = New System.Drawing.Size(140, 25)
  2767. Me.Button7.TabIndex = 205
  2768. Me.Button7.Text = "修 改確認"
  2769. Me.Button7.UseVisualStyleBackColor = True
  2770. '
  2771. 'Button8
  2772. '
  2773. Me.Button8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2774. Me.Button8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2775. Me.Button8.Location = New System.Drawing.Point(11, 118)
  2776. Me.Button8.Name = "Button8"
  2777. Me.Button8.Size = New System.Drawing.Size(140, 25)
  2778. Me.Button8.TabIndex = 204
  2779. Me.Button8.Text = "存 檔確認"
  2780. Me.Button8.UseVisualStyleBackColor = True
  2781. '
  2782. 'Button1
  2783. '
  2784. Me.Button1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2785. Me.Button1.Location = New System.Drawing.Point(11, 56)
  2786. Me.Button1.Name = "Button1"
  2787. Me.Button1.Size = New System.Drawing.Size(140, 25)
  2788. Me.Button1.TabIndex = 2
  2789. Me.Button1.Text = "排 卦"
  2790. Me.Button1.UseVisualStyleBackColor = True
  2791. '
  2792. 'GroupBox4
  2793. '
  2794. Me.GroupBox4.Controls.Add(Me.Label63)
  2795. Me.GroupBox4.Controls.Add(Me.Label62)
  2796. Me.GroupBox4.Controls.Add(Me.Label61)
  2797. Me.GroupBox4.Controls.Add(Me.Label60)
  2798. Me.GroupBox4.Controls.Add(Me.Label59)
  2799. Me.GroupBox4.Controls.Add(Me.Label58)
  2800. Me.GroupBox4.Controls.Add(Me.Label57)
  2801. Me.GroupBox4.Controls.Add(Me.Label56)
  2802. Me.GroupBox4.Controls.Add(Me.Label53)
  2803. Me.GroupBox4.Controls.Add(Me.Label52)
  2804. Me.GroupBox4.Controls.Add(Me.Label51)
  2805. Me.GroupBox4.Controls.Add(Me.Label50)
  2806. Me.GroupBox4.Controls.Add(Me.TextBox168)
  2807. Me.GroupBox4.Controls.Add(Me.TextBox167)
  2808. Me.GroupBox4.Controls.Add(Me.TextBox166)
  2809. Me.GroupBox4.Controls.Add(Me.TextBox165)
  2810. Me.GroupBox4.Controls.Add(Me.TextBox164)
  2811. Me.GroupBox4.Controls.Add(Me.TextBox163)
  2812. Me.GroupBox4.Controls.Add(Me.TextBox162)
  2813. Me.GroupBox4.Controls.Add(Me.TextBox161)
  2814. Me.GroupBox4.Controls.Add(Me.TextBox160)
  2815. Me.GroupBox4.Controls.Add(Me.TextBox159)
  2816. Me.GroupBox4.Controls.Add(Me.TextBox158)
  2817. Me.GroupBox4.Controls.Add(Me.TextBox157)
  2818. Me.GroupBox4.Controls.Add(Me.TextBox156)
  2819. Me.GroupBox4.Controls.Add(Me.TextBox155)
  2820. Me.GroupBox4.Controls.Add(Me.TextBox154)
  2821. Me.GroupBox4.Controls.Add(Me.TextBox153)
  2822. Me.GroupBox4.Controls.Add(Me.TextBox152)
  2823. Me.GroupBox4.Controls.Add(Me.TextBox151)
  2824. Me.GroupBox4.Controls.Add(Me.TextBox150)
  2825. Me.GroupBox4.Controls.Add(Me.TextBox149)
  2826. Me.GroupBox4.Controls.Add(Me.TextBox148)
  2827. Me.GroupBox4.Controls.Add(Me.TextBox147)
  2828. Me.GroupBox4.Controls.Add(Me.TextBox146)
  2829. Me.GroupBox4.Controls.Add(Me.TextBox145)
  2830. Me.GroupBox4.Controls.Add(Me.Label55)
  2831. Me.GroupBox4.Controls.Add(Me.Label54)
  2832. Me.GroupBox4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2833. Me.GroupBox4.Location = New System.Drawing.Point(6, 28)
  2834. Me.GroupBox4.Name = "GroupBox4"
  2835. Me.GroupBox4.Size = New System.Drawing.Size(110, 331)
  2836. Me.GroupBox4.TabIndex = 197
  2837. Me.GroupBox4.TabStop = False
  2838. Me.GroupBox4.Text = "五行長生決"
  2839. '
  2840. 'Label63
  2841. '
  2842. Me.Label63.AutoSize = True
  2843. Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2844. Me.Label63.Location = New System.Drawing.Point(6, 305)
  2845. Me.Label63.Name = "Label63"
  2846. Me.Label63.Size = New System.Drawing.Size(21, 17)
  2847. Me.Label63.TabIndex = 237
  2848. Me.Label63.Text = "養"
  2849. '
  2850. 'Label62
  2851. '
  2852. Me.Label62.AutoSize = True
  2853. Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2854. Me.Label62.Location = New System.Drawing.Point(6, 283)
  2855. Me.Label62.Name = "Label62"
  2856. Me.Label62.Size = New System.Drawing.Size(21, 17)
  2857. Me.Label62.TabIndex = 236
  2858. Me.Label62.Text = "胎"
  2859. '
  2860. 'Label61
  2861. '
  2862. Me.Label61.AutoSize = True
  2863. Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2864. Me.Label61.Location = New System.Drawing.Point(6, 118)
  2865. Me.Label61.Name = "Label61"
  2866. Me.Label61.Size = New System.Drawing.Size(34, 17)
  2867. Me.Label61.TabIndex = 235
  2868. Me.Label61.Text = "臨官"
  2869. '
  2870. 'Label60
  2871. '
  2872. Me.Label60.AutoSize = True
  2873. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2874. Me.Label60.ForeColor = System.Drawing.Color.Red
  2875. Me.Label60.Location = New System.Drawing.Point(6, 260)
  2876. Me.Label60.Name = "Label60"
  2877. Me.Label60.Size = New System.Drawing.Size(21, 17)
  2878. Me.Label60.TabIndex = 234
  2879. Me.Label60.Text = "絕"
  2880. '
  2881. 'Label59
  2882. '
  2883. Me.Label59.AutoSize = True
  2884. Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2885. Me.Label59.ForeColor = System.Drawing.Color.Red
  2886. Me.Label59.Location = New System.Drawing.Point(6, 237)
  2887. Me.Label59.Name = "Label59"
  2888. Me.Label59.Size = New System.Drawing.Size(21, 17)
  2889. Me.Label59.TabIndex = 233
  2890. Me.Label59.Text = "墓"
  2891. '
  2892. 'Label58
  2893. '
  2894. Me.Label58.AutoSize = True
  2895. Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2896. Me.Label58.Location = New System.Drawing.Point(6, 214)
  2897. Me.Label58.Name = "Label58"
  2898. Me.Label58.Size = New System.Drawing.Size(21, 17)
  2899. Me.Label58.TabIndex = 232
  2900. Me.Label58.Text = "死"
  2901. '
  2902. 'Label57
  2903. '
  2904. Me.Label57.AutoSize = True
  2905. Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2906. Me.Label57.Location = New System.Drawing.Point(6, 191)
  2907. Me.Label57.Name = "Label57"
  2908. Me.Label57.Size = New System.Drawing.Size(21, 17)
  2909. Me.Label57.TabIndex = 231
  2910. Me.Label57.Text = "病"
  2911. '
  2912. 'Label56
  2913. '
  2914. Me.Label56.AutoSize = True
  2915. Me.Label56.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2916. Me.Label56.Location = New System.Drawing.Point(6, 168)
  2917. Me.Label56.Name = "Label56"
  2918. Me.Label56.Size = New System.Drawing.Size(21, 17)
  2919. Me.Label56.TabIndex = 230
  2920. Me.Label56.Text = "衰"
  2921. '
  2922. 'Label53
  2923. '
  2924. Me.Label53.AutoSize = True
  2925. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2926. Me.Label53.Location = New System.Drawing.Point(6, 144)
  2927. Me.Label53.Name = "Label53"
  2928. Me.Label53.Size = New System.Drawing.Size(34, 17)
  2929. Me.Label53.TabIndex = 229
  2930. Me.Label53.Text = "帝旺"
  2931. '
  2932. 'Label52
  2933. '
  2934. Me.Label52.AutoSize = True
  2935. Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2936. Me.Label52.Location = New System.Drawing.Point(6, 95)
  2937. Me.Label52.Name = "Label52"
  2938. Me.Label52.Size = New System.Drawing.Size(34, 17)
  2939. Me.Label52.TabIndex = 228
  2940. Me.Label52.Text = "官帶"
  2941. '
  2942. 'Label51
  2943. '
  2944. Me.Label51.AutoSize = True
  2945. Me.Label51.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2946. Me.Label51.Location = New System.Drawing.Point(6, 76)
  2947. Me.Label51.Name = "Label51"
  2948. Me.Label51.Size = New System.Drawing.Size(34, 17)
  2949. Me.Label51.TabIndex = 227
  2950. Me.Label51.Text = "沐浴"
  2951. '
  2952. 'Label50
  2953. '
  2954. Me.Label50.AutoSize = True
  2955. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2956. Me.Label50.ForeColor = System.Drawing.Color.Red
  2957. Me.Label50.Location = New System.Drawing.Point(6, 53)
  2958. Me.Label50.Name = "Label50"
  2959. Me.Label50.Size = New System.Drawing.Size(34, 17)
  2960. Me.Label50.TabIndex = 226
  2961. Me.Label50.Text = "長生"
  2962. '
  2963. 'TextBox168
  2964. '
  2965. Me.TextBox168.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2966. Me.TextBox168.ForeColor = System.Drawing.Color.Black
  2967. Me.TextBox168.Location = New System.Drawing.Point(77, 306)
  2968. Me.TextBox168.Multiline = True
  2969. Me.TextBox168.Name = "TextBox168"
  2970. Me.TextBox168.Size = New System.Drawing.Size(25, 20)
  2971. Me.TextBox168.TabIndex = 225
  2972. '
  2973. 'TextBox167
  2974. '
  2975. Me.TextBox167.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2976. Me.TextBox167.ForeColor = System.Drawing.Color.Black
  2977. Me.TextBox167.Location = New System.Drawing.Point(77, 283)
  2978. Me.TextBox167.Multiline = True
  2979. Me.TextBox167.Name = "TextBox167"
  2980. Me.TextBox167.Size = New System.Drawing.Size(25, 20)
  2981. Me.TextBox167.TabIndex = 224
  2982. '
  2983. 'TextBox166
  2984. '
  2985. Me.TextBox166.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2986. Me.TextBox166.ForeColor = System.Drawing.Color.Black
  2987. Me.TextBox166.Location = New System.Drawing.Point(77, 260)
  2988. Me.TextBox166.Multiline = True
  2989. Me.TextBox166.Name = "TextBox166"
  2990. Me.TextBox166.Size = New System.Drawing.Size(25, 20)
  2991. Me.TextBox166.TabIndex = 223
  2992. '
  2993. 'TextBox165
  2994. '
  2995. Me.TextBox165.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2996. Me.TextBox165.ForeColor = System.Drawing.Color.Black
  2997. Me.TextBox165.Location = New System.Drawing.Point(77, 237)
  2998. Me.TextBox165.Multiline = True
  2999. Me.TextBox165.Name = "TextBox165"
  3000. Me.TextBox165.Size = New System.Drawing.Size(25, 20)
  3001. Me.TextBox165.TabIndex = 222
  3002. '
  3003. 'TextBox164
  3004. '
  3005. Me.TextBox164.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3006. Me.TextBox164.ForeColor = System.Drawing.Color.Black
  3007. Me.TextBox164.Location = New System.Drawing.Point(77, 214)
  3008. Me.TextBox164.Multiline = True
  3009. Me.TextBox164.Name = "TextBox164"
  3010. Me.TextBox164.Size = New System.Drawing.Size(25, 20)
  3011. Me.TextBox164.TabIndex = 221
  3012. '
  3013. 'TextBox163
  3014. '
  3015. Me.TextBox163.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3016. Me.TextBox163.ForeColor = System.Drawing.Color.Black
  3017. Me.TextBox163.Location = New System.Drawing.Point(77, 191)
  3018. Me.TextBox163.Multiline = True
  3019. Me.TextBox163.Name = "TextBox163"
  3020. Me.TextBox163.Size = New System.Drawing.Size(25, 20)
  3021. Me.TextBox163.TabIndex = 220
  3022. '
  3023. 'TextBox162
  3024. '
  3025. Me.TextBox162.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3026. Me.TextBox162.ForeColor = System.Drawing.Color.Black
  3027. Me.TextBox162.Location = New System.Drawing.Point(77, 168)
  3028. Me.TextBox162.Multiline = True
  3029. Me.TextBox162.Name = "TextBox162"
  3030. Me.TextBox162.Size = New System.Drawing.Size(25, 20)
  3031. Me.TextBox162.TabIndex = 219
  3032. '
  3033. 'TextBox161
  3034. '
  3035. Me.TextBox161.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3036. Me.TextBox161.ForeColor = System.Drawing.Color.Black
  3037. Me.TextBox161.Location = New System.Drawing.Point(77, 145)
  3038. Me.TextBox161.Multiline = True
  3039. Me.TextBox161.Name = "TextBox161"
  3040. Me.TextBox161.Size = New System.Drawing.Size(25, 20)
  3041. Me.TextBox161.TabIndex = 218
  3042. '
  3043. 'TextBox160
  3044. '
  3045. Me.TextBox160.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3046. Me.TextBox160.ForeColor = System.Drawing.Color.Black
  3047. Me.TextBox160.Location = New System.Drawing.Point(77, 122)
  3048. Me.TextBox160.Multiline = True
  3049. Me.TextBox160.Name = "TextBox160"
  3050. Me.TextBox160.Size = New System.Drawing.Size(25, 20)
  3051. Me.TextBox160.TabIndex = 217
  3052. '
  3053. 'TextBox159
  3054. '
  3055. Me.TextBox159.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3056. Me.TextBox159.ForeColor = System.Drawing.Color.Black
  3057. Me.TextBox159.Location = New System.Drawing.Point(77, 99)
  3058. Me.TextBox159.Multiline = True
  3059. Me.TextBox159.Name = "TextBox159"
  3060. Me.TextBox159.Size = New System.Drawing.Size(25, 20)
  3061. Me.TextBox159.TabIndex = 216
  3062. '
  3063. 'TextBox158
  3064. '
  3065. Me.TextBox158.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3066. Me.TextBox158.ForeColor = System.Drawing.Color.Black
  3067. Me.TextBox158.Location = New System.Drawing.Point(77, 76)
  3068. Me.TextBox158.Multiline = True
  3069. Me.TextBox158.Name = "TextBox158"
  3070. Me.TextBox158.Size = New System.Drawing.Size(25, 20)
  3071. Me.TextBox158.TabIndex = 215
  3072. '
  3073. 'TextBox157
  3074. '
  3075. Me.TextBox157.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3076. Me.TextBox157.ForeColor = System.Drawing.Color.Black
  3077. Me.TextBox157.Location = New System.Drawing.Point(77, 53)
  3078. Me.TextBox157.Multiline = True
  3079. Me.TextBox157.Name = "TextBox157"
  3080. Me.TextBox157.Size = New System.Drawing.Size(25, 20)
  3081. Me.TextBox157.TabIndex = 214
  3082. '
  3083. 'TextBox156
  3084. '
  3085. Me.TextBox156.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3086. Me.TextBox156.ForeColor = System.Drawing.Color.Black
  3087. Me.TextBox156.Location = New System.Drawing.Point(46, 305)
  3088. Me.TextBox156.Multiline = True
  3089. Me.TextBox156.Name = "TextBox156"
  3090. Me.TextBox156.Size = New System.Drawing.Size(25, 20)
  3091. Me.TextBox156.TabIndex = 213
  3092. '
  3093. 'TextBox155
  3094. '
  3095. Me.TextBox155.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3096. Me.TextBox155.ForeColor = System.Drawing.Color.Black
  3097. Me.TextBox155.Location = New System.Drawing.Point(46, 282)
  3098. Me.TextBox155.Multiline = True
  3099. Me.TextBox155.Name = "TextBox155"
  3100. Me.TextBox155.Size = New System.Drawing.Size(25, 20)
  3101. Me.TextBox155.TabIndex = 212
  3102. '
  3103. 'TextBox154
  3104. '
  3105. Me.TextBox154.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3106. Me.TextBox154.ForeColor = System.Drawing.Color.Black
  3107. Me.TextBox154.Location = New System.Drawing.Point(46, 259)
  3108. Me.TextBox154.Multiline = True
  3109. Me.TextBox154.Name = "TextBox154"
  3110. Me.TextBox154.Size = New System.Drawing.Size(25, 20)
  3111. Me.TextBox154.TabIndex = 211
  3112. '
  3113. 'TextBox153
  3114. '
  3115. Me.TextBox153.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3116. Me.TextBox153.ForeColor = System.Drawing.Color.Black
  3117. Me.TextBox153.Location = New System.Drawing.Point(46, 236)
  3118. Me.TextBox153.Multiline = True
  3119. Me.TextBox153.Name = "TextBox153"
  3120. Me.TextBox153.Size = New System.Drawing.Size(25, 20)
  3121. Me.TextBox153.TabIndex = 210
  3122. '
  3123. 'TextBox152
  3124. '
  3125. Me.TextBox152.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3126. Me.TextBox152.ForeColor = System.Drawing.Color.Black
  3127. Me.TextBox152.Location = New System.Drawing.Point(46, 213)
  3128. Me.TextBox152.Multiline = True
  3129. Me.TextBox152.Name = "TextBox152"
  3130. Me.TextBox152.Size = New System.Drawing.Size(25, 20)
  3131. Me.TextBox152.TabIndex = 209
  3132. '
  3133. 'TextBox151
  3134. '
  3135. Me.TextBox151.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3136. Me.TextBox151.ForeColor = System.Drawing.Color.Black
  3137. Me.TextBox151.Location = New System.Drawing.Point(46, 190)
  3138. Me.TextBox151.Multiline = True
  3139. Me.TextBox151.Name = "TextBox151"
  3140. Me.TextBox151.Size = New System.Drawing.Size(25, 20)
  3141. Me.TextBox151.TabIndex = 208
  3142. '
  3143. 'TextBox150
  3144. '
  3145. Me.TextBox150.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3146. Me.TextBox150.ForeColor = System.Drawing.Color.Black
  3147. Me.TextBox150.Location = New System.Drawing.Point(46, 167)
  3148. Me.TextBox150.Multiline = True
  3149. Me.TextBox150.Name = "TextBox150"
  3150. Me.TextBox150.Size = New System.Drawing.Size(25, 20)
  3151. Me.TextBox150.TabIndex = 207
  3152. '
  3153. 'TextBox149
  3154. '
  3155. Me.TextBox149.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3156. Me.TextBox149.ForeColor = System.Drawing.Color.Black
  3157. Me.TextBox149.Location = New System.Drawing.Point(46, 144)
  3158. Me.TextBox149.Multiline = True
  3159. Me.TextBox149.Name = "TextBox149"
  3160. Me.TextBox149.Size = New System.Drawing.Size(25, 20)
  3161. Me.TextBox149.TabIndex = 206
  3162. '
  3163. 'TextBox148
  3164. '
  3165. Me.TextBox148.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3166. Me.TextBox148.ForeColor = System.Drawing.Color.Black
  3167. Me.TextBox148.Location = New System.Drawing.Point(46, 121)
  3168. Me.TextBox148.Multiline = True
  3169. Me.TextBox148.Name = "TextBox148"
  3170. Me.TextBox148.Size = New System.Drawing.Size(25, 20)
  3171. Me.TextBox148.TabIndex = 205
  3172. '
  3173. 'TextBox147
  3174. '
  3175. Me.TextBox147.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3176. Me.TextBox147.ForeColor = System.Drawing.Color.Black
  3177. Me.TextBox147.Location = New System.Drawing.Point(46, 98)
  3178. Me.TextBox147.Multiline = True
  3179. Me.TextBox147.Name = "TextBox147"
  3180. Me.TextBox147.Size = New System.Drawing.Size(25, 20)
  3181. Me.TextBox147.TabIndex = 204
  3182. '
  3183. 'TextBox146
  3184. '
  3185. Me.TextBox146.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3186. Me.TextBox146.ForeColor = System.Drawing.Color.Black
  3187. Me.TextBox146.Location = New System.Drawing.Point(46, 75)
  3188. Me.TextBox146.Multiline = True
  3189. Me.TextBox146.Name = "TextBox146"
  3190. Me.TextBox146.Size = New System.Drawing.Size(25, 20)
  3191. Me.TextBox146.TabIndex = 203
  3192. '
  3193. 'TextBox145
  3194. '
  3195. Me.TextBox145.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3196. Me.TextBox145.ForeColor = System.Drawing.Color.Black
  3197. Me.TextBox145.Location = New System.Drawing.Point(46, 53)
  3198. Me.TextBox145.Multiline = True
  3199. Me.TextBox145.Name = "TextBox145"
  3200. Me.TextBox145.Size = New System.Drawing.Size(25, 20)
  3201. Me.TextBox145.TabIndex = 202
  3202. '
  3203. 'Label55
  3204. '
  3205. Me.Label55.AutoSize = True
  3206. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3207. Me.Label55.Location = New System.Drawing.Point(79, 23)
  3208. Me.Label55.Name = "Label55"
  3209. Me.Label55.Size = New System.Drawing.Size(24, 19)
  3210. Me.Label55.TabIndex = 193
  3211. Me.Label55.Text = "用"
  3212. '
  3213. 'Label54
  3214. '
  3215. Me.Label54.AutoSize = True
  3216. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3217. Me.Label54.Location = New System.Drawing.Point(48, 23)
  3218. Me.Label54.Name = "Label54"
  3219. Me.Label54.Size = New System.Drawing.Size(24, 19)
  3220. Me.Label54.TabIndex = 192
  3221. Me.Label54.Text = "日"
  3222. '
  3223. 'Label65
  3224. '
  3225. Me.Label65.AutoSize = True
  3226. Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3227. Me.Label65.Location = New System.Drawing.Point(9, 368)
  3228. Me.Label65.Name = "Label65"
  3229. Me.Label65.Size = New System.Drawing.Size(42, 21)
  3230. Me.Label65.TabIndex = 190
  3231. Me.Label65.Text = "卦辭"
  3232. '
  3233. '卦辭_tb
  3234. '
  3235. Me.卦辭_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3236. Me.卦辭_tb.ForeColor = System.Drawing.Color.Black
  3237. Me.卦辭_tb.Location = New System.Drawing.Point(55, 364)
  3238. Me.卦辭_tb.Multiline = True
  3239. Me.卦辭_tb.Name = "卦辭_tb"
  3240. Me.卦辭_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3241. Me.卦辭_tb.Size = New System.Drawing.Size(347, 66)
  3242. Me.卦辭_tb.TabIndex = 198
  3243. '
  3244. '篆曰_tb
  3245. '
  3246. Me.篆曰_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3247. Me.篆曰_tb.ForeColor = System.Drawing.Color.Black
  3248. Me.篆曰_tb.Location = New System.Drawing.Point(54, 431)
  3249. Me.篆曰_tb.Multiline = True
  3250. Me.篆曰_tb.Name = "篆曰_tb"
  3251. Me.篆曰_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3252. Me.篆曰_tb.Size = New System.Drawing.Size(348, 121)
  3253. Me.篆曰_tb.TabIndex = 201
  3254. '
  3255. 'Label66
  3256. '
  3257. Me.Label66.AutoSize = True
  3258. Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3259. Me.Label66.Location = New System.Drawing.Point(9, 431)
  3260. Me.Label66.Name = "Label66"
  3261. Me.Label66.Size = New System.Drawing.Size(42, 21)
  3262. Me.Label66.TabIndex = 200
  3263. Me.Label66.Text = "篆曰"
  3264. '
  3265. '象曰_tb
  3266. '
  3267. Me.象曰_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3268. Me.象曰_tb.ForeColor = System.Drawing.Color.Black
  3269. Me.象曰_tb.Location = New System.Drawing.Point(54, 554)
  3270. Me.象曰_tb.Multiline = True
  3271. Me.象曰_tb.Name = "象曰_tb"
  3272. Me.象曰_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3273. Me.象曰_tb.Size = New System.Drawing.Size(347, 66)
  3274. Me.象曰_tb.TabIndex = 204
  3275. '
  3276. 'Label68
  3277. '
  3278. Me.Label68.AutoSize = True
  3279. Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3280. Me.Label68.Location = New System.Drawing.Point(8, 554)
  3281. Me.Label68.Name = "Label68"
  3282. Me.Label68.Size = New System.Drawing.Size(42, 21)
  3283. Me.Label68.TabIndex = 203
  3284. Me.Label68.Text = "象曰"
  3285. '
  3286. 'Label67
  3287. '
  3288. Me.Label67.AutoSize = True
  3289. Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3290. Me.Label67.Location = New System.Drawing.Point(180, 778)
  3291. Me.Label67.Name = "Label67"
  3292. Me.Label67.Size = New System.Drawing.Size(26, 21)
  3293. Me.Label67.TabIndex = 211
  3294. Me.Label67.Text = "化"
  3295. '
  3296. '經文3_tb
  3297. '
  3298. Me.經文3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3299. Me.經文3_tb.ForeColor = System.Drawing.Color.Black
  3300. Me.經文3_tb.Location = New System.Drawing.Point(7, 802)
  3301. Me.經文3_tb.Multiline = True
  3302. Me.經文3_tb.Name = "經文3_tb"
  3303. Me.經文3_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3304. Me.經文3_tb.Size = New System.Drawing.Size(196, 155)
  3305. Me.經文3_tb.TabIndex = 210
  3306. '
  3307. '經文4_tb
  3308. '
  3309. Me.經文4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3310. Me.經文4_tb.ForeColor = System.Drawing.Color.Black
  3311. Me.經文4_tb.Location = New System.Drawing.Point(206, 802)
  3312. Me.經文4_tb.Multiline = True
  3313. Me.經文4_tb.Name = "經文4_tb"
  3314. Me.經文4_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3315. Me.經文4_tb.Size = New System.Drawing.Size(196, 155)
  3316. Me.經文4_tb.TabIndex = 209
  3317. '
  3318. '經文2_tb
  3319. '
  3320. Me.經文2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3321. Me.經文2_tb.ForeColor = System.Drawing.Color.Black
  3322. Me.經文2_tb.Location = New System.Drawing.Point(205, 622)
  3323. Me.經文2_tb.Multiline = True
  3324. Me.經文2_tb.Name = "經文2_tb"
  3325. Me.經文2_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3326. Me.經文2_tb.Size = New System.Drawing.Size(196, 155)
  3327. Me.經文2_tb.TabIndex = 208
  3328. '
  3329. '經文1_tb
  3330. '
  3331. Me.經文1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3332. Me.經文1_tb.ForeColor = System.Drawing.Color.Black
  3333. Me.經文1_tb.Location = New System.Drawing.Point(6, 622)
  3334. Me.經文1_tb.Multiline = True
  3335. Me.經文1_tb.Name = "經文1_tb"
  3336. Me.經文1_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  3337. Me.經文1_tb.Size = New System.Drawing.Size(196, 155)
  3338. Me.經文1_tb.TabIndex = 207
  3339. '
  3340. 'TextBox178
  3341. '
  3342. Me.TextBox178.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3343. Me.TextBox178.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3344. Me.TextBox178.Location = New System.Drawing.Point(96, 280)
  3345. Me.TextBox178.Multiline = True
  3346. Me.TextBox178.Name = "TextBox178"
  3347. Me.TextBox178.Size = New System.Drawing.Size(44, 20)
  3348. Me.TextBox178.TabIndex = 199
  3349. Me.TextBox178.Text = "帶剋"
  3350. '
  3351. 'TextBox180
  3352. '
  3353. Me.TextBox180.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3354. Me.TextBox180.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3355. Me.TextBox180.Location = New System.Drawing.Point(96, 50)
  3356. Me.TextBox180.Multiline = True
  3357. Me.TextBox180.Name = "TextBox180"
  3358. Me.TextBox180.Size = New System.Drawing.Size(44, 20)
  3359. Me.TextBox180.TabIndex = 197
  3360. Me.TextBox180.Text = "帶剋"
  3361. '
  3362. 'GroupBox7
  3363. '
  3364. Me.GroupBox7.Controls.Add(Me.TextBox190)
  3365. Me.GroupBox7.Controls.Add(Me.TextBox172)
  3366. Me.GroupBox7.Controls.Add(Me.Label69)
  3367. Me.GroupBox7.Controls.Add(Me.Label108)
  3368. Me.GroupBox7.Controls.Add(Me.Label109)
  3369. Me.GroupBox7.Controls.Add(Me.Label110)
  3370. Me.GroupBox7.Controls.Add(Me.Label111)
  3371. Me.GroupBox7.Controls.Add(Me.Label112)
  3372. Me.GroupBox7.Controls.Add(Me.Label113)
  3373. Me.GroupBox7.Controls.Add(Me.Label114)
  3374. Me.GroupBox7.Controls.Add(Me.Label115)
  3375. Me.GroupBox7.Controls.Add(Me.Label116)
  3376. Me.GroupBox7.Controls.Add(Me.Label117)
  3377. Me.GroupBox7.Controls.Add(Me.Label118)
  3378. Me.GroupBox7.Controls.Add(Me.Label119)
  3379. Me.GroupBox7.Controls.Add(Me.TextBox178)
  3380. Me.GroupBox7.Controls.Add(Me.Label107)
  3381. Me.GroupBox7.Controls.Add(Me.TextBox180)
  3382. Me.GroupBox7.Controls.Add(Me.Label64)
  3383. Me.GroupBox7.Controls.Add(Me.Label96)
  3384. Me.GroupBox7.Controls.Add(Me.Label97)
  3385. Me.GroupBox7.Controls.Add(Me.Label98)
  3386. Me.GroupBox7.Controls.Add(Me.Label99)
  3387. Me.GroupBox7.Controls.Add(Me.Label100)
  3388. Me.GroupBox7.Controls.Add(Me.Label101)
  3389. Me.GroupBox7.Controls.Add(Me.Label102)
  3390. Me.GroupBox7.Controls.Add(Me.Label103)
  3391. Me.GroupBox7.Controls.Add(Me.Label104)
  3392. Me.GroupBox7.Controls.Add(Me.Label105)
  3393. Me.GroupBox7.Controls.Add(Me.Label106)
  3394. Me.GroupBox7.Controls.Add(Me.Label73)
  3395. Me.GroupBox7.Controls.Add(Me.Label74)
  3396. Me.GroupBox7.Controls.Add(Me.Label75)
  3397. Me.GroupBox7.Controls.Add(Me.Label76)
  3398. Me.GroupBox7.Controls.Add(Me.Label85)
  3399. Me.GroupBox7.Controls.Add(Me.Label86)
  3400. Me.GroupBox7.Controls.Add(Me.Label87)
  3401. Me.GroupBox7.Controls.Add(Me.Label88)
  3402. Me.GroupBox7.Controls.Add(Me.Label89)
  3403. Me.GroupBox7.Controls.Add(Me.Label90)
  3404. Me.GroupBox7.Controls.Add(Me.Label91)
  3405. Me.GroupBox7.Controls.Add(Me.Label92)
  3406. Me.GroupBox7.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3407. Me.GroupBox7.Location = New System.Drawing.Point(122, 28)
  3408. Me.GroupBox7.Name = "GroupBox7"
  3409. Me.GroupBox7.Size = New System.Drawing.Size(149, 331)
  3410. Me.GroupBox7.TabIndex = 207
  3411. Me.GroupBox7.TabStop = False
  3412. Me.GroupBox7.Text = "地支合衝"
  3413. '
  3414. 'TextBox190
  3415. '
  3416. Me.TextBox190.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3417. Me.TextBox190.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3418. Me.TextBox190.Location = New System.Drawing.Point(96, 121)
  3419. Me.TextBox190.Multiline = True
  3420. Me.TextBox190.Name = "TextBox190"
  3421. Me.TextBox190.Size = New System.Drawing.Size(44, 20)
  3422. Me.TextBox190.TabIndex = 266
  3423. Me.TextBox190.Text = "帶剋"
  3424. '
  3425. 'TextBox172
  3426. '
  3427. Me.TextBox172.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3428. Me.TextBox172.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  3429. Me.TextBox172.Location = New System.Drawing.Point(96, 73)
  3430. Me.TextBox172.Multiline = True
  3431. Me.TextBox172.Name = "TextBox172"
  3432. Me.TextBox172.Size = New System.Drawing.Size(44, 20)
  3433. Me.TextBox172.TabIndex = 264
  3434. Me.TextBox172.Text = "帶剋"
  3435. '
  3436. 'Label69
  3437. '
  3438. Me.Label69.AutoSize = True
  3439. Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3440. Me.Label69.ForeColor = System.Drawing.Color.Black
  3441. Me.Label69.Location = New System.Drawing.Point(66, 24)
  3442. Me.Label69.Name = "Label69"
  3443. Me.Label69.Size = New System.Drawing.Size(24, 19)
  3444. Me.Label69.TabIndex = 263
  3445. Me.Label69.Text = "合"
  3446. '
  3447. 'Label108
  3448. '
  3449. Me.Label108.AutoSize = True
  3450. Me.Label108.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3451. Me.Label108.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3452. Me.Label108.Location = New System.Drawing.Point(66, 212)
  3453. Me.Label108.Name = "Label108"
  3454. Me.Label108.Size = New System.Drawing.Size(24, 19)
  3455. Me.Label108.TabIndex = 262
  3456. Me.Label108.Text = "午"
  3457. '
  3458. 'Label109
  3459. '
  3460. Me.Label109.AutoSize = True
  3461. Me.Label109.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3462. Me.Label109.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3463. Me.Label109.Location = New System.Drawing.Point(66, 235)
  3464. Me.Label109.Name = "Label109"
  3465. Me.Label109.Size = New System.Drawing.Size(24, 19)
  3466. Me.Label109.TabIndex = 261
  3467. Me.Label109.Text = "巳"
  3468. '
  3469. 'Label110
  3470. '
  3471. Me.Label110.AutoSize = True
  3472. Me.Label110.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3473. Me.Label110.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3474. Me.Label110.Location = New System.Drawing.Point(66, 258)
  3475. Me.Label110.Name = "Label110"
  3476. Me.Label110.Size = New System.Drawing.Size(24, 19)
  3477. Me.Label110.TabIndex = 260
  3478. Me.Label110.Text = "辰"
  3479. '
  3480. 'Label111
  3481. '
  3482. Me.Label111.AutoSize = True
  3483. Me.Label111.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3484. Me.Label111.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3485. Me.Label111.Location = New System.Drawing.Point(66, 281)
  3486. Me.Label111.Name = "Label111"
  3487. Me.Label111.Size = New System.Drawing.Size(24, 19)
  3488. Me.Label111.TabIndex = 259
  3489. Me.Label111.Text = "卯"
  3490. '
  3491. 'Label112
  3492. '
  3493. Me.Label112.AutoSize = True
  3494. Me.Label112.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3495. Me.Label112.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3496. Me.Label112.Location = New System.Drawing.Point(66, 304)
  3497. Me.Label112.Name = "Label112"
  3498. Me.Label112.Size = New System.Drawing.Size(24, 19)
  3499. Me.Label112.TabIndex = 258
  3500. Me.Label112.Text = "寅"
  3501. '
  3502. 'Label113
  3503. '
  3504. Me.Label113.AutoSize = True
  3505. Me.Label113.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3506. Me.Label113.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3507. Me.Label113.Location = New System.Drawing.Point(66, 74)
  3508. Me.Label113.Name = "Label113"
  3509. Me.Label113.Size = New System.Drawing.Size(24, 19)
  3510. Me.Label113.TabIndex = 257
  3511. Me.Label113.Text = "子"
  3512. '
  3513. 'Label114
  3514. '
  3515. Me.Label114.AutoSize = True
  3516. Me.Label114.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3517. Me.Label114.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3518. Me.Label114.Location = New System.Drawing.Point(66, 189)
  3519. Me.Label114.Name = "Label114"
  3520. Me.Label114.Size = New System.Drawing.Size(24, 19)
  3521. Me.Label114.TabIndex = 256
  3522. Me.Label114.Text = "未"
  3523. '
  3524. 'Label115
  3525. '
  3526. Me.Label115.AutoSize = True
  3527. Me.Label115.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3528. Me.Label115.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3529. Me.Label115.Location = New System.Drawing.Point(66, 166)
  3530. Me.Label115.Name = "Label115"
  3531. Me.Label115.Size = New System.Drawing.Size(24, 19)
  3532. Me.Label115.TabIndex = 255
  3533. Me.Label115.Text = "申"
  3534. '
  3535. 'Label116
  3536. '
  3537. Me.Label116.AutoSize = True
  3538. Me.Label116.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3539. Me.Label116.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3540. Me.Label116.Location = New System.Drawing.Point(66, 51)
  3541. Me.Label116.Name = "Label116"
  3542. Me.Label116.Size = New System.Drawing.Size(24, 19)
  3543. Me.Label116.TabIndex = 251
  3544. Me.Label116.Text = "丑"
  3545. '
  3546. 'Label117
  3547. '
  3548. Me.Label117.AutoSize = True
  3549. Me.Label117.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3550. Me.Label117.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3551. Me.Label117.Location = New System.Drawing.Point(66, 97)
  3552. Me.Label117.Name = "Label117"
  3553. Me.Label117.Size = New System.Drawing.Size(24, 19)
  3554. Me.Label117.TabIndex = 252
  3555. Me.Label117.Text = "亥"
  3556. '
  3557. 'Label118
  3558. '
  3559. Me.Label118.AutoSize = True
  3560. Me.Label118.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3561. Me.Label118.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3562. Me.Label118.Location = New System.Drawing.Point(66, 120)
  3563. Me.Label118.Name = "Label118"
  3564. Me.Label118.Size = New System.Drawing.Size(24, 19)
  3565. Me.Label118.TabIndex = 253
  3566. Me.Label118.Text = "戌"
  3567. '
  3568. 'Label119
  3569. '
  3570. Me.Label119.AutoSize = True
  3571. Me.Label119.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3572. Me.Label119.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3573. Me.Label119.Location = New System.Drawing.Point(66, 143)
  3574. Me.Label119.Name = "Label119"
  3575. Me.Label119.Size = New System.Drawing.Size(24, 19)
  3576. Me.Label119.TabIndex = 254
  3577. Me.Label119.Text = "酉"
  3578. '
  3579. 'Label107
  3580. '
  3581. Me.Label107.AutoSize = True
  3582. Me.Label107.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3583. Me.Label107.ForeColor = System.Drawing.Color.Black
  3584. Me.Label107.Location = New System.Drawing.Point(36, 24)
  3585. Me.Label107.Name = "Label107"
  3586. Me.Label107.Size = New System.Drawing.Size(24, 19)
  3587. Me.Label107.TabIndex = 250
  3588. Me.Label107.Text = "衝"
  3589. '
  3590. 'Label64
  3591. '
  3592. Me.Label64.AutoSize = True
  3593. Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3594. Me.Label64.ForeColor = System.Drawing.Color.Red
  3595. Me.Label64.Location = New System.Drawing.Point(36, 304)
  3596. Me.Label64.Name = "Label64"
  3597. Me.Label64.Size = New System.Drawing.Size(24, 19)
  3598. Me.Label64.TabIndex = 249
  3599. Me.Label64.Text = "巳"
  3600. '
  3601. 'Label96
  3602. '
  3603. Me.Label96.AutoSize = True
  3604. Me.Label96.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3605. Me.Label96.ForeColor = System.Drawing.Color.Red
  3606. Me.Label96.Location = New System.Drawing.Point(36, 281)
  3607. Me.Label96.Name = "Label96"
  3608. Me.Label96.Size = New System.Drawing.Size(24, 19)
  3609. Me.Label96.TabIndex = 248
  3610. Me.Label96.Text = "辰"
  3611. '
  3612. 'Label97
  3613. '
  3614. Me.Label97.AutoSize = True
  3615. Me.Label97.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3616. Me.Label97.ForeColor = System.Drawing.Color.Red
  3617. Me.Label97.Location = New System.Drawing.Point(36, 258)
  3618. Me.Label97.Name = "Label97"
  3619. Me.Label97.Size = New System.Drawing.Size(24, 19)
  3620. Me.Label97.TabIndex = 247
  3621. Me.Label97.Text = "卯"
  3622. '
  3623. 'Label98
  3624. '
  3625. Me.Label98.AutoSize = True
  3626. Me.Label98.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3627. Me.Label98.ForeColor = System.Drawing.Color.Red
  3628. Me.Label98.Location = New System.Drawing.Point(36, 235)
  3629. Me.Label98.Name = "Label98"
  3630. Me.Label98.Size = New System.Drawing.Size(24, 19)
  3631. Me.Label98.TabIndex = 246
  3632. Me.Label98.Text = "寅"
  3633. '
  3634. 'Label99
  3635. '
  3636. Me.Label99.AutoSize = True
  3637. Me.Label99.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3638. Me.Label99.ForeColor = System.Drawing.Color.Red
  3639. Me.Label99.Location = New System.Drawing.Point(36, 212)
  3640. Me.Label99.Name = "Label99"
  3641. Me.Label99.Size = New System.Drawing.Size(24, 19)
  3642. Me.Label99.TabIndex = 245
  3643. Me.Label99.Text = "丑"
  3644. '
  3645. 'Label100
  3646. '
  3647. Me.Label100.AutoSize = True
  3648. Me.Label100.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3649. Me.Label100.ForeColor = System.Drawing.Color.Red
  3650. Me.Label100.Location = New System.Drawing.Point(36, 189)
  3651. Me.Label100.Name = "Label100"
  3652. Me.Label100.Size = New System.Drawing.Size(24, 19)
  3653. Me.Label100.TabIndex = 244
  3654. Me.Label100.Text = "子"
  3655. '
  3656. 'Label101
  3657. '
  3658. Me.Label101.AutoSize = True
  3659. Me.Label101.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3660. Me.Label101.ForeColor = System.Drawing.Color.Red
  3661. Me.Label101.Location = New System.Drawing.Point(36, 166)
  3662. Me.Label101.Name = "Label101"
  3663. Me.Label101.Size = New System.Drawing.Size(24, 19)
  3664. Me.Label101.TabIndex = 243
  3665. Me.Label101.Text = "亥"
  3666. '
  3667. 'Label102
  3668. '
  3669. Me.Label102.AutoSize = True
  3670. Me.Label102.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3671. Me.Label102.ForeColor = System.Drawing.Color.Red
  3672. Me.Label102.Location = New System.Drawing.Point(36, 143)
  3673. Me.Label102.Name = "Label102"
  3674. Me.Label102.Size = New System.Drawing.Size(24, 19)
  3675. Me.Label102.TabIndex = 242
  3676. Me.Label102.Text = "戌"
  3677. '
  3678. 'Label103
  3679. '
  3680. Me.Label103.AutoSize = True
  3681. Me.Label103.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3682. Me.Label103.ForeColor = System.Drawing.Color.Red
  3683. Me.Label103.Location = New System.Drawing.Point(36, 51)
  3684. Me.Label103.Name = "Label103"
  3685. Me.Label103.Size = New System.Drawing.Size(24, 19)
  3686. Me.Label103.TabIndex = 238
  3687. Me.Label103.Text = "午"
  3688. '
  3689. 'Label104
  3690. '
  3691. Me.Label104.AutoSize = True
  3692. Me.Label104.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3693. Me.Label104.ForeColor = System.Drawing.Color.Red
  3694. Me.Label104.Location = New System.Drawing.Point(36, 74)
  3695. Me.Label104.Name = "Label104"
  3696. Me.Label104.Size = New System.Drawing.Size(24, 19)
  3697. Me.Label104.TabIndex = 239
  3698. Me.Label104.Text = "未"
  3699. '
  3700. 'Label105
  3701. '
  3702. Me.Label105.AutoSize = True
  3703. Me.Label105.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3704. Me.Label105.ForeColor = System.Drawing.Color.Red
  3705. Me.Label105.Location = New System.Drawing.Point(36, 97)
  3706. Me.Label105.Name = "Label105"
  3707. Me.Label105.Size = New System.Drawing.Size(24, 19)
  3708. Me.Label105.TabIndex = 240
  3709. Me.Label105.Text = "申"
  3710. '
  3711. 'Label106
  3712. '
  3713. Me.Label106.AutoSize = True
  3714. Me.Label106.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3715. Me.Label106.ForeColor = System.Drawing.Color.Red
  3716. Me.Label106.Location = New System.Drawing.Point(36, 120)
  3717. Me.Label106.Name = "Label106"
  3718. Me.Label106.Size = New System.Drawing.Size(24, 19)
  3719. Me.Label106.TabIndex = 241
  3720. Me.Label106.Text = "酉"
  3721. '
  3722. 'Label73
  3723. '
  3724. Me.Label73.AutoSize = True
  3725. Me.Label73.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3726. Me.Label73.ForeColor = System.Drawing.Color.Black
  3727. Me.Label73.Location = New System.Drawing.Point(6, 304)
  3728. Me.Label73.Name = "Label73"
  3729. Me.Label73.Size = New System.Drawing.Size(24, 19)
  3730. Me.Label73.TabIndex = 237
  3731. Me.Label73.Text = "亥"
  3732. '
  3733. 'Label74
  3734. '
  3735. Me.Label74.AutoSize = True
  3736. Me.Label74.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3737. Me.Label74.ForeColor = System.Drawing.Color.Black
  3738. Me.Label74.Location = New System.Drawing.Point(6, 281)
  3739. Me.Label74.Name = "Label74"
  3740. Me.Label74.Size = New System.Drawing.Size(24, 19)
  3741. Me.Label74.TabIndex = 236
  3742. Me.Label74.Text = "戌"
  3743. '
  3744. 'Label75
  3745. '
  3746. Me.Label75.AutoSize = True
  3747. Me.Label75.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3748. Me.Label75.ForeColor = System.Drawing.Color.Black
  3749. Me.Label75.Location = New System.Drawing.Point(6, 258)
  3750. Me.Label75.Name = "Label75"
  3751. Me.Label75.Size = New System.Drawing.Size(24, 19)
  3752. Me.Label75.TabIndex = 235
  3753. Me.Label75.Text = "酉"
  3754. '
  3755. 'Label76
  3756. '
  3757. Me.Label76.AutoSize = True
  3758. Me.Label76.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3759. Me.Label76.ForeColor = System.Drawing.Color.Black
  3760. Me.Label76.Location = New System.Drawing.Point(6, 235)
  3761. Me.Label76.Name = "Label76"
  3762. Me.Label76.Size = New System.Drawing.Size(24, 19)
  3763. Me.Label76.TabIndex = 234
  3764. Me.Label76.Text = "申"
  3765. '
  3766. 'Label85
  3767. '
  3768. Me.Label85.AutoSize = True
  3769. Me.Label85.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3770. Me.Label85.ForeColor = System.Drawing.Color.Black
  3771. Me.Label85.Location = New System.Drawing.Point(6, 212)
  3772. Me.Label85.Name = "Label85"
  3773. Me.Label85.Size = New System.Drawing.Size(24, 19)
  3774. Me.Label85.TabIndex = 233
  3775. Me.Label85.Text = "未"
  3776. '
  3777. 'Label86
  3778. '
  3779. Me.Label86.AutoSize = True
  3780. Me.Label86.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3781. Me.Label86.ForeColor = System.Drawing.Color.Black
  3782. Me.Label86.Location = New System.Drawing.Point(6, 189)
  3783. Me.Label86.Name = "Label86"
  3784. Me.Label86.Size = New System.Drawing.Size(24, 19)
  3785. Me.Label86.TabIndex = 232
  3786. Me.Label86.Text = "午"
  3787. '
  3788. 'Label87
  3789. '
  3790. Me.Label87.AutoSize = True
  3791. Me.Label87.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3792. Me.Label87.ForeColor = System.Drawing.Color.Black
  3793. Me.Label87.Location = New System.Drawing.Point(6, 166)
  3794. Me.Label87.Name = "Label87"
  3795. Me.Label87.Size = New System.Drawing.Size(24, 19)
  3796. Me.Label87.TabIndex = 231
  3797. Me.Label87.Text = "巳"
  3798. '
  3799. 'Label88
  3800. '
  3801. Me.Label88.AutoSize = True
  3802. Me.Label88.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3803. Me.Label88.ForeColor = System.Drawing.Color.Black
  3804. Me.Label88.Location = New System.Drawing.Point(6, 143)
  3805. Me.Label88.Name = "Label88"
  3806. Me.Label88.Size = New System.Drawing.Size(24, 19)
  3807. Me.Label88.TabIndex = 230
  3808. Me.Label88.Text = "辰"
  3809. '
  3810. 'Label89
  3811. '
  3812. Me.Label89.AutoSize = True
  3813. Me.Label89.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3814. Me.Label89.ForeColor = System.Drawing.Color.Black
  3815. Me.Label89.Location = New System.Drawing.Point(6, 51)
  3816. Me.Label89.Name = "Label89"
  3817. Me.Label89.Size = New System.Drawing.Size(24, 19)
  3818. Me.Label89.TabIndex = 226
  3819. Me.Label89.Text = "子"
  3820. '
  3821. 'Label90
  3822. '
  3823. Me.Label90.AutoSize = True
  3824. Me.Label90.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3825. Me.Label90.ForeColor = System.Drawing.Color.Black
  3826. Me.Label90.Location = New System.Drawing.Point(6, 74)
  3827. Me.Label90.Name = "Label90"
  3828. Me.Label90.Size = New System.Drawing.Size(24, 19)
  3829. Me.Label90.TabIndex = 227
  3830. Me.Label90.Text = "丑"
  3831. '
  3832. 'Label91
  3833. '
  3834. Me.Label91.AutoSize = True
  3835. Me.Label91.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3836. Me.Label91.ForeColor = System.Drawing.Color.Black
  3837. Me.Label91.Location = New System.Drawing.Point(6, 97)
  3838. Me.Label91.Name = "Label91"
  3839. Me.Label91.Size = New System.Drawing.Size(24, 19)
  3840. Me.Label91.TabIndex = 228
  3841. Me.Label91.Text = "寅"
  3842. '
  3843. 'Label92
  3844. '
  3845. Me.Label92.AutoSize = True
  3846. Me.Label92.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3847. Me.Label92.ForeColor = System.Drawing.Color.Black
  3848. Me.Label92.Location = New System.Drawing.Point(6, 120)
  3849. Me.Label92.Name = "Label92"
  3850. Me.Label92.Size = New System.Drawing.Size(24, 19)
  3851. Me.Label92.TabIndex = 229
  3852. Me.Label92.Text = "卯"
  3853. '
  3854. 'GroupBox8
  3855. '
  3856. Me.GroupBox8.Controls.Add(Me.DataGridView1)
  3857. Me.GroupBox8.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3858. Me.GroupBox8.Location = New System.Drawing.Point(1190, 12)
  3859. Me.GroupBox8.Name = "GroupBox8"
  3860. Me.GroupBox8.Size = New System.Drawing.Size(697, 770)
  3861. Me.GroupBox8.TabIndex = 208
  3862. Me.GroupBox8.TabStop = False
  3863. Me.GroupBox8.Text = "歷史資料"
  3864. '
  3865. 'DataGridView1
  3866. '
  3867. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3868. Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  3869. Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3870. Me.DataGridView1.Location = New System.Drawing.Point(12, 28)
  3871. Me.DataGridView1.Name = "DataGridView1"
  3872. Me.DataGridView1.RowHeadersWidth = 5
  3873. DataGridViewCellStyle2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3874. Me.DataGridView1.RowsDefaultCellStyle = DataGridViewCellStyle2
  3875. Me.DataGridView1.RowTemplate.Height = 24
  3876. Me.DataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  3877. Me.DataGridView1.Size = New System.Drawing.Size(675, 736)
  3878. Me.DataGridView1.TabIndex = 0
  3879. '
  3880. 'GroupBox9
  3881. '
  3882. Me.GroupBox9.Controls.Add(Me.Label93)
  3883. Me.GroupBox9.Controls.Add(Me.TextBox183)
  3884. Me.GroupBox9.Controls.Add(Me.TextBox179)
  3885. Me.GroupBox9.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3886. Me.GroupBox9.Location = New System.Drawing.Point(1354, 783)
  3887. Me.GroupBox9.Name = "GroupBox9"
  3888. Me.GroupBox9.Size = New System.Drawing.Size(533, 212)
  3889. Me.GroupBox9.TabIndex = 209
  3890. Me.GroupBox9.TabStop = False
  3891. Me.GroupBox9.Text = "占事"
  3892. '
  3893. 'Label93
  3894. '
  3895. Me.Label93.AutoSize = True
  3896. Me.Label93.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3897. Me.Label93.Location = New System.Drawing.Point(6, 29)
  3898. Me.Label93.Name = "Label93"
  3899. Me.Label93.Size = New System.Drawing.Size(47, 17)
  3900. Me.Label93.TabIndex = 91
  3901. Me.Label93.Text = "占事者"
  3902. '
  3903. 'TextBox183
  3904. '
  3905. Me.TextBox183.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3906. Me.TextBox183.ForeColor = System.Drawing.Color.Black
  3907. Me.TextBox183.Location = New System.Drawing.Point(59, 23)
  3908. Me.TextBox183.Name = "TextBox183"
  3909. Me.TextBox183.Size = New System.Drawing.Size(105, 25)
  3910. Me.TextBox183.TabIndex = 90
  3911. '
  3912. 'TextBox179
  3913. '
  3914. Me.TextBox179.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3915. Me.TextBox179.ForeColor = System.Drawing.Color.Black
  3916. Me.TextBox179.Location = New System.Drawing.Point(6, 57)
  3917. Me.TextBox179.Multiline = True
  3918. Me.TextBox179.Name = "TextBox179"
  3919. Me.TextBox179.Size = New System.Drawing.Size(517, 148)
  3920. Me.TextBox179.TabIndex = 89
  3921. '
  3922. 'Button12
  3923. '
  3924. Me.Button12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3925. Me.Button12.Location = New System.Drawing.Point(9, 46)
  3926. Me.Button12.Name = "Button12"
  3927. Me.Button12.Size = New System.Drawing.Size(120, 25)
  3928. Me.Button12.TabIndex = 210
  3929. Me.Button12.Text = "旺相休囚論"
  3930. Me.Button12.UseVisualStyleBackColor = True
  3931. '
  3932. 'Button13
  3933. '
  3934. Me.Button13.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3935. Me.Button13.Location = New System.Drawing.Point(136, 77)
  3936. Me.Button13.Name = "Button13"
  3937. Me.Button13.Size = New System.Drawing.Size(120, 25)
  3938. Me.Button13.TabIndex = 211
  3939. Me.Button13.Text = "間爻阻隔"
  3940. Me.Button13.UseVisualStyleBackColor = True
  3941. '
  3942. 'Button14
  3943. '
  3944. Me.Button14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3945. Me.Button14.Location = New System.Drawing.Point(135, 15)
  3946. Me.Button14.Name = "Button14"
  3947. Me.Button14.Size = New System.Drawing.Size(120, 25)
  3948. Me.Button14.TabIndex = 212
  3949. Me.Button14.Text = "月破論"
  3950. Me.Button14.UseVisualStyleBackColor = True
  3951. '
  3952. 'Button15
  3953. '
  3954. Me.Button15.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3955. Me.Button15.Location = New System.Drawing.Point(135, 46)
  3956. Me.Button15.Name = "Button15"
  3957. Me.Button15.Size = New System.Drawing.Size(120, 25)
  3958. Me.Button15.TabIndex = 213
  3959. Me.Button15.Text = "旬空論"
  3960. Me.Button15.UseVisualStyleBackColor = True
  3961. '
  3962. 'GroupBox6
  3963. '
  3964. Me.GroupBox6.Controls.Add(Me.Label79)
  3965. Me.GroupBox6.Controls.Add(Me.Label78)
  3966. Me.GroupBox6.Controls.Add(Me.Label72)
  3967. Me.GroupBox6.Controls.Add(Me.Label71)
  3968. Me.GroupBox6.Controls.Add(Me.Label148)
  3969. Me.GroupBox6.Controls.Add(Me.Label70)
  3970. Me.GroupBox6.Controls.Add(Me.Label147)
  3971. Me.GroupBox6.Controls.Add(Me.TextBox200)
  3972. Me.GroupBox6.Controls.Add(Me.Label123)
  3973. Me.GroupBox6.Controls.Add(Me.Label77)
  3974. Me.GroupBox6.Controls.Add(Me.Label83)
  3975. Me.GroupBox6.Controls.Add(Me.Label120)
  3976. Me.GroupBox6.Controls.Add(Me.Button16)
  3977. Me.GroupBox6.Controls.Add(Me.Label122)
  3978. Me.GroupBox6.Controls.Add(Me.Label125)
  3979. Me.GroupBox6.Controls.Add(Me.Label128)
  3980. Me.GroupBox6.Controls.Add(Me.Label131)
  3981. Me.GroupBox6.Controls.Add(Me.Label132)
  3982. Me.GroupBox6.Controls.Add(Me.Label134)
  3983. Me.GroupBox6.Controls.Add(Me.Label135)
  3984. Me.GroupBox6.Controls.Add(Me.Label138)
  3985. Me.GroupBox6.Controls.Add(Me.Label141)
  3986. Me.GroupBox6.Controls.Add(Me.Label145)
  3987. Me.GroupBox6.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3988. Me.GroupBox6.Location = New System.Drawing.Point(7, 430)
  3989. Me.GroupBox6.Name = "GroupBox6"
  3990. Me.GroupBox6.Size = New System.Drawing.Size(265, 170)
  3991. Me.GroupBox6.TabIndex = 214
  3992. Me.GroupBox6.TabStop = False
  3993. Me.GroupBox6.Text = "三合"
  3994. '
  3995. 'Label79
  3996. '
  3997. Me.Label79.AutoSize = True
  3998. Me.Label79.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3999. Me.Label79.ForeColor = System.Drawing.Color.Black
  4000. Me.Label79.Location = New System.Drawing.Point(167, 84)
  4001. Me.Label79.Name = "Label79"
  4002. Me.Label79.Size = New System.Drawing.Size(86, 17)
  4003. Me.Label79.TabIndex = 271
  4004. Me.Label79.Text = "亥卯未馬在巳"
  4005. '
  4006. 'Label78
  4007. '
  4008. Me.Label78.AutoSize = True
  4009. Me.Label78.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4010. Me.Label78.ForeColor = System.Drawing.Color.Black
  4011. Me.Label78.Location = New System.Drawing.Point(36, 84)
  4012. Me.Label78.Name = "Label78"
  4013. Me.Label78.Size = New System.Drawing.Size(86, 17)
  4014. Me.Label78.TabIndex = 270
  4015. Me.Label78.Text = "寅午戌馬居申"
  4016. '
  4017. 'Label72
  4018. '
  4019. Me.Label72.AutoSize = True
  4020. Me.Label72.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4021. Me.Label72.ForeColor = System.Drawing.Color.Black
  4022. Me.Label72.Location = New System.Drawing.Point(168, 45)
  4023. Me.Label72.Name = "Label72"
  4024. Me.Label72.Size = New System.Drawing.Size(86, 17)
  4025. Me.Label72.TabIndex = 269
  4026. Me.Label72.Text = "巳酉丑馬在亥"
  4027. '
  4028. 'Label71
  4029. '
  4030. Me.Label71.AutoSize = True
  4031. Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4032. Me.Label71.ForeColor = System.Drawing.Color.Black
  4033. Me.Label71.Location = New System.Drawing.Point(36, 45)
  4034. Me.Label71.Name = "Label71"
  4035. Me.Label71.Size = New System.Drawing.Size(86, 17)
  4036. Me.Label71.TabIndex = 268
  4037. Me.Label71.Text = "申子辰馬居寅"
  4038. '
  4039. 'Label148
  4040. '
  4041. Me.Label148.AutoSize = True
  4042. Me.Label148.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4043. Me.Label148.ForeColor = System.Drawing.Color.Black
  4044. Me.Label148.Location = New System.Drawing.Point(138, 62)
  4045. Me.Label148.Name = "Label148"
  4046. Me.Label148.Size = New System.Drawing.Size(34, 17)
  4047. Me.Label148.TabIndex = 267
  4048. Me.Label148.Text = "木局"
  4049. '
  4050. 'Label70
  4051. '
  4052. Me.Label70.AutoSize = True
  4053. Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4054. Me.Label70.ForeColor = System.Drawing.Color.Black
  4055. Me.Label70.Location = New System.Drawing.Point(5, 62)
  4056. Me.Label70.Name = "Label70"
  4057. Me.Label70.Size = New System.Drawing.Size(34, 17)
  4058. Me.Label70.TabIndex = 266
  4059. Me.Label70.Text = "火局"
  4060. '
  4061. 'Label147
  4062. '
  4063. Me.Label147.AutoSize = True
  4064. Me.Label147.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4065. Me.Label147.ForeColor = System.Drawing.Color.Black
  4066. Me.Label147.Location = New System.Drawing.Point(138, 25)
  4067. Me.Label147.Name = "Label147"
  4068. Me.Label147.Size = New System.Drawing.Size(34, 17)
  4069. Me.Label147.TabIndex = 265
  4070. Me.Label147.Text = "金局"
  4071. '
  4072. 'TextBox200
  4073. '
  4074. Me.TextBox200.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4075. Me.TextBox200.ForeColor = System.Drawing.Color.Black
  4076. Me.TextBox200.Location = New System.Drawing.Point(47, 139)
  4077. Me.TextBox200.Name = "TextBox200"
  4078. Me.TextBox200.Size = New System.Drawing.Size(208, 25)
  4079. Me.TextBox200.TabIndex = 226
  4080. '
  4081. 'Label123
  4082. '
  4083. Me.Label123.AutoSize = True
  4084. Me.Label123.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4085. Me.Label123.Location = New System.Drawing.Point(7, 143)
  4086. Me.Label123.Name = "Label123"
  4087. Me.Label123.Size = New System.Drawing.Size(34, 17)
  4088. Me.Label123.TabIndex = 227
  4089. Me.Label123.Text = "三合"
  4090. '
  4091. 'Label77
  4092. '
  4093. Me.Label77.AutoSize = True
  4094. Me.Label77.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4095. Me.Label77.ForeColor = System.Drawing.Color.Blue
  4096. Me.Label77.Location = New System.Drawing.Point(93, 25)
  4097. Me.Label77.Name = "Label77"
  4098. Me.Label77.Size = New System.Drawing.Size(21, 17)
  4099. Me.Label77.TabIndex = 260
  4100. Me.Label77.Text = "辰"
  4101. '
  4102. 'Label83
  4103. '
  4104. Me.Label83.AutoSize = True
  4105. Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4106. Me.Label83.ForeColor = System.Drawing.Color.Goldenrod
  4107. Me.Label83.Location = New System.Drawing.Point(232, 25)
  4108. Me.Label83.Name = "Label83"
  4109. Me.Label83.Size = New System.Drawing.Size(21, 17)
  4110. Me.Label83.TabIndex = 251
  4111. Me.Label83.Text = "丑"
  4112. '
  4113. 'Label120
  4114. '
  4115. Me.Label120.AutoSize = True
  4116. Me.Label120.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4117. Me.Label120.ForeColor = System.Drawing.Color.Red
  4118. Me.Label120.Location = New System.Drawing.Point(92, 64)
  4119. Me.Label120.Name = "Label120"
  4120. Me.Label120.Size = New System.Drawing.Size(21, 17)
  4121. Me.Label120.TabIndex = 253
  4122. Me.Label120.Text = "戌"
  4123. '
  4124. 'Button16
  4125. '
  4126. Me.Button16.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4127. Me.Button16.Location = New System.Drawing.Point(69, 106)
  4128. Me.Button16.Name = "Button16"
  4129. Me.Button16.Size = New System.Drawing.Size(130, 28)
  4130. Me.Button16.TabIndex = 215
  4131. Me.Button16.Text = "三合成局"
  4132. Me.Button16.UseVisualStyleBackColor = True
  4133. '
  4134. 'Label122
  4135. '
  4136. Me.Label122.AutoSize = True
  4137. Me.Label122.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4138. Me.Label122.ForeColor = System.Drawing.Color.Black
  4139. Me.Label122.Location = New System.Drawing.Point(6, 25)
  4140. Me.Label122.Name = "Label122"
  4141. Me.Label122.Size = New System.Drawing.Size(34, 17)
  4142. Me.Label122.TabIndex = 250
  4143. Me.Label122.Text = "水局"
  4144. '
  4145. 'Label125
  4146. '
  4147. Me.Label125.AutoSize = True
  4148. Me.Label125.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4149. Me.Label125.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4150. Me.Label125.Location = New System.Drawing.Point(205, 64)
  4151. Me.Label125.Name = "Label125"
  4152. Me.Label125.Size = New System.Drawing.Size(21, 17)
  4153. Me.Label125.TabIndex = 247
  4154. Me.Label125.Text = "卯"
  4155. '
  4156. 'Label128
  4157. '
  4158. Me.Label128.AutoSize = True
  4159. Me.Label128.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4160. Me.Label128.ForeColor = System.Drawing.Color.Blue
  4161. Me.Label128.Location = New System.Drawing.Point(68, 25)
  4162. Me.Label128.Name = "Label128"
  4163. Me.Label128.Size = New System.Drawing.Size(21, 17)
  4164. Me.Label128.TabIndex = 244
  4165. Me.Label128.Text = "子"
  4166. '
  4167. 'Label131
  4168. '
  4169. Me.Label131.AutoSize = True
  4170. Me.Label131.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4171. Me.Label131.ForeColor = System.Drawing.Color.Red
  4172. Me.Label131.Location = New System.Drawing.Point(67, 64)
  4173. Me.Label131.Name = "Label131"
  4174. Me.Label131.Size = New System.Drawing.Size(21, 17)
  4175. Me.Label131.TabIndex = 238
  4176. Me.Label131.Text = "午"
  4177. '
  4178. 'Label132
  4179. '
  4180. Me.Label132.AutoSize = True
  4181. Me.Label132.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4182. Me.Label132.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4183. Me.Label132.Location = New System.Drawing.Point(232, 64)
  4184. Me.Label132.Name = "Label132"
  4185. Me.Label132.Size = New System.Drawing.Size(21, 17)
  4186. Me.Label132.TabIndex = 239
  4187. Me.Label132.Text = "未"
  4188. '
  4189. 'Label134
  4190. '
  4191. Me.Label134.AutoSize = True
  4192. Me.Label134.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4193. Me.Label134.ForeColor = System.Drawing.Color.Goldenrod
  4194. Me.Label134.Location = New System.Drawing.Point(205, 25)
  4195. Me.Label134.Name = "Label134"
  4196. Me.Label134.Size = New System.Drawing.Size(21, 17)
  4197. Me.Label134.TabIndex = 241
  4198. Me.Label134.Text = "酉"
  4199. '
  4200. 'Label135
  4201. '
  4202. Me.Label135.AutoSize = True
  4203. Me.Label135.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4204. Me.Label135.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4205. Me.Label135.Location = New System.Drawing.Point(178, 62)
  4206. Me.Label135.Name = "Label135"
  4207. Me.Label135.Size = New System.Drawing.Size(21, 17)
  4208. Me.Label135.TabIndex = 237
  4209. Me.Label135.Text = "亥"
  4210. '
  4211. 'Label138
  4212. '
  4213. Me.Label138.AutoSize = True
  4214. Me.Label138.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4215. Me.Label138.ForeColor = System.Drawing.Color.Blue
  4216. Me.Label138.Location = New System.Drawing.Point(43, 25)
  4217. Me.Label138.Name = "Label138"
  4218. Me.Label138.Size = New System.Drawing.Size(21, 17)
  4219. Me.Label138.TabIndex = 234
  4220. Me.Label138.Text = "申"
  4221. '
  4222. 'Label141
  4223. '
  4224. Me.Label141.AutoSize = True
  4225. Me.Label141.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4226. Me.Label141.ForeColor = System.Drawing.Color.Goldenrod
  4227. Me.Label141.Location = New System.Drawing.Point(178, 25)
  4228. Me.Label141.Name = "Label141"
  4229. Me.Label141.Size = New System.Drawing.Size(21, 17)
  4230. Me.Label141.TabIndex = 231
  4231. Me.Label141.Text = "巳"
  4232. '
  4233. 'Label145
  4234. '
  4235. Me.Label145.AutoSize = True
  4236. Me.Label145.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4237. Me.Label145.ForeColor = System.Drawing.Color.Red
  4238. Me.Label145.Location = New System.Drawing.Point(42, 64)
  4239. Me.Label145.Name = "Label145"
  4240. Me.Label145.Size = New System.Drawing.Size(21, 17)
  4241. Me.Label145.TabIndex = 228
  4242. Me.Label145.Text = "寅"
  4243. '
  4244. 'GroupBox10
  4245. '
  4246. Me.GroupBox10.Controls.Add(Me.GroupBox12)
  4247. Me.GroupBox10.Controls.Add(Me.Button33)
  4248. Me.GroupBox10.Controls.Add(Me.GroupBox4)
  4249. Me.GroupBox10.Controls.Add(Me.GroupBox6)
  4250. Me.GroupBox10.Controls.Add(Me.GroupBox7)
  4251. Me.GroupBox10.Controls.Add(Me.Button32)
  4252. Me.GroupBox10.Controls.Add(Me.Button17)
  4253. Me.GroupBox10.Controls.Add(Me.RadioButton10)
  4254. Me.GroupBox10.Controls.Add(Me.RadioButton8)
  4255. Me.GroupBox10.Controls.Add(Me.Button18)
  4256. Me.GroupBox10.Controls.Add(Me.RadioButton3)
  4257. Me.GroupBox10.Controls.Add(Me.RadioButton4)
  4258. Me.GroupBox10.Controls.Add(Me.Button23)
  4259. Me.GroupBox10.Controls.Add(Me.RadioButton9)
  4260. Me.GroupBox10.Controls.Add(Me.Button24)
  4261. Me.GroupBox10.Controls.Add(Me.Button20)
  4262. Me.GroupBox10.Controls.Add(Me.Label121)
  4263. Me.GroupBox10.Controls.Add(Me.RadioButton5)
  4264. Me.GroupBox10.Controls.Add(Me.RadioButton6)
  4265. Me.GroupBox10.Controls.Add(Me.RadioButton1)
  4266. Me.GroupBox10.Controls.Add(Me.Button19)
  4267. Me.GroupBox10.Controls.Add(Me.TextBox199)
  4268. Me.GroupBox10.Controls.Add(Me.RadioButton7)
  4269. Me.GroupBox10.Controls.Add(Me.CheckBox1)
  4270. Me.GroupBox10.Controls.Add(Me.RadioButton2)
  4271. Me.GroupBox10.Controls.Add(Me.Button21)
  4272. Me.GroupBox10.Controls.Add(Me.Button22)
  4273. Me.GroupBox10.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4274. Me.GroupBox10.Location = New System.Drawing.Point(407, 12)
  4275. Me.GroupBox10.Name = "GroupBox10"
  4276. Me.GroupBox10.Size = New System.Drawing.Size(278, 980)
  4277. Me.GroupBox10.TabIndex = 216
  4278. Me.GroupBox10.TabStop = False
  4279. Me.GroupBox10.Text = "啟蒙節要"
  4280. '
  4281. 'GroupBox12
  4282. '
  4283. Me.GroupBox12.Controls.Add(Me.Label129)
  4284. Me.GroupBox12.Controls.Add(Me.Label124)
  4285. Me.GroupBox12.Controls.Add(Me.Label130)
  4286. Me.GroupBox12.Controls.Add(Me.Label133)
  4287. Me.GroupBox12.Controls.Add(Me.Label137)
  4288. Me.GroupBox12.Controls.Add(Me.Label139)
  4289. Me.GroupBox12.Controls.Add(Me.Button34)
  4290. Me.GroupBox12.Controls.Add(Me.Label140)
  4291. Me.GroupBox12.Controls.Add(Me.TextBox201)
  4292. Me.GroupBox12.Controls.Add(Me.Label136)
  4293. Me.GroupBox12.Controls.Add(Me.Label142)
  4294. Me.GroupBox12.Controls.Add(Me.Label151)
  4295. Me.GroupBox12.Controls.Add(Me.Label146)
  4296. Me.GroupBox12.Controls.Add(Me.Label144)
  4297. Me.GroupBox12.Controls.Add(Me.Label143)
  4298. Me.GroupBox12.Controls.Add(Me.Label149)
  4299. Me.GroupBox12.Controls.Add(Me.Label150)
  4300. Me.GroupBox12.Controls.Add(Me.Label152)
  4301. Me.GroupBox12.Controls.Add(Me.Label153)
  4302. Me.GroupBox12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4303. Me.GroupBox12.Location = New System.Drawing.Point(6, 606)
  4304. Me.GroupBox12.Name = "GroupBox12"
  4305. Me.GroupBox12.Size = New System.Drawing.Size(265, 136)
  4306. Me.GroupBox12.TabIndex = 225
  4307. Me.GroupBox12.TabStop = False
  4308. Me.GroupBox12.Text = "三刑"
  4309. '
  4310. 'Label129
  4311. '
  4312. Me.Label129.AutoSize = True
  4313. Me.Label129.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4314. Me.Label129.ForeColor = System.Drawing.Color.Black
  4315. Me.Label129.Location = New System.Drawing.Point(119, 45)
  4316. Me.Label129.Name = "Label129"
  4317. Me.Label129.Size = New System.Drawing.Size(34, 17)
  4318. Me.Label129.TabIndex = 267
  4319. Me.Label129.Text = "自刑"
  4320. '
  4321. 'Label124
  4322. '
  4323. Me.Label124.AutoSize = True
  4324. Me.Label124.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4325. Me.Label124.Location = New System.Drawing.Point(9, 106)
  4326. Me.Label124.Name = "Label124"
  4327. Me.Label124.Size = New System.Drawing.Size(34, 17)
  4328. Me.Label124.TabIndex = 229
  4329. Me.Label124.Text = "三刑"
  4330. '
  4331. 'Label130
  4332. '
  4333. Me.Label130.AutoSize = True
  4334. Me.Label130.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4335. Me.Label130.ForeColor = System.Drawing.Color.Black
  4336. Me.Label130.Location = New System.Drawing.Point(6, 44)
  4337. Me.Label130.Name = "Label130"
  4338. Me.Label130.Size = New System.Drawing.Size(34, 17)
  4339. Me.Label130.TabIndex = 266
  4340. Me.Label130.Text = "三刑"
  4341. '
  4342. 'Label133
  4343. '
  4344. Me.Label133.AutoSize = True
  4345. Me.Label133.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4346. Me.Label133.ForeColor = System.Drawing.Color.Black
  4347. Me.Label133.Location = New System.Drawing.Point(119, 25)
  4348. Me.Label133.Name = "Label133"
  4349. Me.Label133.Size = New System.Drawing.Size(34, 17)
  4350. Me.Label133.TabIndex = 265
  4351. Me.Label133.Text = "二刑"
  4352. '
  4353. 'Label137
  4354. '
  4355. Me.Label137.AutoSize = True
  4356. Me.Label137.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4357. Me.Label137.ForeColor = System.Drawing.Color.Goldenrod
  4358. Me.Label137.Location = New System.Drawing.Point(46, 44)
  4359. Me.Label137.Name = "Label137"
  4360. Me.Label137.Size = New System.Drawing.Size(21, 17)
  4361. Me.Label137.TabIndex = 251
  4362. Me.Label137.Text = "丑"
  4363. '
  4364. 'Label139
  4365. '
  4366. Me.Label139.AutoSize = True
  4367. Me.Label139.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4368. Me.Label139.ForeColor = System.Drawing.Color.Red
  4369. Me.Label139.Location = New System.Drawing.Point(92, 44)
  4370. Me.Label139.Name = "Label139"
  4371. Me.Label139.Size = New System.Drawing.Size(21, 17)
  4372. Me.Label139.TabIndex = 253
  4373. Me.Label139.Text = "戌"
  4374. '
  4375. 'Button34
  4376. '
  4377. Me.Button34.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4378. Me.Button34.Location = New System.Drawing.Point(69, 69)
  4379. Me.Button34.Name = "Button34"
  4380. Me.Button34.Size = New System.Drawing.Size(130, 28)
  4381. Me.Button34.TabIndex = 215
  4382. Me.Button34.Text = "三刑"
  4383. Me.Button34.UseVisualStyleBackColor = True
  4384. '
  4385. 'Label140
  4386. '
  4387. Me.Label140.AutoSize = True
  4388. Me.Label140.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4389. Me.Label140.ForeColor = System.Drawing.Color.Black
  4390. Me.Label140.Location = New System.Drawing.Point(6, 25)
  4391. Me.Label140.Name = "Label140"
  4392. Me.Label140.Size = New System.Drawing.Size(34, 17)
  4393. Me.Label140.TabIndex = 250
  4394. Me.Label140.Text = "三刑"
  4395. '
  4396. 'TextBox201
  4397. '
  4398. Me.TextBox201.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4399. Me.TextBox201.ForeColor = System.Drawing.Color.Black
  4400. Me.TextBox201.Location = New System.Drawing.Point(49, 102)
  4401. Me.TextBox201.Name = "TextBox201"
  4402. Me.TextBox201.Size = New System.Drawing.Size(207, 25)
  4403. Me.TextBox201.TabIndex = 228
  4404. '
  4405. 'Label136
  4406. '
  4407. Me.Label136.AutoSize = True
  4408. Me.Label136.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4409. Me.Label136.ForeColor = System.Drawing.Color.Blue
  4410. Me.Label136.Location = New System.Drawing.Point(159, 45)
  4411. Me.Label136.Name = "Label136"
  4412. Me.Label136.Size = New System.Drawing.Size(21, 17)
  4413. Me.Label136.TabIndex = 260
  4414. Me.Label136.Text = "辰"
  4415. '
  4416. 'Label142
  4417. '
  4418. Me.Label142.AutoSize = True
  4419. Me.Label142.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4420. Me.Label142.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4421. Me.Label142.Location = New System.Drawing.Point(178, 25)
  4422. Me.Label142.Name = "Label142"
  4423. Me.Label142.Size = New System.Drawing.Size(21, 17)
  4424. Me.Label142.TabIndex = 247
  4425. Me.Label142.Text = "卯"
  4426. '
  4427. 'Label151
  4428. '
  4429. Me.Label151.AutoSize = True
  4430. Me.Label151.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4431. Me.Label151.ForeColor = System.Drawing.Color.Blue
  4432. Me.Label151.Location = New System.Drawing.Point(92, 25)
  4433. Me.Label151.Name = "Label151"
  4434. Me.Label151.Size = New System.Drawing.Size(21, 17)
  4435. Me.Label151.TabIndex = 234
  4436. Me.Label151.Text = "申"
  4437. '
  4438. 'Label146
  4439. '
  4440. Me.Label146.AutoSize = True
  4441. Me.Label146.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4442. Me.Label146.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4443. Me.Label146.Location = New System.Drawing.Point(69, 44)
  4444. Me.Label146.Name = "Label146"
  4445. Me.Label146.Size = New System.Drawing.Size(21, 17)
  4446. Me.Label146.TabIndex = 239
  4447. Me.Label146.Text = "未"
  4448. '
  4449. 'Label144
  4450. '
  4451. Me.Label144.AutoSize = True
  4452. Me.Label144.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4453. Me.Label144.ForeColor = System.Drawing.Color.Red
  4454. Me.Label144.Location = New System.Drawing.Point(178, 45)
  4455. Me.Label144.Name = "Label144"
  4456. Me.Label144.Size = New System.Drawing.Size(21, 17)
  4457. Me.Label144.TabIndex = 238
  4458. Me.Label144.Text = "午"
  4459. '
  4460. 'Label143
  4461. '
  4462. Me.Label143.AutoSize = True
  4463. Me.Label143.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4464. Me.Label143.ForeColor = System.Drawing.Color.Blue
  4465. Me.Label143.Location = New System.Drawing.Point(159, 25)
  4466. Me.Label143.Name = "Label143"
  4467. Me.Label143.Size = New System.Drawing.Size(21, 17)
  4468. Me.Label143.TabIndex = 244
  4469. Me.Label143.Text = "子"
  4470. '
  4471. 'Label149
  4472. '
  4473. Me.Label149.AutoSize = True
  4474. Me.Label149.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4475. Me.Label149.ForeColor = System.Drawing.Color.Goldenrod
  4476. Me.Label149.Location = New System.Drawing.Point(205, 45)
  4477. Me.Label149.Name = "Label149"
  4478. Me.Label149.Size = New System.Drawing.Size(21, 17)
  4479. Me.Label149.TabIndex = 241
  4480. Me.Label149.Text = "酉"
  4481. '
  4482. 'Label150
  4483. '
  4484. Me.Label150.AutoSize = True
  4485. Me.Label150.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4486. Me.Label150.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4487. Me.Label150.Location = New System.Drawing.Point(232, 45)
  4488. Me.Label150.Name = "Label150"
  4489. Me.Label150.Size = New System.Drawing.Size(21, 17)
  4490. Me.Label150.TabIndex = 237
  4491. Me.Label150.Text = "亥"
  4492. '
  4493. 'Label152
  4494. '
  4495. Me.Label152.AutoSize = True
  4496. Me.Label152.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4497. Me.Label152.ForeColor = System.Drawing.Color.Goldenrod
  4498. Me.Label152.Location = New System.Drawing.Point(69, 25)
  4499. Me.Label152.Name = "Label152"
  4500. Me.Label152.Size = New System.Drawing.Size(21, 17)
  4501. Me.Label152.TabIndex = 231
  4502. Me.Label152.Text = "巳"
  4503. '
  4504. 'Label153
  4505. '
  4506. Me.Label153.AutoSize = True
  4507. Me.Label153.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4508. Me.Label153.ForeColor = System.Drawing.Color.Red
  4509. Me.Label153.Location = New System.Drawing.Point(46, 25)
  4510. Me.Label153.Name = "Label153"
  4511. Me.Label153.Size = New System.Drawing.Size(21, 17)
  4512. Me.Label153.TabIndex = 228
  4513. Me.Label153.Text = "寅"
  4514. '
  4515. 'Button33
  4516. '
  4517. Me.Button33.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4518. Me.Button33.Location = New System.Drawing.Point(6, 365)
  4519. Me.Button33.Name = "Button33"
  4520. Me.Button33.Size = New System.Drawing.Size(130, 28)
  4521. Me.Button33.TabIndex = 224
  4522. Me.Button33.Text = "地支所屬"
  4523. Me.Button33.UseVisualStyleBackColor = True
  4524. '
  4525. 'Button32
  4526. '
  4527. Me.Button32.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4528. Me.Button32.Location = New System.Drawing.Point(142, 365)
  4529. Me.Button32.Name = "Button32"
  4530. Me.Button32.Size = New System.Drawing.Size(130, 28)
  4531. Me.Button32.TabIndex = 221
  4532. Me.Button32.Text = "貴人歌訣"
  4533. Me.Button32.UseVisualStyleBackColor = True
  4534. '
  4535. 'Button17
  4536. '
  4537. Me.Button17.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4538. Me.Button17.Location = New System.Drawing.Point(7, 748)
  4539. Me.Button17.Name = "Button17"
  4540. Me.Button17.Size = New System.Drawing.Size(130, 28)
  4541. Me.Button17.TabIndex = 215
  4542. Me.Button17.Text = "玄通賦"
  4543. Me.Button17.UseVisualStyleBackColor = True
  4544. '
  4545. 'RadioButton10
  4546. '
  4547. Me.RadioButton10.AutoSize = True
  4548. Me.RadioButton10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4549. Me.RadioButton10.ForeColor = System.Drawing.Color.Red
  4550. Me.RadioButton10.Location = New System.Drawing.Point(15, 896)
  4551. Me.RadioButton10.Name = "RadioButton10"
  4552. Me.RadioButton10.Size = New System.Drawing.Size(78, 21)
  4553. Me.RadioButton10.TabIndex = 6
  4554. Me.RadioButton10.TabStop = True
  4555. Me.RadioButton10.Text = "父母發動"
  4556. Me.RadioButton10.UseVisualStyleBackColor = True
  4557. '
  4558. 'RadioButton8
  4559. '
  4560. Me.RadioButton8.AutoSize = True
  4561. Me.RadioButton8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4562. Me.RadioButton8.ForeColor = System.Drawing.Color.Red
  4563. Me.RadioButton8.Location = New System.Drawing.Point(184, 896)
  4564. Me.RadioButton8.Name = "RadioButton8"
  4565. Me.RadioButton8.Size = New System.Drawing.Size(78, 21)
  4566. Me.RadioButton8.TabIndex = 8
  4567. Me.RadioButton8.TabStop = True
  4568. Me.RadioButton8.Text = "官鬼發動"
  4569. Me.RadioButton8.UseVisualStyleBackColor = True
  4570. '
  4571. 'Button18
  4572. '
  4573. Me.Button18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4574. Me.Button18.Location = New System.Drawing.Point(143, 748)
  4575. Me.Button18.Name = "Button18"
  4576. Me.Button18.Size = New System.Drawing.Size(130, 28)
  4577. Me.Button18.TabIndex = 216
  4578. Me.Button18.Text = "諸爻持世訣"
  4579. Me.Button18.UseVisualStyleBackColor = True
  4580. '
  4581. 'RadioButton3
  4582. '
  4583. Me.RadioButton3.AutoSize = True
  4584. Me.RadioButton3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4585. Me.RadioButton3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4586. Me.RadioButton3.Location = New System.Drawing.Point(15, 801)
  4587. Me.RadioButton3.Name = "RadioButton3"
  4588. Me.RadioButton3.Size = New System.Drawing.Size(78, 21)
  4589. Me.RadioButton3.TabIndex = 3
  4590. Me.RadioButton3.TabStop = True
  4591. Me.RadioButton3.Text = "官鬼持世"
  4592. Me.RadioButton3.UseVisualStyleBackColor = True
  4593. '
  4594. 'RadioButton4
  4595. '
  4596. Me.RadioButton4.AutoSize = True
  4597. Me.RadioButton4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4598. Me.RadioButton4.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4599. Me.RadioButton4.Location = New System.Drawing.Point(100, 801)
  4600. Me.RadioButton4.Name = "RadioButton4"
  4601. Me.RadioButton4.Size = New System.Drawing.Size(78, 21)
  4602. Me.RadioButton4.TabIndex = 4
  4603. Me.RadioButton4.TabStop = True
  4604. Me.RadioButton4.Text = "妻財持世"
  4605. Me.RadioButton4.UseVisualStyleBackColor = True
  4606. '
  4607. 'Button23
  4608. '
  4609. Me.Button23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4610. Me.Button23.Location = New System.Drawing.Point(143, 940)
  4611. Me.Button23.Name = "Button23"
  4612. Me.Button23.Size = New System.Drawing.Size(130, 28)
  4613. Me.Button23.TabIndex = 222
  4614. Me.Button23.Text = "六親變化歌"
  4615. Me.Button23.UseVisualStyleBackColor = True
  4616. '
  4617. 'RadioButton9
  4618. '
  4619. Me.RadioButton9.AutoSize = True
  4620. Me.RadioButton9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4621. Me.RadioButton9.ForeColor = System.Drawing.Color.Red
  4622. Me.RadioButton9.Location = New System.Drawing.Point(100, 896)
  4623. Me.RadioButton9.Name = "RadioButton9"
  4624. Me.RadioButton9.Size = New System.Drawing.Size(78, 21)
  4625. Me.RadioButton9.TabIndex = 7
  4626. Me.RadioButton9.TabStop = True
  4627. Me.RadioButton9.Text = "子孫發動"
  4628. Me.RadioButton9.UseVisualStyleBackColor = True
  4629. '
  4630. 'Button24
  4631. '
  4632. Me.Button24.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4633. Me.Button24.Location = New System.Drawing.Point(7, 940)
  4634. Me.Button24.Name = "Button24"
  4635. Me.Button24.Size = New System.Drawing.Size(130, 28)
  4636. Me.Button24.TabIndex = 221
  4637. Me.Button24.Text = "六親發動訣"
  4638. Me.Button24.UseVisualStyleBackColor = True
  4639. '
  4640. 'Button20
  4641. '
  4642. Me.Button20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4643. Me.Button20.Location = New System.Drawing.Point(143, 862)
  4644. Me.Button20.Name = "Button20"
  4645. Me.Button20.Size = New System.Drawing.Size(130, 28)
  4646. Me.Button20.TabIndex = 220
  4647. Me.Button20.Text = "用神發動訣"
  4648. Me.Button20.UseVisualStyleBackColor = True
  4649. '
  4650. 'Label121
  4651. '
  4652. Me.Label121.AutoSize = True
  4653. Me.Label121.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4654. Me.Label121.Location = New System.Drawing.Point(15, 403)
  4655. Me.Label121.Name = "Label121"
  4656. Me.Label121.Size = New System.Drawing.Size(34, 17)
  4657. Me.Label121.TabIndex = 223
  4658. Me.Label121.Text = "貴人"
  4659. '
  4660. 'RadioButton5
  4661. '
  4662. Me.RadioButton5.AutoSize = True
  4663. Me.RadioButton5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4664. Me.RadioButton5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4665. Me.RadioButton5.Location = New System.Drawing.Point(184, 801)
  4666. Me.RadioButton5.Name = "RadioButton5"
  4667. Me.RadioButton5.Size = New System.Drawing.Size(78, 21)
  4668. Me.RadioButton5.TabIndex = 5
  4669. Me.RadioButton5.TabStop = True
  4670. Me.RadioButton5.Text = "兄弟持世"
  4671. Me.RadioButton5.UseVisualStyleBackColor = True
  4672. '
  4673. 'RadioButton6
  4674. '
  4675. Me.RadioButton6.AutoSize = True
  4676. Me.RadioButton6.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4677. Me.RadioButton6.ForeColor = System.Drawing.Color.Red
  4678. Me.RadioButton6.Location = New System.Drawing.Point(100, 915)
  4679. Me.RadioButton6.Name = "RadioButton6"
  4680. Me.RadioButton6.Size = New System.Drawing.Size(78, 21)
  4681. Me.RadioButton6.TabIndex = 10
  4682. Me.RadioButton6.TabStop = True
  4683. Me.RadioButton6.Text = "兄弟發動"
  4684. Me.RadioButton6.UseVisualStyleBackColor = True
  4685. '
  4686. 'RadioButton1
  4687. '
  4688. Me.RadioButton1.AutoSize = True
  4689. Me.RadioButton1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4690. Me.RadioButton1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4691. Me.RadioButton1.Location = New System.Drawing.Point(100, 781)
  4692. Me.RadioButton1.Name = "RadioButton1"
  4693. Me.RadioButton1.Size = New System.Drawing.Size(78, 21)
  4694. Me.RadioButton1.TabIndex = 0
  4695. Me.RadioButton1.Text = "父母持世"
  4696. Me.RadioButton1.UseVisualStyleBackColor = True
  4697. '
  4698. 'Button19
  4699. '
  4700. Me.Button19.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4701. Me.Button19.Location = New System.Drawing.Point(7, 828)
  4702. Me.Button19.Name = "Button19"
  4703. Me.Button19.Size = New System.Drawing.Size(130, 28)
  4704. Me.Button19.TabIndex = 217
  4705. Me.Button19.Text = "卦身喜忌訣"
  4706. Me.Button19.UseVisualStyleBackColor = True
  4707. '
  4708. 'TextBox199
  4709. '
  4710. Me.TextBox199.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4711. Me.TextBox199.ForeColor = System.Drawing.Color.Black
  4712. Me.TextBox199.Location = New System.Drawing.Point(55, 399)
  4713. Me.TextBox199.Name = "TextBox199"
  4714. Me.TextBox199.Size = New System.Drawing.Size(217, 25)
  4715. Me.TextBox199.TabIndex = 222
  4716. '
  4717. 'RadioButton7
  4718. '
  4719. Me.RadioButton7.AutoSize = True
  4720. Me.RadioButton7.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4721. Me.RadioButton7.ForeColor = System.Drawing.Color.Red
  4722. Me.RadioButton7.Location = New System.Drawing.Point(15, 915)
  4723. Me.RadioButton7.Name = "RadioButton7"
  4724. Me.RadioButton7.Size = New System.Drawing.Size(78, 21)
  4725. Me.RadioButton7.TabIndex = 9
  4726. Me.RadioButton7.TabStop = True
  4727. Me.RadioButton7.Text = "妻財發動"
  4728. Me.RadioButton7.UseVisualStyleBackColor = True
  4729. '
  4730. 'CheckBox1
  4731. '
  4732. Me.CheckBox1.AutoSize = True
  4733. Me.CheckBox1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4734. Me.CheckBox1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4735. Me.CheckBox1.Location = New System.Drawing.Point(15, 782)
  4736. Me.CheckBox1.Name = "CheckBox1"
  4737. Me.CheckBox1.Size = New System.Drawing.Size(79, 21)
  4738. Me.CheckBox1.TabIndex = 1
  4739. Me.CheckBox1.Text = "世爻旺相"
  4740. Me.CheckBox1.UseVisualStyleBackColor = True
  4741. '
  4742. 'RadioButton2
  4743. '
  4744. Me.RadioButton2.AutoSize = True
  4745. Me.RadioButton2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4746. Me.RadioButton2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4747. Me.RadioButton2.Location = New System.Drawing.Point(184, 781)
  4748. Me.RadioButton2.Name = "RadioButton2"
  4749. Me.RadioButton2.Size = New System.Drawing.Size(78, 21)
  4750. Me.RadioButton2.TabIndex = 2
  4751. Me.RadioButton2.TabStop = True
  4752. Me.RadioButton2.Text = "子孫持世"
  4753. Me.RadioButton2.UseVisualStyleBackColor = True
  4754. '
  4755. 'Button21
  4756. '
  4757. Me.Button21.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4758. Me.Button21.Location = New System.Drawing.Point(7, 862)
  4759. Me.Button21.Name = "Button21"
  4760. Me.Button21.Size = New System.Drawing.Size(130, 28)
  4761. Me.Button21.TabIndex = 219
  4762. Me.Button21.Text = "用神空亡訣"
  4763. Me.Button21.UseVisualStyleBackColor = True
  4764. '
  4765. 'Button22
  4766. '
  4767. Me.Button22.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4768. Me.Button22.Location = New System.Drawing.Point(143, 828)
  4769. Me.Button22.Name = "Button22"
  4770. Me.Button22.Size = New System.Drawing.Size(130, 28)
  4771. Me.Button22.TabIndex = 218
  4772. Me.Button22.Text = "用神不上卦"
  4773. Me.Button22.UseVisualStyleBackColor = True
  4774. '
  4775. 'Button28
  4776. '
  4777. Me.Button28.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4778. Me.Button28.Location = New System.Drawing.Point(10, 77)
  4779. Me.Button28.Name = "Button28"
  4780. Me.Button28.Size = New System.Drawing.Size(120, 25)
  4781. Me.Button28.TabIndex = 220
  4782. Me.Button28.Text = "絕、剋處逢生"
  4783. Me.Button28.UseVisualStyleBackColor = True
  4784. '
  4785. 'Button27
  4786. '
  4787. Me.Button27.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4788. Me.Button27.Location = New System.Drawing.Point(261, 46)
  4789. Me.Button27.Name = "Button27"
  4790. Me.Button27.Size = New System.Drawing.Size(120, 25)
  4791. Me.Button27.TabIndex = 219
  4792. Me.Button27.Text = "合處逢沖、沖中逢合"
  4793. Me.Button27.UseVisualStyleBackColor = True
  4794. '
  4795. 'Button30
  4796. '
  4797. Me.Button30.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4798. Me.Button30.Location = New System.Drawing.Point(136, 108)
  4799. Me.Button30.Name = "Button30"
  4800. Me.Button30.Size = New System.Drawing.Size(120, 25)
  4801. Me.Button30.TabIndex = 221
  4802. Me.Button30.Text = "退神"
  4803. Me.Button30.UseVisualStyleBackColor = True
  4804. '
  4805. 'Label82
  4806. '
  4807. Me.Label82.AutoSize = True
  4808. Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4809. Me.Label82.ForeColor = System.Drawing.Color.Blue
  4810. Me.Label82.Location = New System.Drawing.Point(228, 136)
  4811. Me.Label82.Name = "Label82"
  4812. Me.Label82.Size = New System.Drawing.Size(60, 17)
  4813. Me.Label82.TabIndex = 272
  4814. Me.Label82.Text = "火絕于亥"
  4815. '
  4816. 'Button31
  4817. '
  4818. Me.Button31.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4819. Me.Button31.Location = New System.Drawing.Point(9, 15)
  4820. Me.Button31.Name = "Button31"
  4821. Me.Button31.Size = New System.Drawing.Size(120, 25)
  4822. Me.Button31.TabIndex = 222
  4823. Me.Button31.Text = "六獸評論"
  4824. Me.Button31.UseVisualStyleBackColor = True
  4825. '
  4826. 'Button29
  4827. '
  4828. Me.Button29.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4829. Me.Button29.Location = New System.Drawing.Point(10, 108)
  4830. Me.Button29.Name = "Button29"
  4831. Me.Button29.Size = New System.Drawing.Size(120, 25)
  4832. Me.Button29.TabIndex = 220
  4833. Me.Button29.Text = "進神"
  4834. Me.Button29.UseVisualStyleBackColor = True
  4835. '
  4836. 'Label84
  4837. '
  4838. Me.Label84.AutoSize = True
  4839. Me.Label84.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4840. Me.Label84.ForeColor = System.Drawing.Color.Red
  4841. Me.Label84.Location = New System.Drawing.Point(152, 136)
  4842. Me.Label84.Name = "Label84"
  4843. Me.Label84.Size = New System.Drawing.Size(60, 17)
  4844. Me.Label84.TabIndex = 271
  4845. Me.Label84.Text = "水絕于巳"
  4846. '
  4847. 'Label81
  4848. '
  4849. Me.Label81.AutoSize = True
  4850. Me.Label81.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4851. Me.Label81.ForeColor = System.Drawing.Color.Goldenrod
  4852. Me.Label81.Location = New System.Drawing.Point(77, 136)
  4853. Me.Label81.Name = "Label81"
  4854. Me.Label81.Size = New System.Drawing.Size(60, 17)
  4855. Me.Label81.TabIndex = 270
  4856. Me.Label81.Text = "木絕于申"
  4857. '
  4858. 'Label80
  4859. '
  4860. Me.Label80.AutoSize = True
  4861. Me.Label80.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4862. Me.Label80.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  4863. Me.Label80.Location = New System.Drawing.Point(7, 136)
  4864. Me.Label80.Name = "Label80"
  4865. Me.Label80.Size = New System.Drawing.Size(60, 17)
  4866. Me.Label80.TabIndex = 269
  4867. Me.Label80.Text = "金絕于寅"
  4868. '
  4869. 'Button26
  4870. '
  4871. Me.Button26.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4872. Me.Button26.Location = New System.Drawing.Point(261, 15)
  4873. Me.Button26.Name = "Button26"
  4874. Me.Button26.Size = New System.Drawing.Size(120, 25)
  4875. Me.Button26.TabIndex = 218
  4876. Me.Button26.Text = "合中帶剋論"
  4877. Me.Button26.UseVisualStyleBackColor = True
  4878. '
  4879. 'Button25
  4880. '
  4881. Me.Button25.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4882. Me.Button25.Location = New System.Drawing.Point(261, 77)
  4883. Me.Button25.Name = "Button25"
  4884. Me.Button25.Size = New System.Drawing.Size(120, 25)
  4885. Me.Button25.TabIndex = 223
  4886. Me.Button25.Text = "回頭之剋"
  4887. Me.Button25.UseVisualStyleBackColor = True
  4888. '
  4889. 'GroupBox11
  4890. '
  4891. Me.GroupBox11.Controls.Add(Me.Button28)
  4892. Me.GroupBox11.Controls.Add(Me.Button27)
  4893. Me.GroupBox11.Controls.Add(Me.Button30)
  4894. Me.GroupBox11.Controls.Add(Me.Label82)
  4895. Me.GroupBox11.Controls.Add(Me.Button31)
  4896. Me.GroupBox11.Controls.Add(Me.Button29)
  4897. Me.GroupBox11.Controls.Add(Me.Label84)
  4898. Me.GroupBox11.Controls.Add(Me.Button25)
  4899. Me.GroupBox11.Controls.Add(Me.Label81)
  4900. Me.GroupBox11.Controls.Add(Me.Label80)
  4901. Me.GroupBox11.Controls.Add(Me.Button26)
  4902. Me.GroupBox11.Controls.Add(Me.Button12)
  4903. Me.GroupBox11.Controls.Add(Me.Button15)
  4904. Me.GroupBox11.Controls.Add(Me.Button14)
  4905. Me.GroupBox11.Controls.Add(Me.Button13)
  4906. Me.GroupBox11.Location = New System.Drawing.Point(12, 12)
  4907. Me.GroupBox11.Name = "GroupBox11"
  4908. Me.GroupBox11.Size = New System.Drawing.Size(389, 163)
  4909. Me.GroupBox11.TabIndex = 217
  4910. Me.GroupBox11.TabStop = False
  4911. '
  4912. 'Label126
  4913. '
  4914. Me.Label126.AutoSize = True
  4915. Me.Label126.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4916. Me.Label126.Location = New System.Drawing.Point(8, 202)
  4917. Me.Label126.Name = "Label126"
  4918. Me.Label126.Size = New System.Drawing.Size(42, 21)
  4919. Me.Label126.TabIndex = 294
  4920. Me.Label126.Text = "易林"
  4921. '
  4922. 'Label127
  4923. '
  4924. Me.Label127.AutoSize = True
  4925. Me.Label127.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4926. Me.Label127.Location = New System.Drawing.Point(8, 182)
  4927. Me.Label127.Name = "Label127"
  4928. Me.Label127.Size = New System.Drawing.Size(42, 21)
  4929. Me.Label127.TabIndex = 293
  4930. Me.Label127.Text = "焦氏"
  4931. '
  4932. '易林_tb
  4933. '
  4934. Me.易林_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4935. Me.易林_tb.ForeColor = System.Drawing.Color.Black
  4936. Me.易林_tb.Location = New System.Drawing.Point(55, 181)
  4937. Me.易林_tb.Multiline = True
  4938. Me.易林_tb.Name = "易林_tb"
  4939. Me.易林_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  4940. Me.易林_tb.Size = New System.Drawing.Size(346, 182)
  4941. Me.易林_tb.TabIndex = 292
  4942. '
  4943. 'Label154
  4944. '
  4945. Me.Label154.AutoSize = True
  4946. Me.Label154.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4947. Me.Label154.Location = New System.Drawing.Point(693, 147)
  4948. Me.Label154.Name = "Label154"
  4949. Me.Label154.Size = New System.Drawing.Size(352, 24)
  4950. Me.Label154.TabIndex = 295
  4951. Me.Label154.Text = "______________________________________"
  4952. '
  4953. 'Label155
  4954. '
  4955. Me.Label155.AutoSize = True
  4956. Me.Label155.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4957. Me.Label155.Location = New System.Drawing.Point(693, 318)
  4958. Me.Label155.Name = "Label155"
  4959. Me.Label155.Size = New System.Drawing.Size(352, 24)
  4960. Me.Label155.TabIndex = 296
  4961. Me.Label155.Text = "______________________________________"
  4962. '
  4963. 'Label156
  4964. '
  4965. Me.Label156.AutoSize = True
  4966. Me.Label156.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4967. Me.Label156.Location = New System.Drawing.Point(693, 494)
  4968. Me.Label156.Name = "Label156"
  4969. Me.Label156.Size = New System.Drawing.Size(352, 24)
  4970. Me.Label156.TabIndex = 297
  4971. Me.Label156.Text = "______________________________________"
  4972. '
  4973. 'Label157
  4974. '
  4975. Me.Label157.AutoSize = True
  4976. Me.Label157.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4977. Me.Label157.Location = New System.Drawing.Point(693, 665)
  4978. Me.Label157.Name = "Label157"
  4979. Me.Label157.Size = New System.Drawing.Size(352, 24)
  4980. Me.Label157.TabIndex = 298
  4981. Me.Label157.Text = "______________________________________"
  4982. '
  4983. 'Label158
  4984. '
  4985. Me.Label158.AutoSize = True
  4986. Me.Label158.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4987. Me.Label158.Location = New System.Drawing.Point(693, 828)
  4988. Me.Label158.Name = "Label158"
  4989. Me.Label158.Size = New System.Drawing.Size(352, 24)
  4990. Me.Label158.TabIndex = 299
  4991. Me.Label158.Text = "______________________________________"
  4992. '
  4993. '存檔_bt
  4994. '
  4995. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4996. Me.存檔_bt.Location = New System.Drawing.Point(6, 960)
  4997. Me.存檔_bt.Name = "存檔_bt"
  4998. Me.存檔_bt.Size = New System.Drawing.Size(395, 28)
  4999. Me.存檔_bt.TabIndex = 300
  5000. Me.存檔_bt.Text = "存檔"
  5001. Me.存檔_bt.UseVisualStyleBackColor = True
  5002. '
  5003. '卜卦
  5004. '
  5005. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  5006. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  5007. Me.AutoScroll = True
  5008. Me.ClientSize = New System.Drawing.Size(1899, 1002)
  5009. Me.Controls.Add(Me.存檔_bt)
  5010. Me.Controls.Add(Me.Label158)
  5011. Me.Controls.Add(Me.Label157)
  5012. Me.Controls.Add(Me.Label156)
  5013. Me.Controls.Add(Me.Label155)
  5014. Me.Controls.Add(Me.Label154)
  5015. Me.Controls.Add(Me.Label126)
  5016. Me.Controls.Add(Me.Label127)
  5017. Me.Controls.Add(Me.易林_tb)
  5018. Me.Controls.Add(Me.TextBox198)
  5019. Me.Controls.Add(Me.Label65)
  5020. Me.Controls.Add(Me.TextBox192)
  5021. Me.Controls.Add(Me.TextBox197)
  5022. Me.Controls.Add(Me.TextBox138)
  5023. Me.Controls.Add(Me.經文2_tb)
  5024. Me.Controls.Add(Me.TextBox131)
  5025. Me.Controls.Add(Me.TextBox191)
  5026. Me.Controls.Add(Me.TextBox125)
  5027. Me.Controls.Add(Me.TextBox196)
  5028. Me.Controls.Add(Me.TextBox119)
  5029. Me.Controls.Add(Me.卦辭_tb)
  5030. Me.Controls.Add(Me.Label45)
  5031. Me.Controls.Add(Me.TextBox137)
  5032. Me.Controls.Add(Me.TextBox113)
  5033. Me.Controls.Add(Me.TextBox195)
  5034. Me.Controls.Add(Me.TextBox107)
  5035. Me.Controls.Add(Me.TextBox189)
  5036. Me.Controls.Add(Me.TextBox96)
  5037. Me.Controls.Add(Me.TextBox95)
  5038. Me.Controls.Add(Me.TextBox130)
  5039. Me.Controls.Add(Me.TextBox94)
  5040. Me.Controls.Add(Me.象曰_tb)
  5041. Me.Controls.Add(Me.TextBox93)
  5042. Me.Controls.Add(Me.TextBox194)
  5043. Me.Controls.Add(Me.TextBox92)
  5044. Me.Controls.Add(Me.TextBox124)
  5045. Me.Controls.Add(Me.TextBox91)
  5046. Me.Controls.Add(Me.Label66)
  5047. Me.Controls.Add(Me.TextBox60)
  5048. Me.Controls.Add(Me.TextBox136)
  5049. Me.Controls.Add(Me.Label39)
  5050. Me.Controls.Add(Me.TextBox118)
  5051. Me.Controls.Add(Me.TextBox54)
  5052. Me.Controls.Add(Me.TextBox193)
  5053. Me.Controls.Add(Me.TextBox48)
  5054. Me.Controls.Add(Me.TextBox186)
  5055. Me.Controls.Add(Me.TextBox42)
  5056. Me.Controls.Add(Me.Label44)
  5057. Me.Controls.Add(Me.TextBox36)
  5058. Me.Controls.Add(Me.Label67)
  5059. Me.Controls.Add(Me.TextBox30)
  5060. Me.Controls.Add(Me.TextBox129)
  5061. Me.Controls.Add(Me.TextBox23)
  5062. Me.Controls.Add(Me.TextBox112)
  5063. Me.Controls.Add(Me.TextBox17)
  5064. Me.Controls.Add(Me.TextBox188)
  5065. Me.Controls.Add(Me.Label32)
  5066. Me.Controls.Add(Me.篆曰_tb)
  5067. Me.Controls.Add(Me.Label26)
  5068. Me.Controls.Add(Me.TextBox106)
  5069. Me.Controls.Add(Me.Label20)
  5070. Me.Controls.Add(Me.Label95)
  5071. Me.Controls.Add(Me.Label14)
  5072. Me.Controls.Add(Me.TextBox123)
  5073. Me.Controls.Add(Me.TextBox135)
  5074. Me.Controls.Add(Me.TextBox185)
  5075. Me.Controls.Add(Me.TextBox187)
  5076. Me.Controls.Add(Me.TextBox117)
  5077. Me.Controls.Add(Me.Label68)
  5078. Me.Controls.Add(Me.TextBox90)
  5079. Me.Controls.Add(Me.Label94)
  5080. Me.Controls.Add(Me.TextBox89)
  5081. Me.Controls.Add(Me.TextBox128)
  5082. Me.Controls.Add(Me.TextBox88)
  5083. Me.Controls.Add(Me.Label43)
  5084. Me.Controls.Add(Me.TextBox87)
  5085. Me.Controls.Add(Me.經文1_tb)
  5086. Me.Controls.Add(Me.TextBox86)
  5087. Me.Controls.Add(Me.TextBox227)
  5088. Me.Controls.Add(Me.TextBox85)
  5089. Me.Controls.Add(Me.TextBox182)
  5090. Me.Controls.Add(Me.TextBox111)
  5091. Me.Controls.Add(Me.TextBox59)
  5092. Me.Controls.Add(Me.TextBox226)
  5093. Me.Controls.Add(Me.TextBox122)
  5094. Me.Controls.Add(Me.Label38)
  5095. Me.Controls.Add(Me.GroupBox11)
  5096. Me.Controls.Add(Me.TextBox105)
  5097. Me.Controls.Add(Me.TextBox53)
  5098. Me.Controls.Add(Me.TextBox181)
  5099. Me.Controls.Add(Me.經文3_tb)
  5100. Me.Controls.Add(Me.TextBox47)
  5101. Me.Controls.Add(Me.TextBox184)
  5102. Me.Controls.Add(Me.TextBox116)
  5103. Me.Controls.Add(Me.TextBox41)
  5104. Me.Controls.Add(Me.TextBox173)
  5105. Me.Controls.Add(Me.經文4_tb)
  5106. Me.Controls.Add(Me.TextBox35)
  5107. Me.Controls.Add(Me.GroupBox3)
  5108. Me.Controls.Add(Me.GroupBox10)
  5109. Me.Controls.Add(Me.TextBox29)
  5110. Me.Controls.Add(Me.Label42)
  5111. Me.Controls.Add(Me.GroupBox9)
  5112. Me.Controls.Add(Me.TextBox22)
  5113. Me.Controls.Add(Me.GroupBox8)
  5114. Me.Controls.Add(Me.TextBox132)
  5115. Me.Controls.Add(Me.TextBox16)
  5116. Me.Controls.Add(Me.GroupBox2)
  5117. Me.Controls.Add(Me.TextBox84)
  5118. Me.Controls.Add(Me.Label31)
  5119. Me.Controls.Add(Me.TextBox110)
  5120. Me.Controls.Add(Me.TextBox83)
  5121. Me.Controls.Add(Me.Label25)
  5122. Me.Controls.Add(Me.TextBox82)
  5123. Me.Controls.Add(Me.Label19)
  5124. Me.Controls.Add(Me.TextBox49)
  5125. Me.Controls.Add(Me.TextBox81)
  5126. Me.Controls.Add(Me.Label13)
  5127. Me.Controls.Add(Me.Label9)
  5128. Me.Controls.Add(Me.TextBox80)
  5129. Me.Controls.Add(Me.TextBox134)
  5130. Me.Controls.Add(Me.TextBox79)
  5131. Me.Controls.Add(Me.TextBox104)
  5132. Me.Controls.Add(Me.Label15)
  5133. Me.Controls.Add(Me.Label21)
  5134. Me.Controls.Add(Me.TextBox58)
  5135. Me.Controls.Add(Me.Label27)
  5136. Me.Controls.Add(Me.TextBox12)
  5137. Me.Controls.Add(Me.TextBox18)
  5138. Me.Controls.Add(Me.Label37)
  5139. Me.Controls.Add(Me.TextBox25)
  5140. Me.Controls.Add(Me.TextBox127)
  5141. Me.Controls.Add(Me.TextBox31)
  5142. Me.Controls.Add(Me.TextBox52)
  5143. Me.Controls.Add(Me.TextBox37)
  5144. Me.Controls.Add(Me.TextBox133)
  5145. Me.Controls.Add(Me.TextBox43)
  5146. Me.Controls.Add(Me.TextBox46)
  5147. Me.Controls.Add(Me.Label34)
  5148. Me.Controls.Add(Me.TextBox121)
  5149. Me.Controls.Add(Me.TextBox101)
  5150. Me.Controls.Add(Me.TextBox40)
  5151. Me.Controls.Add(Me.TextBox55)
  5152. Me.Controls.Add(Me.TextBox100)
  5153. Me.Controls.Add(Me.TextBox61)
  5154. Me.Controls.Add(Me.TextBox34)
  5155. Me.Controls.Add(Me.TextBox99)
  5156. Me.Controls.Add(Me.TextBox62)
  5157. Me.Controls.Add(Me.TextBox78)
  5158. Me.Controls.Add(Me.TextBox28)
  5159. Me.Controls.Add(Me.TextBox63)
  5160. Me.Controls.Add(Me.TextBox77)
  5161. Me.Controls.Add(Me.TextBox64)
  5162. Me.Controls.Add(Me.TextBox21)
  5163. Me.Controls.Add(Me.TextBox76)
  5164. Me.Controls.Add(Me.TextBox115)
  5165. Me.Controls.Add(Me.TextBox75)
  5166. Me.Controls.Add(Me.TextBox15)
  5167. Me.Controls.Add(Me.TextBox126)
  5168. Me.Controls.Add(Me.TextBox74)
  5169. Me.Controls.Add(Me.TextBox65)
  5170. Me.Controls.Add(Me.Label30)
  5171. Me.Controls.Add(Me.TextBox73)
  5172. Me.Controls.Add(Me.TextBox66)
  5173. Me.Controls.Add(Me.TextBox102)
  5174. Me.Controls.Add(Me.Label24)
  5175. Me.Controls.Add(Me.TextBox98)
  5176. Me.Controls.Add(Me.TextBox108)
  5177. Me.Controls.Add(Me.TextBox57)
  5178. Me.Controls.Add(Me.Label18)
  5179. Me.Controls.Add(Me.TextBox97)
  5180. Me.Controls.Add(Me.Label41)
  5181. Me.Controls.Add(Me.Label40)
  5182. Me.Controls.Add(Me.Label12)
  5183. Me.Controls.Add(Me.TextBox114)
  5184. Me.Controls.Add(Me.Label36)
  5185. Me.Controls.Add(Me.TextBox120)
  5186. Me.Controls.Add(Me.ComboBox3)
  5187. Me.Controls.Add(Me.ComboBox1)
  5188. Me.Controls.Add(Me.TextBox109)
  5189. Me.Controls.Add(Me.TextBox51)
  5190. Me.Controls.Add(Me.ComboBox2)
  5191. Me.Controls.Add(Me.Label10)
  5192. Me.Controls.Add(Me.Label16)
  5193. Me.Controls.Add(Me.TextBox45)
  5194. Me.Controls.Add(Me.Label22)
  5195. Me.Controls.Add(Me.Label28)
  5196. Me.Controls.Add(Me.TextBox103)
  5197. Me.Controls.Add(Me.TextBox13)
  5198. Me.Controls.Add(Me.TextBox39)
  5199. Me.Controls.Add(Me.TextBox19)
  5200. Me.Controls.Add(Me.TextBox26)
  5201. Me.Controls.Add(Me.TextBox32)
  5202. Me.Controls.Add(Me.TextBox38)
  5203. Me.Controls.Add(Me.TextBox33)
  5204. Me.Controls.Add(Me.TextBox44)
  5205. Me.Controls.Add(Me.TextBox50)
  5206. Me.Controls.Add(Me.Label35)
  5207. Me.Controls.Add(Me.TextBox56)
  5208. Me.Controls.Add(Me.TextBox27)
  5209. Me.Controls.Add(Me.TextBox67)
  5210. Me.Controls.Add(Me.TextBox68)
  5211. Me.Controls.Add(Me.TextBox69)
  5212. Me.Controls.Add(Me.TextBox70)
  5213. Me.Controls.Add(Me.TextBox20)
  5214. Me.Controls.Add(Me.TextBox71)
  5215. Me.Controls.Add(Me.TextBox72)
  5216. Me.Controls.Add(Me.TextBox1)
  5217. Me.Controls.Add(Me.Label2)
  5218. Me.Controls.Add(Me.TextBox14)
  5219. Me.Controls.Add(Me.Label3)
  5220. Me.Controls.Add(Me.Label4)
  5221. Me.Controls.Add(Me.Label5)
  5222. Me.Controls.Add(Me.TextBox2)
  5223. Me.Controls.Add(Me.Label29)
  5224. Me.Controls.Add(Me.TextBox3)
  5225. Me.Controls.Add(Me.TextBox4)
  5226. Me.Controls.Add(Me.TextBox5)
  5227. Me.Controls.Add(Me.TextBox6)
  5228. Me.Controls.Add(Me.Label23)
  5229. Me.Controls.Add(Me.TextBox7)
  5230. Me.Controls.Add(Me.TextBox8)
  5231. Me.Controls.Add(Me.Label6)
  5232. Me.Controls.Add(Me.Label7)
  5233. Me.Controls.Add(Me.Label17)
  5234. Me.Controls.Add(Me.Label33)
  5235. Me.Controls.Add(Me.Label8)
  5236. Me.Controls.Add(Me.TextBox24)
  5237. Me.Controls.Add(Me.TextBox9)
  5238. Me.Controls.Add(Me.Label11)
  5239. Me.Controls.Add(Me.TextBox10)
  5240. Me.Controls.Add(Me.TextBox11)
  5241. Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  5242. Me.Name = "卜卦"
  5243. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  5244. Me.Text = "卜卦(簡易)"
  5245. Me.GroupBox3.ResumeLayout(False)
  5246. Me.GroupBox3.PerformLayout()
  5247. Me.GroupBox2.ResumeLayout(False)
  5248. Me.GroupBox2.PerformLayout()
  5249. Me.GroupBox4.ResumeLayout(False)
  5250. Me.GroupBox4.PerformLayout()
  5251. Me.GroupBox7.ResumeLayout(False)
  5252. Me.GroupBox7.PerformLayout()
  5253. Me.GroupBox8.ResumeLayout(False)
  5254. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  5255. Me.GroupBox9.ResumeLayout(False)
  5256. Me.GroupBox9.PerformLayout()
  5257. Me.GroupBox6.ResumeLayout(False)
  5258. Me.GroupBox6.PerformLayout()
  5259. Me.GroupBox10.ResumeLayout(False)
  5260. Me.GroupBox10.PerformLayout()
  5261. Me.GroupBox12.ResumeLayout(False)
  5262. Me.GroupBox12.PerformLayout()
  5263. Me.GroupBox11.ResumeLayout(False)
  5264. Me.GroupBox11.PerformLayout()
  5265. Me.ResumeLayout(False)
  5266. Me.PerformLayout()
  5267. End Sub
  5268. Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
  5269. Friend WithEvents Label1 As System.Windows.Forms.Label
  5270. Friend WithEvents Label2 As System.Windows.Forms.Label
  5271. Friend WithEvents Label3 As System.Windows.Forms.Label
  5272. Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
  5273. Friend WithEvents Label5 As System.Windows.Forms.Label
  5274. Friend WithEvents Label4 As System.Windows.Forms.Label
  5275. Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
  5276. Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
  5277. Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
  5278. Friend WithEvents TextBox5 As System.Windows.Forms.TextBox
  5279. Friend WithEvents TextBox8 As System.Windows.Forms.TextBox
  5280. Friend WithEvents TextBox7 As System.Windows.Forms.TextBox
  5281. Friend WithEvents TextBox6 As System.Windows.Forms.TextBox
  5282. Friend WithEvents TextBox11 As System.Windows.Forms.TextBox
  5283. Friend WithEvents TextBox10 As System.Windows.Forms.TextBox
  5284. Friend WithEvents TextBox9 As System.Windows.Forms.TextBox
  5285. Friend WithEvents Label8 As System.Windows.Forms.Label
  5286. Friend WithEvents Label7 As System.Windows.Forms.Label
  5287. Friend WithEvents Label6 As System.Windows.Forms.Label
  5288. Friend WithEvents Label9 As System.Windows.Forms.Label
  5289. Friend WithEvents Label14 As System.Windows.Forms.Label
  5290. Friend WithEvents Label13 As System.Windows.Forms.Label
  5291. Friend WithEvents Label12 As System.Windows.Forms.Label
  5292. Friend WithEvents Label11 As System.Windows.Forms.Label
  5293. Friend WithEvents Label10 As System.Windows.Forms.Label
  5294. Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
  5295. Friend WithEvents Label20 As System.Windows.Forms.Label
  5296. Friend WithEvents Label19 As System.Windows.Forms.Label
  5297. Friend WithEvents Label18 As System.Windows.Forms.Label
  5298. Friend WithEvents Label17 As System.Windows.Forms.Label
  5299. Friend WithEvents Label16 As System.Windows.Forms.Label
  5300. Friend WithEvents Label15 As System.Windows.Forms.Label
  5301. Friend WithEvents ComboBox3 As System.Windows.Forms.ComboBox
  5302. Friend WithEvents ComboBox2 As System.Windows.Forms.ComboBox
  5303. Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
  5304. Friend WithEvents Button1 As System.Windows.Forms.Button
  5305. Friend WithEvents Label26 As System.Windows.Forms.Label
  5306. Friend WithEvents Label25 As System.Windows.Forms.Label
  5307. Friend WithEvents Label24 As System.Windows.Forms.Label
  5308. Friend WithEvents Label23 As System.Windows.Forms.Label
  5309. Friend WithEvents Label22 As System.Windows.Forms.Label
  5310. Friend WithEvents Label21 As System.Windows.Forms.Label
  5311. Friend WithEvents Label32 As System.Windows.Forms.Label
  5312. Friend WithEvents Label31 As System.Windows.Forms.Label
  5313. Friend WithEvents Label30 As System.Windows.Forms.Label
  5314. Friend WithEvents Label29 As System.Windows.Forms.Label
  5315. Friend WithEvents Label28 As System.Windows.Forms.Label
  5316. Friend WithEvents Label27 As System.Windows.Forms.Label
  5317. Friend WithEvents TextBox17 As System.Windows.Forms.TextBox
  5318. Friend WithEvents TextBox16 As System.Windows.Forms.TextBox
  5319. Friend WithEvents TextBox15 As System.Windows.Forms.TextBox
  5320. Friend WithEvents TextBox14 As System.Windows.Forms.TextBox
  5321. Friend WithEvents TextBox13 As System.Windows.Forms.TextBox
  5322. Friend WithEvents TextBox12 As System.Windows.Forms.TextBox
  5323. Friend WithEvents TextBox23 As System.Windows.Forms.TextBox
  5324. Friend WithEvents TextBox22 As System.Windows.Forms.TextBox
  5325. Friend WithEvents TextBox21 As System.Windows.Forms.TextBox
  5326. Friend WithEvents TextBox20 As System.Windows.Forms.TextBox
  5327. Friend WithEvents TextBox19 As System.Windows.Forms.TextBox
  5328. Friend WithEvents TextBox18 As System.Windows.Forms.TextBox
  5329. Friend WithEvents Label33 As System.Windows.Forms.Label
  5330. Friend WithEvents TextBox24 As System.Windows.Forms.TextBox
  5331. Friend WithEvents TextBox30 As System.Windows.Forms.TextBox
  5332. Friend WithEvents TextBox29 As System.Windows.Forms.TextBox
  5333. Friend WithEvents TextBox28 As System.Windows.Forms.TextBox
  5334. Friend WithEvents TextBox27 As System.Windows.Forms.TextBox
  5335. Friend WithEvents TextBox26 As System.Windows.Forms.TextBox
  5336. Friend WithEvents TextBox25 As System.Windows.Forms.TextBox
  5337. Friend WithEvents TextBox36 As System.Windows.Forms.TextBox
  5338. Friend WithEvents TextBox35 As System.Windows.Forms.TextBox
  5339. Friend WithEvents TextBox34 As System.Windows.Forms.TextBox
  5340. Friend WithEvents TextBox33 As System.Windows.Forms.TextBox
  5341. Friend WithEvents TextBox32 As System.Windows.Forms.TextBox
  5342. Friend WithEvents TextBox31 As System.Windows.Forms.TextBox
  5343. Friend WithEvents Label39 As System.Windows.Forms.Label
  5344. Friend WithEvents Label38 As System.Windows.Forms.Label
  5345. Friend WithEvents Label37 As System.Windows.Forms.Label
  5346. Friend WithEvents Label36 As System.Windows.Forms.Label
  5347. Friend WithEvents Label35 As System.Windows.Forms.Label
  5348. Friend WithEvents Label34 As System.Windows.Forms.Label
  5349. Friend WithEvents TextBox54 As System.Windows.Forms.TextBox
  5350. Friend WithEvents TextBox53 As System.Windows.Forms.TextBox
  5351. Friend WithEvents TextBox52 As System.Windows.Forms.TextBox
  5352. Friend WithEvents TextBox51 As System.Windows.Forms.TextBox
  5353. Friend WithEvents TextBox50 As System.Windows.Forms.TextBox
  5354. Friend WithEvents TextBox49 As System.Windows.Forms.TextBox
  5355. Friend WithEvents TextBox48 As System.Windows.Forms.TextBox
  5356. Friend WithEvents TextBox47 As System.Windows.Forms.TextBox
  5357. Friend WithEvents TextBox46 As System.Windows.Forms.TextBox
  5358. Friend WithEvents TextBox45 As System.Windows.Forms.TextBox
  5359. Friend WithEvents TextBox44 As System.Windows.Forms.TextBox
  5360. Friend WithEvents TextBox43 As System.Windows.Forms.TextBox
  5361. Friend WithEvents TextBox42 As System.Windows.Forms.TextBox
  5362. Friend WithEvents TextBox41 As System.Windows.Forms.TextBox
  5363. Friend WithEvents TextBox40 As System.Windows.Forms.TextBox
  5364. Friend WithEvents TextBox39 As System.Windows.Forms.TextBox
  5365. Friend WithEvents TextBox38 As System.Windows.Forms.TextBox
  5366. Friend WithEvents TextBox37 As System.Windows.Forms.TextBox
  5367. Friend WithEvents TextBox60 As System.Windows.Forms.TextBox
  5368. Friend WithEvents TextBox59 As System.Windows.Forms.TextBox
  5369. Friend WithEvents TextBox58 As System.Windows.Forms.TextBox
  5370. Friend WithEvents TextBox57 As System.Windows.Forms.TextBox
  5371. Friend WithEvents TextBox56 As System.Windows.Forms.TextBox
  5372. Friend WithEvents TextBox55 As System.Windows.Forms.TextBox
  5373. Friend WithEvents TextBox96 As System.Windows.Forms.TextBox
  5374. Friend WithEvents TextBox95 As System.Windows.Forms.TextBox
  5375. Friend WithEvents TextBox94 As System.Windows.Forms.TextBox
  5376. Friend WithEvents TextBox93 As System.Windows.Forms.TextBox
  5377. Friend WithEvents TextBox92 As System.Windows.Forms.TextBox
  5378. Friend WithEvents TextBox91 As System.Windows.Forms.TextBox
  5379. Friend WithEvents TextBox90 As System.Windows.Forms.TextBox
  5380. Friend WithEvents TextBox89 As System.Windows.Forms.TextBox
  5381. Friend WithEvents TextBox88 As System.Windows.Forms.TextBox
  5382. Friend WithEvents TextBox87 As System.Windows.Forms.TextBox
  5383. Friend WithEvents TextBox86 As System.Windows.Forms.TextBox
  5384. Friend WithEvents TextBox85 As System.Windows.Forms.TextBox
  5385. Friend WithEvents TextBox84 As System.Windows.Forms.TextBox
  5386. Friend WithEvents TextBox83 As System.Windows.Forms.TextBox
  5387. Friend WithEvents TextBox82 As System.Windows.Forms.TextBox
  5388. Friend WithEvents TextBox81 As System.Windows.Forms.TextBox
  5389. Friend WithEvents TextBox80 As System.Windows.Forms.TextBox
  5390. Friend WithEvents TextBox79 As System.Windows.Forms.TextBox
  5391. Friend WithEvents TextBox78 As System.Windows.Forms.TextBox
  5392. Friend WithEvents TextBox77 As System.Windows.Forms.TextBox
  5393. Friend WithEvents TextBox76 As System.Windows.Forms.TextBox
  5394. Friend WithEvents TextBox75 As System.Windows.Forms.TextBox
  5395. Friend WithEvents TextBox74 As System.Windows.Forms.TextBox
  5396. Friend WithEvents TextBox73 As System.Windows.Forms.TextBox
  5397. Friend WithEvents TextBox72 As System.Windows.Forms.TextBox
  5398. Friend WithEvents TextBox71 As System.Windows.Forms.TextBox
  5399. Friend WithEvents TextBox70 As System.Windows.Forms.TextBox
  5400. Friend WithEvents TextBox69 As System.Windows.Forms.TextBox
  5401. Friend WithEvents TextBox68 As System.Windows.Forms.TextBox
  5402. Friend WithEvents TextBox67 As System.Windows.Forms.TextBox
  5403. Friend WithEvents TextBox66 As System.Windows.Forms.TextBox
  5404. Friend WithEvents TextBox65 As System.Windows.Forms.TextBox
  5405. Friend WithEvents TextBox64 As System.Windows.Forms.TextBox
  5406. Friend WithEvents TextBox63 As System.Windows.Forms.TextBox
  5407. Friend WithEvents TextBox62 As System.Windows.Forms.TextBox
  5408. Friend WithEvents TextBox61 As System.Windows.Forms.TextBox
  5409. Friend WithEvents TextBox98 As System.Windows.Forms.TextBox
  5410. Friend WithEvents TextBox97 As System.Windows.Forms.TextBox
  5411. Friend WithEvents TextBox101 As System.Windows.Forms.TextBox
  5412. Friend WithEvents TextBox100 As System.Windows.Forms.TextBox
  5413. Friend WithEvents TextBox99 As System.Windows.Forms.TextBox
  5414. Friend WithEvents TextBox131 As System.Windows.Forms.TextBox
  5415. Friend WithEvents TextBox130 As System.Windows.Forms.TextBox
  5416. Friend WithEvents TextBox129 As System.Windows.Forms.TextBox
  5417. Friend WithEvents TextBox128 As System.Windows.Forms.TextBox
  5418. Friend WithEvents TextBox127 As System.Windows.Forms.TextBox
  5419. Friend WithEvents TextBox126 As System.Windows.Forms.TextBox
  5420. Friend WithEvents TextBox125 As System.Windows.Forms.TextBox
  5421. Friend WithEvents TextBox124 As System.Windows.Forms.TextBox
  5422. Friend WithEvents TextBox123 As System.Windows.Forms.TextBox
  5423. Friend WithEvents TextBox122 As System.Windows.Forms.TextBox
  5424. Friend WithEvents TextBox121 As System.Windows.Forms.TextBox
  5425. Friend WithEvents TextBox120 As System.Windows.Forms.TextBox
  5426. Friend WithEvents TextBox119 As System.Windows.Forms.TextBox
  5427. Friend WithEvents TextBox118 As System.Windows.Forms.TextBox
  5428. Friend WithEvents TextBox117 As System.Windows.Forms.TextBox
  5429. Friend WithEvents TextBox116 As System.Windows.Forms.TextBox
  5430. Friend WithEvents TextBox115 As System.Windows.Forms.TextBox
  5431. Friend WithEvents TextBox114 As System.Windows.Forms.TextBox
  5432. Friend WithEvents Label45 As System.Windows.Forms.Label
  5433. Friend WithEvents Label44 As System.Windows.Forms.Label
  5434. Friend WithEvents Label43 As System.Windows.Forms.Label
  5435. Friend WithEvents Label42 As System.Windows.Forms.Label
  5436. Friend WithEvents Label41 As System.Windows.Forms.Label
  5437. Friend WithEvents Label40 As System.Windows.Forms.Label
  5438. Friend WithEvents TextBox113 As System.Windows.Forms.TextBox
  5439. Friend WithEvents TextBox112 As System.Windows.Forms.TextBox
  5440. Friend WithEvents TextBox111 As System.Windows.Forms.TextBox
  5441. Friend WithEvents TextBox110 As System.Windows.Forms.TextBox
  5442. Friend WithEvents TextBox109 As System.Windows.Forms.TextBox
  5443. Friend WithEvents TextBox108 As System.Windows.Forms.TextBox
  5444. Friend WithEvents TextBox107 As System.Windows.Forms.TextBox
  5445. Friend WithEvents TextBox106 As System.Windows.Forms.TextBox
  5446. Friend WithEvents TextBox105 As System.Windows.Forms.TextBox
  5447. Friend WithEvents TextBox104 As System.Windows.Forms.TextBox
  5448. Friend WithEvents TextBox103 As System.Windows.Forms.TextBox
  5449. Friend WithEvents TextBox102 As System.Windows.Forms.TextBox
  5450. Friend WithEvents TextBox132 As System.Windows.Forms.TextBox
  5451. Friend WithEvents TextBox138 As System.Windows.Forms.TextBox
  5452. Friend WithEvents TextBox137 As System.Windows.Forms.TextBox
  5453. Friend WithEvents TextBox136 As System.Windows.Forms.TextBox
  5454. Friend WithEvents TextBox135 As System.Windows.Forms.TextBox
  5455. Friend WithEvents TextBox134 As System.Windows.Forms.TextBox
  5456. Friend WithEvents TextBox133 As System.Windows.Forms.TextBox
  5457. Friend WithEvents Label46 As System.Windows.Forms.Label
  5458. Friend WithEvents Label47 As System.Windows.Forms.Label
  5459. Friend WithEvents Label48 As System.Windows.Forms.Label
  5460. Friend WithEvents Label49 As System.Windows.Forms.Label
  5461. Friend WithEvents ComboBox4 As System.Windows.Forms.ComboBox
  5462. Friend WithEvents TextBox139 As System.Windows.Forms.TextBox
  5463. Friend WithEvents TextBox140 As System.Windows.Forms.TextBox
  5464. Friend WithEvents TextBox141 As System.Windows.Forms.TextBox
  5465. Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox
  5466. Friend WithEvents TextBox144 As System.Windows.Forms.TextBox
  5467. Friend WithEvents TextBox143 As System.Windows.Forms.TextBox
  5468. Friend WithEvents TextBox142 As System.Windows.Forms.TextBox
  5469. Friend WithEvents ComboBox5 As System.Windows.Forms.ComboBox
  5470. Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox
  5471. Friend WithEvents Label63 As System.Windows.Forms.Label
  5472. Friend WithEvents Label62 As System.Windows.Forms.Label
  5473. Friend WithEvents Label61 As System.Windows.Forms.Label
  5474. Friend WithEvents Label60 As System.Windows.Forms.Label
  5475. Friend WithEvents Label59 As System.Windows.Forms.Label
  5476. Friend WithEvents Label58 As System.Windows.Forms.Label
  5477. Friend WithEvents Label57 As System.Windows.Forms.Label
  5478. Friend WithEvents Label56 As System.Windows.Forms.Label
  5479. Friend WithEvents Label53 As System.Windows.Forms.Label
  5480. Friend WithEvents Label52 As System.Windows.Forms.Label
  5481. Friend WithEvents Label51 As System.Windows.Forms.Label
  5482. Friend WithEvents Label50 As System.Windows.Forms.Label
  5483. Friend WithEvents TextBox168 As System.Windows.Forms.TextBox
  5484. Friend WithEvents TextBox167 As System.Windows.Forms.TextBox
  5485. Friend WithEvents TextBox166 As System.Windows.Forms.TextBox
  5486. Friend WithEvents TextBox165 As System.Windows.Forms.TextBox
  5487. Friend WithEvents TextBox164 As System.Windows.Forms.TextBox
  5488. Friend WithEvents TextBox163 As System.Windows.Forms.TextBox
  5489. Friend WithEvents TextBox162 As System.Windows.Forms.TextBox
  5490. Friend WithEvents TextBox161 As System.Windows.Forms.TextBox
  5491. Friend WithEvents TextBox160 As System.Windows.Forms.TextBox
  5492. Friend WithEvents TextBox159 As System.Windows.Forms.TextBox
  5493. Friend WithEvents TextBox158 As System.Windows.Forms.TextBox
  5494. Friend WithEvents TextBox157 As System.Windows.Forms.TextBox
  5495. Friend WithEvents TextBox156 As System.Windows.Forms.TextBox
  5496. Friend WithEvents TextBox155 As System.Windows.Forms.TextBox
  5497. Friend WithEvents TextBox154 As System.Windows.Forms.TextBox
  5498. Friend WithEvents TextBox153 As System.Windows.Forms.TextBox
  5499. Friend WithEvents TextBox152 As System.Windows.Forms.TextBox
  5500. Friend WithEvents TextBox151 As System.Windows.Forms.TextBox
  5501. Friend WithEvents TextBox150 As System.Windows.Forms.TextBox
  5502. Friend WithEvents TextBox149 As System.Windows.Forms.TextBox
  5503. Friend WithEvents TextBox148 As System.Windows.Forms.TextBox
  5504. Friend WithEvents TextBox147 As System.Windows.Forms.TextBox
  5505. Friend WithEvents TextBox146 As System.Windows.Forms.TextBox
  5506. Friend WithEvents TextBox145 As System.Windows.Forms.TextBox
  5507. Friend WithEvents Label55 As System.Windows.Forms.Label
  5508. Friend WithEvents Label54 As System.Windows.Forms.Label
  5509. Friend WithEvents Label65 As System.Windows.Forms.Label
  5510. Friend WithEvents 卦辭_tb As System.Windows.Forms.TextBox
  5511. Friend WithEvents 篆曰_tb As System.Windows.Forms.TextBox
  5512. Friend WithEvents Label66 As System.Windows.Forms.Label
  5513. Friend WithEvents 象曰_tb As System.Windows.Forms.TextBox
  5514. Friend WithEvents Label68 As System.Windows.Forms.Label
  5515. Friend WithEvents TextBox173 As System.Windows.Forms.TextBox
  5516. Friend WithEvents Label67 As System.Windows.Forms.Label
  5517. Friend WithEvents 經文3_tb As System.Windows.Forms.TextBox
  5518. Friend WithEvents 經文4_tb As System.Windows.Forms.TextBox
  5519. Friend WithEvents 經文2_tb As System.Windows.Forms.TextBox
  5520. Friend WithEvents 經文1_tb As System.Windows.Forms.TextBox
  5521. Friend WithEvents TextBox227 As System.Windows.Forms.TextBox
  5522. Friend WithEvents TextBox226 As System.Windows.Forms.TextBox
  5523. Friend WithEvents TextBox178 As System.Windows.Forms.TextBox
  5524. Friend WithEvents TextBox180 As System.Windows.Forms.TextBox
  5525. Friend WithEvents GroupBox7 As System.Windows.Forms.GroupBox
  5526. Friend WithEvents Label73 As System.Windows.Forms.Label
  5527. Friend WithEvents Label74 As System.Windows.Forms.Label
  5528. Friend WithEvents Label75 As System.Windows.Forms.Label
  5529. Friend WithEvents Label76 As System.Windows.Forms.Label
  5530. Friend WithEvents Label85 As System.Windows.Forms.Label
  5531. Friend WithEvents Label86 As System.Windows.Forms.Label
  5532. Friend WithEvents Label87 As System.Windows.Forms.Label
  5533. Friend WithEvents Label88 As System.Windows.Forms.Label
  5534. Friend WithEvents Label89 As System.Windows.Forms.Label
  5535. Friend WithEvents Label90 As System.Windows.Forms.Label
  5536. Friend WithEvents Label91 As System.Windows.Forms.Label
  5537. Friend WithEvents Label92 As System.Windows.Forms.Label
  5538. Friend WithEvents GroupBox8 As System.Windows.Forms.GroupBox
  5539. Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView
  5540. Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox
  5541. Friend WithEvents TextBox179 As System.Windows.Forms.TextBox
  5542. Friend WithEvents Button6 As System.Windows.Forms.Button
  5543. Friend WithEvents Button7 As System.Windows.Forms.Button
  5544. Friend WithEvents Button8 As System.Windows.Forms.Button
  5545. Friend WithEvents TextBox181 As System.Windows.Forms.TextBox
  5546. Friend WithEvents TextBox182 As System.Windows.Forms.TextBox
  5547. Friend WithEvents Button10 As System.Windows.Forms.Button
  5548. Friend WithEvents TextBox183 As System.Windows.Forms.TextBox
  5549. Friend WithEvents Label93 As System.Windows.Forms.Label
  5550. Friend WithEvents TextBox188 As System.Windows.Forms.TextBox
  5551. Friend WithEvents Label95 As System.Windows.Forms.Label
  5552. Friend WithEvents TextBox187 As System.Windows.Forms.TextBox
  5553. Friend WithEvents Label94 As System.Windows.Forms.Label
  5554. Friend WithEvents Button12 As System.Windows.Forms.Button
  5555. Friend WithEvents Button13 As System.Windows.Forms.Button
  5556. Friend WithEvents Button14 As System.Windows.Forms.Button
  5557. Friend WithEvents Button15 As System.Windows.Forms.Button
  5558. Friend WithEvents Label69 As System.Windows.Forms.Label
  5559. Friend WithEvents Label108 As System.Windows.Forms.Label
  5560. Friend WithEvents Label109 As System.Windows.Forms.Label
  5561. Friend WithEvents Label110 As System.Windows.Forms.Label
  5562. Friend WithEvents Label111 As System.Windows.Forms.Label
  5563. Friend WithEvents Label112 As System.Windows.Forms.Label
  5564. Friend WithEvents Label113 As System.Windows.Forms.Label
  5565. Friend WithEvents Label114 As System.Windows.Forms.Label
  5566. Friend WithEvents Label115 As System.Windows.Forms.Label
  5567. Friend WithEvents Label116 As System.Windows.Forms.Label
  5568. Friend WithEvents Label117 As System.Windows.Forms.Label
  5569. Friend WithEvents Label118 As System.Windows.Forms.Label
  5570. Friend WithEvents Label119 As System.Windows.Forms.Label
  5571. Friend WithEvents Label107 As System.Windows.Forms.Label
  5572. Friend WithEvents Label64 As System.Windows.Forms.Label
  5573. Friend WithEvents Label96 As System.Windows.Forms.Label
  5574. Friend WithEvents Label97 As System.Windows.Forms.Label
  5575. Friend WithEvents Label98 As System.Windows.Forms.Label
  5576. Friend WithEvents Label99 As System.Windows.Forms.Label
  5577. Friend WithEvents Label100 As System.Windows.Forms.Label
  5578. Friend WithEvents Label101 As System.Windows.Forms.Label
  5579. Friend WithEvents Label102 As System.Windows.Forms.Label
  5580. Friend WithEvents Label103 As System.Windows.Forms.Label
  5581. Friend WithEvents Label104 As System.Windows.Forms.Label
  5582. Friend WithEvents Label105 As System.Windows.Forms.Label
  5583. Friend WithEvents Label106 As System.Windows.Forms.Label
  5584. Friend WithEvents GroupBox6 As System.Windows.Forms.GroupBox
  5585. Friend WithEvents Label148 As System.Windows.Forms.Label
  5586. Friend WithEvents Label70 As System.Windows.Forms.Label
  5587. Friend WithEvents Label147 As System.Windows.Forms.Label
  5588. Friend WithEvents Label77 As System.Windows.Forms.Label
  5589. Friend WithEvents Label83 As System.Windows.Forms.Label
  5590. Friend WithEvents Label120 As System.Windows.Forms.Label
  5591. Friend WithEvents Label122 As System.Windows.Forms.Label
  5592. Friend WithEvents Label125 As System.Windows.Forms.Label
  5593. Friend WithEvents Label128 As System.Windows.Forms.Label
  5594. Friend WithEvents Label131 As System.Windows.Forms.Label
  5595. Friend WithEvents Label132 As System.Windows.Forms.Label
  5596. Friend WithEvents Label134 As System.Windows.Forms.Label
  5597. Friend WithEvents Label135 As System.Windows.Forms.Label
  5598. Friend WithEvents Label138 As System.Windows.Forms.Label
  5599. Friend WithEvents Label141 As System.Windows.Forms.Label
  5600. Friend WithEvents Label145 As System.Windows.Forms.Label
  5601. Friend WithEvents Button16 As System.Windows.Forms.Button
  5602. Friend WithEvents Label79 As System.Windows.Forms.Label
  5603. Friend WithEvents Label78 As System.Windows.Forms.Label
  5604. Friend WithEvents Label72 As System.Windows.Forms.Label
  5605. Friend WithEvents Label71 As System.Windows.Forms.Label
  5606. Friend WithEvents GroupBox10 As System.Windows.Forms.GroupBox
  5607. Friend WithEvents Button17 As System.Windows.Forms.Button
  5608. Friend WithEvents Button20 As System.Windows.Forms.Button
  5609. Friend WithEvents Button21 As System.Windows.Forms.Button
  5610. Friend WithEvents Button22 As System.Windows.Forms.Button
  5611. Friend WithEvents Button19 As System.Windows.Forms.Button
  5612. Friend WithEvents Button18 As System.Windows.Forms.Button
  5613. Friend WithEvents Button25 As System.Windows.Forms.Button
  5614. Friend WithEvents Button23 As System.Windows.Forms.Button
  5615. Friend WithEvents Button24 As System.Windows.Forms.Button
  5616. Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox
  5617. Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
  5618. Friend WithEvents RadioButton6 As System.Windows.Forms.RadioButton
  5619. Friend WithEvents RadioButton7 As System.Windows.Forms.RadioButton
  5620. Friend WithEvents RadioButton8 As System.Windows.Forms.RadioButton
  5621. Friend WithEvents RadioButton9 As System.Windows.Forms.RadioButton
  5622. Friend WithEvents RadioButton10 As System.Windows.Forms.RadioButton
  5623. Friend WithEvents RadioButton5 As System.Windows.Forms.RadioButton
  5624. Friend WithEvents RadioButton4 As System.Windows.Forms.RadioButton
  5625. Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton
  5626. Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
  5627. Friend WithEvents Label82 As System.Windows.Forms.Label
  5628. Friend WithEvents Label84 As System.Windows.Forms.Label
  5629. Friend WithEvents Label81 As System.Windows.Forms.Label
  5630. Friend WithEvents Label80 As System.Windows.Forms.Label
  5631. Friend WithEvents TextBox190 As System.Windows.Forms.TextBox
  5632. Friend WithEvents TextBox172 As System.Windows.Forms.TextBox
  5633. Friend WithEvents Button28 As System.Windows.Forms.Button
  5634. Friend WithEvents Button26 As System.Windows.Forms.Button
  5635. Friend WithEvents Button27 As System.Windows.Forms.Button
  5636. Friend WithEvents Button29 As System.Windows.Forms.Button
  5637. Friend WithEvents Button30 As System.Windows.Forms.Button
  5638. Friend WithEvents Button31 As System.Windows.Forms.Button
  5639. Friend WithEvents TextBox192 As System.Windows.Forms.TextBox
  5640. Friend WithEvents TextBox191 As System.Windows.Forms.TextBox
  5641. Friend WithEvents TextBox189 As System.Windows.Forms.TextBox
  5642. Friend WithEvents TextBox186 As System.Windows.Forms.TextBox
  5643. Friend WithEvents TextBox185 As System.Windows.Forms.TextBox
  5644. Friend WithEvents TextBox184 As System.Windows.Forms.TextBox
  5645. Friend WithEvents TextBox198 As System.Windows.Forms.TextBox
  5646. Friend WithEvents TextBox197 As System.Windows.Forms.TextBox
  5647. Friend WithEvents TextBox196 As System.Windows.Forms.TextBox
  5648. Friend WithEvents TextBox195 As System.Windows.Forms.TextBox
  5649. Friend WithEvents TextBox194 As System.Windows.Forms.TextBox
  5650. Friend WithEvents TextBox193 As System.Windows.Forms.TextBox
  5651. Friend WithEvents GroupBox11 As System.Windows.Forms.GroupBox
  5652. Friend WithEvents Button32 As System.Windows.Forms.Button
  5653. Friend WithEvents Button33 As System.Windows.Forms.Button
  5654. Friend WithEvents Label121 As System.Windows.Forms.Label
  5655. Friend WithEvents TextBox199 As System.Windows.Forms.TextBox
  5656. Friend WithEvents GroupBox12 As System.Windows.Forms.GroupBox
  5657. Friend WithEvents Label129 As System.Windows.Forms.Label
  5658. Friend WithEvents Label130 As System.Windows.Forms.Label
  5659. Friend WithEvents Label133 As System.Windows.Forms.Label
  5660. Friend WithEvents Label137 As System.Windows.Forms.Label
  5661. Friend WithEvents Label139 As System.Windows.Forms.Label
  5662. Friend WithEvents Button34 As System.Windows.Forms.Button
  5663. Friend WithEvents Label140 As System.Windows.Forms.Label
  5664. Friend WithEvents Label136 As System.Windows.Forms.Label
  5665. Friend WithEvents Label142 As System.Windows.Forms.Label
  5666. Friend WithEvents Label151 As System.Windows.Forms.Label
  5667. Friend WithEvents Label146 As System.Windows.Forms.Label
  5668. Friend WithEvents Label144 As System.Windows.Forms.Label
  5669. Friend WithEvents Label143 As System.Windows.Forms.Label
  5670. Friend WithEvents Label149 As System.Windows.Forms.Label
  5671. Friend WithEvents Label150 As System.Windows.Forms.Label
  5672. Friend WithEvents Label152 As System.Windows.Forms.Label
  5673. Friend WithEvents Label153 As System.Windows.Forms.Label
  5674. Friend WithEvents Label124 As System.Windows.Forms.Label
  5675. Friend WithEvents TextBox201 As System.Windows.Forms.TextBox
  5676. Friend WithEvents Label123 As System.Windows.Forms.Label
  5677. Friend WithEvents TextBox200 As System.Windows.Forms.TextBox
  5678. Friend WithEvents Label126 As Label
  5679. Friend WithEvents Label127 As Label
  5680. Friend WithEvents 易林_tb As TextBox
  5681. Friend WithEvents Label154 As Label
  5682. Friend WithEvents Label155 As Label
  5683. Friend WithEvents Label156 As Label
  5684. Friend WithEvents Label157 As Label
  5685. Friend WithEvents Label158 As Label
  5686. Friend WithEvents 存檔_bt As Button
  5687. End Class