YLGL - 08.vcproj 206 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049
  1. <?xml version="1.0" encoding="gb2312"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="9.00"
  5. Name="YLGL"
  6. ProjectGUID="{A5581644-75BA-43D3-A3DB-44588EBDC50E}"
  7. Keyword="MFCProj"
  8. TargetFrameworkVersion="0"
  9. >
  10. <Platforms>
  11. <Platform
  12. Name="Win32"
  13. />
  14. </Platforms>
  15. <ToolFiles>
  16. </ToolFiles>
  17. <Configurations>
  18. <Configuration
  19. Name="Debug|Win32"
  20. OutputDirectory=".\Debug"
  21. IntermediateDirectory=".\Debug"
  22. ConfigurationType="1"
  23. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
  24. UseOfMFC="2"
  25. ATLMinimizesCRunTimeLibraryUsage="false"
  26. CharacterSet="2"
  27. >
  28. <Tool
  29. Name="VCPreBuildEventTool"
  30. />
  31. <Tool
  32. Name="VCCustomBuildTool"
  33. />
  34. <Tool
  35. Name="VCXMLDataGeneratorTool"
  36. />
  37. <Tool
  38. Name="VCWebServiceProxyGeneratorTool"
  39. />
  40. <Tool
  41. Name="VCMIDLTool"
  42. PreprocessorDefinitions="_DEBUG"
  43. MkTypLibCompatible="true"
  44. SuppressStartupBanner="true"
  45. TargetEnvironment="1"
  46. TypeLibraryName=".\Debug/YLGL - 08.tlb"
  47. HeaderFileName=""
  48. />
  49. <Tool
  50. Name="VCCLCompilerTool"
  51. Optimization="0"
  52. PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
  53. MinimalRebuild="true"
  54. BasicRuntimeChecks="3"
  55. RuntimeLibrary="3"
  56. UsePrecompiledHeader="2"
  57. PrecompiledHeaderThrough="stdafx.h"
  58. PrecompiledHeaderFile=".\Debug/YLGL - 08.pch"
  59. AssemblerListingLocation=".\Debug/"
  60. ObjectFile=".\Debug/"
  61. ProgramDataBaseFileName=".\Debug/"
  62. BrowseInformation="1"
  63. WarningLevel="3"
  64. SuppressStartupBanner="true"
  65. DebugInformationFormat="4"
  66. />
  67. <Tool
  68. Name="VCManagedResourceCompilerTool"
  69. />
  70. <Tool
  71. Name="VCResourceCompilerTool"
  72. PreprocessorDefinitions="_DEBUG"
  73. Culture="2052"
  74. />
  75. <Tool
  76. Name="VCPreLinkEventTool"
  77. />
  78. <Tool
  79. Name="VCLinkerTool"
  80. AdditionalDependencies="NeroAPIGlue.lib"
  81. OutputFile="E:\YLXC\YLGL\Bin\YLGLD.exe"
  82. LinkIncremental="2"
  83. SuppressStartupBanner="true"
  84. IgnoreDefaultLibraryNames="msvcprt.lib,msvcrtd.lib,LIBCMT.lib,LIBCD.lib,LIBC.lib"
  85. GenerateDebugInformation="true"
  86. ProgramDatabaseFile=".\Debug/YLGLD.pdb"
  87. SubSystem="2"
  88. RandomizedBaseAddress="1"
  89. DataExecutionPrevention="0"
  90. TargetMachine="1"
  91. />
  92. <Tool
  93. Name="VCALinkTool"
  94. />
  95. <Tool
  96. Name="VCManifestTool"
  97. />
  98. <Tool
  99. Name="VCXDCMakeTool"
  100. />
  101. <Tool
  102. Name="VCBscMakeTool"
  103. SuppressStartupBanner="true"
  104. OutputFile=".\Debug/YLGL - 08.bsc"
  105. />
  106. <Tool
  107. Name="VCFxCopTool"
  108. />
  109. <Tool
  110. Name="VCAppVerifierTool"
  111. />
  112. <Tool
  113. Name="VCPostBuildEventTool"
  114. />
  115. </Configuration>
  116. <Configuration
  117. Name="Release|Win32"
  118. OutputDirectory=".\Release"
  119. IntermediateDirectory=".\Release"
  120. ConfigurationType="1"
  121. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
  122. UseOfMFC="2"
  123. ATLMinimizesCRunTimeLibraryUsage="false"
  124. CharacterSet="2"
  125. >
  126. <Tool
  127. Name="VCPreBuildEventTool"
  128. />
  129. <Tool
  130. Name="VCCustomBuildTool"
  131. />
  132. <Tool
  133. Name="VCXMLDataGeneratorTool"
  134. />
  135. <Tool
  136. Name="VCWebServiceProxyGeneratorTool"
  137. />
  138. <Tool
  139. Name="VCMIDLTool"
  140. PreprocessorDefinitions="NDEBUG"
  141. MkTypLibCompatible="true"
  142. SuppressStartupBanner="true"
  143. TargetEnvironment="1"
  144. TypeLibraryName=".\Release/YLGL - 08.tlb"
  145. HeaderFileName=""
  146. />
  147. <Tool
  148. Name="VCCLCompilerTool"
  149. Optimization="2"
  150. InlineFunctionExpansion="1"
  151. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
  152. StringPooling="true"
  153. RuntimeLibrary="2"
  154. EnableFunctionLevelLinking="true"
  155. UsePrecompiledHeader="2"
  156. PrecompiledHeaderThrough="stdafx.h"
  157. PrecompiledHeaderFile=".\Release/YLGL - 08.pch"
  158. AssemblerListingLocation=".\Release/"
  159. ObjectFile=".\Release/"
  160. ProgramDataBaseFileName=".\Release/"
  161. BrowseInformation="1"
  162. WarningLevel="4"
  163. SuppressStartupBanner="true"
  164. />
  165. <Tool
  166. Name="VCManagedResourceCompilerTool"
  167. />
  168. <Tool
  169. Name="VCResourceCompilerTool"
  170. PreprocessorDefinitions="NDEBUG"
  171. Culture="2052"
  172. />
  173. <Tool
  174. Name="VCPreLinkEventTool"
  175. />
  176. <Tool
  177. Name="VCLinkerTool"
  178. AdditionalDependencies="NeroAPIGlue.lib"
  179. OutputFile="E:\YLXC\YLGL\Bin\YLGL.exe"
  180. LinkIncremental="1"
  181. SuppressStartupBanner="true"
  182. IgnoreDefaultLibraryNames="LIBCMT.lib,LIBCD.lib,LIBC.lib"
  183. ProgramDatabaseFile=".\Release/YLGL.pdb"
  184. SubSystem="2"
  185. RandomizedBaseAddress="1"
  186. DataExecutionPrevention="0"
  187. TargetMachine="1"
  188. />
  189. <Tool
  190. Name="VCALinkTool"
  191. />
  192. <Tool
  193. Name="VCManifestTool"
  194. />
  195. <Tool
  196. Name="VCXDCMakeTool"
  197. />
  198. <Tool
  199. Name="VCBscMakeTool"
  200. SuppressStartupBanner="true"
  201. OutputFile=".\Release/YLGL - 08.bsc"
  202. />
  203. <Tool
  204. Name="VCFxCopTool"
  205. />
  206. <Tool
  207. Name="VCAppVerifierTool"
  208. />
  209. <Tool
  210. Name="VCPostBuildEventTool"
  211. />
  212. </Configuration>
  213. </Configurations>
  214. <References>
  215. </References>
  216. <Files>
  217. <Filter
  218. Name="Source Files"
  219. Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
  220. >
  221. <File
  222. RelativePath="AreaClient.cpp"
  223. >
  224. <FileConfiguration
  225. Name="Debug|Win32"
  226. >
  227. <Tool
  228. Name="VCCLCompilerTool"
  229. PreprocessorDefinitions=""
  230. />
  231. </FileConfiguration>
  232. <FileConfiguration
  233. Name="Release|Win32"
  234. >
  235. <Tool
  236. Name="VCCLCompilerTool"
  237. PreprocessorDefinitions=""
  238. />
  239. </FileConfiguration>
  240. </File>
  241. <File
  242. RelativePath="AreaClient.h"
  243. >
  244. </File>
  245. <File
  246. RelativePath="AreaDlg.cpp"
  247. >
  248. <FileConfiguration
  249. Name="Debug|Win32"
  250. >
  251. <Tool
  252. Name="VCCLCompilerTool"
  253. PreprocessorDefinitions=""
  254. />
  255. </FileConfiguration>
  256. <FileConfiguration
  257. Name="Release|Win32"
  258. >
  259. <Tool
  260. Name="VCCLCompilerTool"
  261. PreprocessorDefinitions=""
  262. />
  263. </FileConfiguration>
  264. </File>
  265. <File
  266. RelativePath="AreaDlg.h"
  267. >
  268. </File>
  269. <File
  270. RelativePath="BasicExcelVC6.cpp"
  271. >
  272. <FileConfiguration
  273. Name="Debug|Win32"
  274. >
  275. <Tool
  276. Name="VCCLCompilerTool"
  277. PreprocessorDefinitions=""
  278. />
  279. </FileConfiguration>
  280. <FileConfiguration
  281. Name="Release|Win32"
  282. >
  283. <Tool
  284. Name="VCCLCompilerTool"
  285. PreprocessorDefinitions=""
  286. />
  287. </FileConfiguration>
  288. </File>
  289. <File
  290. RelativePath="BasicExcelVC6.h"
  291. >
  292. </File>
  293. <File
  294. RelativePath="CalendarConvert.cpp"
  295. >
  296. <FileConfiguration
  297. Name="Debug|Win32"
  298. >
  299. <Tool
  300. Name="VCCLCompilerTool"
  301. PreprocessorDefinitions=""
  302. />
  303. </FileConfiguration>
  304. <FileConfiguration
  305. Name="Release|Win32"
  306. >
  307. <Tool
  308. Name="VCCLCompilerTool"
  309. PreprocessorDefinitions=""
  310. />
  311. </FileConfiguration>
  312. </File>
  313. <File
  314. RelativePath="CalendarConvert.h"
  315. >
  316. </File>
  317. <File
  318. RelativePath="ChildFrm.cpp"
  319. >
  320. <FileConfiguration
  321. Name="Debug|Win32"
  322. >
  323. <Tool
  324. Name="VCCLCompilerTool"
  325. PreprocessorDefinitions=""
  326. />
  327. </FileConfiguration>
  328. <FileConfiguration
  329. Name="Release|Win32"
  330. >
  331. <Tool
  332. Name="VCCLCompilerTool"
  333. PreprocessorDefinitions=""
  334. />
  335. </FileConfiguration>
  336. </File>
  337. <File
  338. RelativePath="ChildFrm.h"
  339. >
  340. </File>
  341. <File
  342. RelativePath="ClientRequirement.cpp"
  343. >
  344. <FileConfiguration
  345. Name="Debug|Win32"
  346. >
  347. <Tool
  348. Name="VCCLCompilerTool"
  349. PreprocessorDefinitions=""
  350. />
  351. </FileConfiguration>
  352. <FileConfiguration
  353. Name="Release|Win32"
  354. >
  355. <Tool
  356. Name="VCCLCompilerTool"
  357. PreprocessorDefinitions=""
  358. />
  359. </FileConfiguration>
  360. </File>
  361. <File
  362. RelativePath="ClientTunnel.cpp"
  363. >
  364. <FileConfiguration
  365. Name="Debug|Win32"
  366. >
  367. <Tool
  368. Name="VCCLCompilerTool"
  369. PreprocessorDefinitions=""
  370. />
  371. </FileConfiguration>
  372. <FileConfiguration
  373. Name="Release|Win32"
  374. >
  375. <Tool
  376. Name="VCCLCompilerTool"
  377. PreprocessorDefinitions=""
  378. />
  379. </FileConfiguration>
  380. </File>
  381. <File
  382. RelativePath="ClientTunnel.h"
  383. >
  384. </File>
  385. <File
  386. RelativePath="ClientWnd.cpp"
  387. >
  388. <FileConfiguration
  389. Name="Debug|Win32"
  390. >
  391. <Tool
  392. Name="VCCLCompilerTool"
  393. PreprocessorDefinitions=""
  394. />
  395. </FileConfiguration>
  396. <FileConfiguration
  397. Name="Release|Win32"
  398. >
  399. <Tool
  400. Name="VCCLCompilerTool"
  401. PreprocessorDefinitions=""
  402. />
  403. </FileConfiguration>
  404. </File>
  405. <File
  406. RelativePath="ClientWnd.h"
  407. >
  408. </File>
  409. <File
  410. RelativePath="CMyProperty.cpp"
  411. >
  412. <FileConfiguration
  413. Name="Debug|Win32"
  414. >
  415. <Tool
  416. Name="VCCLCompilerTool"
  417. PreprocessorDefinitions=""
  418. />
  419. </FileConfiguration>
  420. <FileConfiguration
  421. Name="Release|Win32"
  422. >
  423. <Tool
  424. Name="VCCLCompilerTool"
  425. PreprocessorDefinitions=""
  426. />
  427. </FileConfiguration>
  428. </File>
  429. <File
  430. RelativePath="CMyProperty.h"
  431. >
  432. </File>
  433. <File
  434. RelativePath="CompressOption.cpp"
  435. >
  436. <FileConfiguration
  437. Name="Debug|Win32"
  438. >
  439. <Tool
  440. Name="VCCLCompilerTool"
  441. PreprocessorDefinitions=""
  442. />
  443. </FileConfiguration>
  444. <FileConfiguration
  445. Name="Release|Win32"
  446. >
  447. <Tool
  448. Name="VCCLCompilerTool"
  449. PreprocessorDefinitions=""
  450. />
  451. </FileConfiguration>
  452. </File>
  453. <File
  454. RelativePath="DataUpdateCentrer.cpp"
  455. >
  456. <FileConfiguration
  457. Name="Debug|Win32"
  458. >
  459. <Tool
  460. Name="VCCLCompilerTool"
  461. PreprocessorDefinitions=""
  462. />
  463. </FileConfiguration>
  464. <FileConfiguration
  465. Name="Release|Win32"
  466. >
  467. <Tool
  468. Name="VCCLCompilerTool"
  469. PreprocessorDefinitions=""
  470. />
  471. </FileConfiguration>
  472. </File>
  473. <File
  474. RelativePath="DBConfig.cpp"
  475. >
  476. <FileConfiguration
  477. Name="Debug|Win32"
  478. >
  479. <Tool
  480. Name="VCCLCompilerTool"
  481. PreprocessorDefinitions=""
  482. />
  483. </FileConfiguration>
  484. <FileConfiguration
  485. Name="Release|Win32"
  486. >
  487. <Tool
  488. Name="VCCLCompilerTool"
  489. PreprocessorDefinitions=""
  490. />
  491. </FileConfiguration>
  492. </File>
  493. <File
  494. RelativePath="DelHC.cpp"
  495. >
  496. <FileConfiguration
  497. Name="Debug|Win32"
  498. >
  499. <Tool
  500. Name="VCCLCompilerTool"
  501. PreprocessorDefinitions=""
  502. />
  503. </FileConfiguration>
  504. <FileConfiguration
  505. Name="Release|Win32"
  506. >
  507. <Tool
  508. Name="VCCLCompilerTool"
  509. PreprocessorDefinitions=""
  510. />
  511. </FileConfiguration>
  512. </File>
  513. <File
  514. RelativePath="DelPhotoSet.cpp"
  515. >
  516. <FileConfiguration
  517. Name="Debug|Win32"
  518. >
  519. <Tool
  520. Name="VCCLCompilerTool"
  521. PreprocessorDefinitions=""
  522. />
  523. </FileConfiguration>
  524. <FileConfiguration
  525. Name="Release|Win32"
  526. >
  527. <Tool
  528. Name="VCCLCompilerTool"
  529. PreprocessorDefinitions=""
  530. />
  531. </FileConfiguration>
  532. </File>
  533. <File
  534. RelativePath="DesinCheck.cpp"
  535. >
  536. <FileConfiguration
  537. Name="Debug|Win32"
  538. >
  539. <Tool
  540. Name="VCCLCompilerTool"
  541. PreprocessorDefinitions=""
  542. />
  543. </FileConfiguration>
  544. <FileConfiguration
  545. Name="Release|Win32"
  546. >
  547. <Tool
  548. Name="VCCLCompilerTool"
  549. PreprocessorDefinitions=""
  550. />
  551. </FileConfiguration>
  552. </File>
  553. <File
  554. RelativePath="helper\ffsco.cpp"
  555. >
  556. <FileConfiguration
  557. Name="Debug|Win32"
  558. >
  559. <Tool
  560. Name="VCCLCompilerTool"
  561. PreprocessorDefinitions=""
  562. />
  563. </FileConfiguration>
  564. <FileConfiguration
  565. Name="Release|Win32"
  566. >
  567. <Tool
  568. Name="VCCLCompilerTool"
  569. PreprocessorDefinitions=""
  570. />
  571. </FileConfiguration>
  572. </File>
  573. <File
  574. RelativePath="helper\ffsco.h"
  575. >
  576. </File>
  577. <File
  578. RelativePath="font.cpp"
  579. >
  580. <FileConfiguration
  581. Name="Debug|Win32"
  582. >
  583. <Tool
  584. Name="VCCLCompilerTool"
  585. PreprocessorDefinitions=""
  586. />
  587. </FileConfiguration>
  588. <FileConfiguration
  589. Name="Release|Win32"
  590. >
  591. <Tool
  592. Name="VCCLCompilerTool"
  593. PreprocessorDefinitions=""
  594. />
  595. </FileConfiguration>
  596. </File>
  597. <File
  598. RelativePath="GetClientInfo.cpp"
  599. >
  600. <FileConfiguration
  601. Name="Debug|Win32"
  602. >
  603. <Tool
  604. Name="VCCLCompilerTool"
  605. PreprocessorDefinitions=""
  606. />
  607. </FileConfiguration>
  608. <FileConfiguration
  609. Name="Release|Win32"
  610. >
  611. <Tool
  612. Name="VCCLCompilerTool"
  613. PreprocessorDefinitions=""
  614. />
  615. </FileConfiguration>
  616. </File>
  617. <File
  618. RelativePath="HideWindow.cpp"
  619. >
  620. <FileConfiguration
  621. Name="Debug|Win32"
  622. >
  623. <Tool
  624. Name="VCCLCompilerTool"
  625. PreprocessorDefinitions=""
  626. />
  627. </FileConfiguration>
  628. <FileConfiguration
  629. Name="Release|Win32"
  630. >
  631. <Tool
  632. Name="VCCLCompilerTool"
  633. PreprocessorDefinitions=""
  634. />
  635. </FileConfiguration>
  636. </File>
  637. <File
  638. RelativePath="HyperLink.cpp"
  639. >
  640. <FileConfiguration
  641. Name="Debug|Win32"
  642. >
  643. <Tool
  644. Name="VCCLCompilerTool"
  645. PreprocessorDefinitions=""
  646. />
  647. </FileConfiguration>
  648. <FileConfiguration
  649. Name="Release|Win32"
  650. >
  651. <Tool
  652. Name="VCCLCompilerTool"
  653. PreprocessorDefinitions=""
  654. />
  655. </FileConfiguration>
  656. </File>
  657. <File
  658. RelativePath="HyperLink.h"
  659. >
  660. </File>
  661. <File
  662. RelativePath="InputName.cpp"
  663. >
  664. <FileConfiguration
  665. Name="Debug|Win32"
  666. >
  667. <Tool
  668. Name="VCCLCompilerTool"
  669. PreprocessorDefinitions=""
  670. />
  671. </FileConfiguration>
  672. <FileConfiguration
  673. Name="Release|Win32"
  674. >
  675. <Tool
  676. Name="VCCLCompilerTool"
  677. PreprocessorDefinitions=""
  678. />
  679. </FileConfiguration>
  680. </File>
  681. <File
  682. RelativePath="InputPhones.cpp"
  683. >
  684. <FileConfiguration
  685. Name="Debug|Win32"
  686. >
  687. <Tool
  688. Name="VCCLCompilerTool"
  689. PreprocessorDefinitions=""
  690. />
  691. </FileConfiguration>
  692. <FileConfiguration
  693. Name="Release|Win32"
  694. >
  695. <Tool
  696. Name="VCCLCompilerTool"
  697. PreprocessorDefinitions=""
  698. />
  699. </FileConfiguration>
  700. </File>
  701. <File
  702. RelativePath="InputPrice.cpp"
  703. >
  704. <FileConfiguration
  705. Name="Debug|Win32"
  706. >
  707. <Tool
  708. Name="VCCLCompilerTool"
  709. PreprocessorDefinitions=""
  710. />
  711. </FileConfiguration>
  712. <FileConfiguration
  713. Name="Release|Win32"
  714. >
  715. <Tool
  716. Name="VCCLCompilerTool"
  717. PreprocessorDefinitions=""
  718. />
  719. </FileConfiguration>
  720. </File>
  721. <File
  722. RelativePath="InputPsw.cpp"
  723. >
  724. <FileConfiguration
  725. Name="Debug|Win32"
  726. >
  727. <Tool
  728. Name="VCCLCompilerTool"
  729. PreprocessorDefinitions=""
  730. />
  731. </FileConfiguration>
  732. <FileConfiguration
  733. Name="Release|Win32"
  734. >
  735. <Tool
  736. Name="VCCLCompilerTool"
  737. PreprocessorDefinitions=""
  738. />
  739. </FileConfiguration>
  740. </File>
  741. <File
  742. RelativePath="InputPsw2.cpp"
  743. >
  744. <FileConfiguration
  745. Name="Debug|Win32"
  746. >
  747. <Tool
  748. Name="VCCLCompilerTool"
  749. PreprocessorDefinitions=""
  750. />
  751. </FileConfiguration>
  752. <FileConfiguration
  753. Name="Release|Win32"
  754. >
  755. <Tool
  756. Name="VCCLCompilerTool"
  757. PreprocessorDefinitions=""
  758. />
  759. </FileConfiguration>
  760. </File>
  761. <File
  762. RelativePath="InStock.cpp"
  763. >
  764. <FileConfiguration
  765. Name="Debug|Win32"
  766. >
  767. <Tool
  768. Name="VCCLCompilerTool"
  769. PreprocessorDefinitions=""
  770. />
  771. </FileConfiguration>
  772. <FileConfiguration
  773. Name="Release|Win32"
  774. >
  775. <Tool
  776. Name="VCCLCompilerTool"
  777. PreprocessorDefinitions=""
  778. />
  779. </FileConfiguration>
  780. </File>
  781. <File
  782. RelativePath="JPEG.cpp"
  783. >
  784. <FileConfiguration
  785. Name="Debug|Win32"
  786. >
  787. <Tool
  788. Name="VCCLCompilerTool"
  789. PreprocessorDefinitions=""
  790. />
  791. </FileConfiguration>
  792. <FileConfiguration
  793. Name="Release|Win32"
  794. >
  795. <Tool
  796. Name="VCCLCompilerTool"
  797. PreprocessorDefinitions=""
  798. />
  799. </FileConfiguration>
  800. </File>
  801. <File
  802. RelativePath="JPEG.h"
  803. >
  804. </File>
  805. <File
  806. RelativePath="LabelEx.cpp"
  807. >
  808. <FileConfiguration
  809. Name="Debug|Win32"
  810. >
  811. <Tool
  812. Name="VCCLCompilerTool"
  813. PreprocessorDefinitions=""
  814. />
  815. </FileConfiguration>
  816. <FileConfiguration
  817. Name="Release|Win32"
  818. >
  819. <Tool
  820. Name="VCCLCompilerTool"
  821. PreprocessorDefinitions=""
  822. />
  823. </FileConfiguration>
  824. </File>
  825. <File
  826. RelativePath="LabelEx.h"
  827. >
  828. </File>
  829. <File
  830. RelativePath="Login.cpp"
  831. >
  832. <FileConfiguration
  833. Name="Debug|Win32"
  834. >
  835. <Tool
  836. Name="VCCLCompilerTool"
  837. PreprocessorDefinitions=""
  838. />
  839. </FileConfiguration>
  840. <FileConfiguration
  841. Name="Release|Win32"
  842. >
  843. <Tool
  844. Name="VCCLCompilerTool"
  845. PreprocessorDefinitions=""
  846. />
  847. </FileConfiguration>
  848. </File>
  849. <File
  850. RelativePath="Login2.cpp"
  851. >
  852. <FileConfiguration
  853. Name="Debug|Win32"
  854. >
  855. <Tool
  856. Name="VCCLCompilerTool"
  857. PreprocessorDefinitions=""
  858. />
  859. </FileConfiguration>
  860. <FileConfiguration
  861. Name="Release|Win32"
  862. >
  863. <Tool
  864. Name="VCCLCompilerTool"
  865. PreprocessorDefinitions=""
  866. />
  867. </FileConfiguration>
  868. </File>
  869. <File
  870. RelativePath="Login2.h"
  871. >
  872. </File>
  873. <File
  874. RelativePath="Login3.cpp"
  875. >
  876. <FileConfiguration
  877. Name="Debug|Win32"
  878. >
  879. <Tool
  880. Name="VCCLCompilerTool"
  881. PreprocessorDefinitions=""
  882. />
  883. </FileConfiguration>
  884. <FileConfiguration
  885. Name="Release|Win32"
  886. >
  887. <Tool
  888. Name="VCCLCompilerTool"
  889. PreprocessorDefinitions=""
  890. />
  891. </FileConfiguration>
  892. </File>
  893. <File
  894. RelativePath="Login3.h"
  895. >
  896. </File>
  897. <File
  898. RelativePath="Lunar.cpp"
  899. >
  900. <FileConfiguration
  901. Name="Debug|Win32"
  902. >
  903. <Tool
  904. Name="VCCLCompilerTool"
  905. PreprocessorDefinitions=""
  906. />
  907. </FileConfiguration>
  908. <FileConfiguration
  909. Name="Release|Win32"
  910. >
  911. <Tool
  912. Name="VCCLCompilerTool"
  913. PreprocessorDefinitions=""
  914. />
  915. </FileConfiguration>
  916. </File>
  917. <File
  918. RelativePath="lzari.cpp"
  919. >
  920. <FileConfiguration
  921. Name="Debug|Win32"
  922. >
  923. <Tool
  924. Name="VCCLCompilerTool"
  925. PreprocessorDefinitions=""
  926. />
  927. </FileConfiguration>
  928. <FileConfiguration
  929. Name="Release|Win32"
  930. >
  931. <Tool
  932. Name="VCCLCompilerTool"
  933. PreprocessorDefinitions=""
  934. />
  935. </FileConfiguration>
  936. </File>
  937. <File
  938. RelativePath="lzari.h"
  939. >
  940. </File>
  941. <File
  942. RelativePath="MainFrimDlg2.cpp"
  943. >
  944. <FileConfiguration
  945. Name="Debug|Win32"
  946. >
  947. <Tool
  948. Name="VCCLCompilerTool"
  949. PreprocessorDefinitions=""
  950. />
  951. </FileConfiguration>
  952. <FileConfiguration
  953. Name="Release|Win32"
  954. >
  955. <Tool
  956. Name="VCCLCompilerTool"
  957. PreprocessorDefinitions=""
  958. />
  959. </FileConfiguration>
  960. </File>
  961. <File
  962. RelativePath="MainFrimDlg2.h"
  963. >
  964. </File>
  965. <File
  966. RelativePath="MainFrm.cpp"
  967. >
  968. <FileConfiguration
  969. Name="Debug|Win32"
  970. >
  971. <Tool
  972. Name="VCCLCompilerTool"
  973. PreprocessorDefinitions=""
  974. />
  975. </FileConfiguration>
  976. <FileConfiguration
  977. Name="Release|Win32"
  978. >
  979. <Tool
  980. Name="VCCLCompilerTool"
  981. PreprocessorDefinitions=""
  982. />
  983. </FileConfiguration>
  984. </File>
  985. <File
  986. RelativePath="MainFrm.h"
  987. >
  988. </File>
  989. <File
  990. RelativePath="mschart.cpp"
  991. >
  992. <FileConfiguration
  993. Name="Debug|Win32"
  994. >
  995. <Tool
  996. Name="VCCLCompilerTool"
  997. PreprocessorDefinitions=""
  998. />
  999. </FileConfiguration>
  1000. <FileConfiguration
  1001. Name="Release|Win32"
  1002. >
  1003. <Tool
  1004. Name="VCCLCompilerTool"
  1005. PreprocessorDefinitions=""
  1006. />
  1007. </FileConfiguration>
  1008. </File>
  1009. <File
  1010. RelativePath="MyLock.cpp"
  1011. >
  1012. <FileConfiguration
  1013. Name="Debug|Win32"
  1014. >
  1015. <Tool
  1016. Name="VCCLCompilerTool"
  1017. PreprocessorDefinitions=""
  1018. />
  1019. </FileConfiguration>
  1020. <FileConfiguration
  1021. Name="Release|Win32"
  1022. >
  1023. <Tool
  1024. Name="VCCLCompilerTool"
  1025. PreprocessorDefinitions=""
  1026. />
  1027. </FileConfiguration>
  1028. </File>
  1029. <File
  1030. RelativePath="MyLock.h"
  1031. >
  1032. </File>
  1033. <File
  1034. RelativePath="MyMdi.cpp"
  1035. >
  1036. <FileConfiguration
  1037. Name="Debug|Win32"
  1038. >
  1039. <Tool
  1040. Name="VCCLCompilerTool"
  1041. PreprocessorDefinitions=""
  1042. />
  1043. </FileConfiguration>
  1044. <FileConfiguration
  1045. Name="Release|Win32"
  1046. >
  1047. <Tool
  1048. Name="VCCLCompilerTool"
  1049. PreprocessorDefinitions=""
  1050. />
  1051. </FileConfiguration>
  1052. </File>
  1053. <File
  1054. RelativePath="MyMdi.h"
  1055. >
  1056. </File>
  1057. <File
  1058. RelativePath="ompanyInfo.cpp"
  1059. >
  1060. <FileConfiguration
  1061. Name="Debug|Win32"
  1062. >
  1063. <Tool
  1064. Name="VCCLCompilerTool"
  1065. PreprocessorDefinitions=""
  1066. />
  1067. </FileConfiguration>
  1068. <FileConfiguration
  1069. Name="Release|Win32"
  1070. >
  1071. <Tool
  1072. Name="VCCLCompilerTool"
  1073. PreprocessorDefinitions=""
  1074. />
  1075. </FileConfiguration>
  1076. </File>
  1077. <File
  1078. RelativePath="PhotoBak.cpp"
  1079. >
  1080. <FileConfiguration
  1081. Name="Debug|Win32"
  1082. >
  1083. <Tool
  1084. Name="VCCLCompilerTool"
  1085. PreprocessorDefinitions=""
  1086. />
  1087. </FileConfiguration>
  1088. <FileConfiguration
  1089. Name="Release|Win32"
  1090. >
  1091. <Tool
  1092. Name="VCCLCompilerTool"
  1093. PreprocessorDefinitions=""
  1094. />
  1095. </FileConfiguration>
  1096. </File>
  1097. <File
  1098. RelativePath="PrintPreview.cpp"
  1099. >
  1100. <FileConfiguration
  1101. Name="Debug|Win32"
  1102. >
  1103. <Tool
  1104. Name="VCCLCompilerTool"
  1105. PreprocessorDefinitions=""
  1106. />
  1107. </FileConfiguration>
  1108. <FileConfiguration
  1109. Name="Release|Win32"
  1110. >
  1111. <Tool
  1112. Name="VCCLCompilerTool"
  1113. PreprocessorDefinitions=""
  1114. />
  1115. </FileConfiguration>
  1116. </File>
  1117. <File
  1118. RelativePath="PrintRX.cpp"
  1119. >
  1120. <FileConfiguration
  1121. Name="Debug|Win32"
  1122. >
  1123. <Tool
  1124. Name="VCCLCompilerTool"
  1125. PreprocessorDefinitions=""
  1126. />
  1127. </FileConfiguration>
  1128. <FileConfiguration
  1129. Name="Release|Win32"
  1130. >
  1131. <Tool
  1132. Name="VCCLCompilerTool"
  1133. PreprocessorDefinitions=""
  1134. />
  1135. </FileConfiguration>
  1136. </File>
  1137. <File
  1138. RelativePath="PrintRX.h"
  1139. >
  1140. </File>
  1141. <File
  1142. RelativePath="PropPage2.cpp"
  1143. >
  1144. <FileConfiguration
  1145. Name="Debug|Win32"
  1146. >
  1147. <Tool
  1148. Name="VCCLCompilerTool"
  1149. PreprocessorDefinitions=""
  1150. />
  1151. </FileConfiguration>
  1152. <FileConfiguration
  1153. Name="Release|Win32"
  1154. >
  1155. <Tool
  1156. Name="VCCLCompilerTool"
  1157. PreprocessorDefinitions=""
  1158. />
  1159. </FileConfiguration>
  1160. </File>
  1161. <File
  1162. RelativePath="Psw.cpp"
  1163. >
  1164. <FileConfiguration
  1165. Name="Debug|Win32"
  1166. >
  1167. <Tool
  1168. Name="VCCLCompilerTool"
  1169. PreprocessorDefinitions=""
  1170. />
  1171. </FileConfiguration>
  1172. <FileConfiguration
  1173. Name="Release|Win32"
  1174. >
  1175. <Tool
  1176. Name="VCCLCompilerTool"
  1177. PreprocessorDefinitions=""
  1178. />
  1179. </FileConfiguration>
  1180. </File>
  1181. <File
  1182. RelativePath="SalaryRateSet2.cpp"
  1183. >
  1184. <FileConfiguration
  1185. Name="Debug|Win32"
  1186. >
  1187. <Tool
  1188. Name="VCCLCompilerTool"
  1189. PreprocessorDefinitions=""
  1190. />
  1191. </FileConfiguration>
  1192. <FileConfiguration
  1193. Name="Release|Win32"
  1194. >
  1195. <Tool
  1196. Name="VCCLCompilerTool"
  1197. PreprocessorDefinitions=""
  1198. />
  1199. </FileConfiguration>
  1200. </File>
  1201. <File
  1202. RelativePath="SelBranch.cpp"
  1203. >
  1204. <FileConfiguration
  1205. Name="Debug|Win32"
  1206. >
  1207. <Tool
  1208. Name="VCCLCompilerTool"
  1209. PreprocessorDefinitions=""
  1210. />
  1211. </FileConfiguration>
  1212. <FileConfiguration
  1213. Name="Release|Win32"
  1214. >
  1215. <Tool
  1216. Name="VCCLCompilerTool"
  1217. PreprocessorDefinitions=""
  1218. />
  1219. </FileConfiguration>
  1220. </File>
  1221. <File
  1222. RelativePath="SelContent.cpp"
  1223. >
  1224. <FileConfiguration
  1225. Name="Debug|Win32"
  1226. >
  1227. <Tool
  1228. Name="VCCLCompilerTool"
  1229. PreprocessorDefinitions=""
  1230. />
  1231. </FileConfiguration>
  1232. <FileConfiguration
  1233. Name="Release|Win32"
  1234. >
  1235. <Tool
  1236. Name="VCCLCompilerTool"
  1237. PreprocessorDefinitions=""
  1238. />
  1239. </FileConfiguration>
  1240. </File>
  1241. <File
  1242. RelativePath="SelectPhotoDlg.cpp"
  1243. >
  1244. <FileConfiguration
  1245. Name="Debug|Win32"
  1246. >
  1247. <Tool
  1248. Name="VCCLCompilerTool"
  1249. PreprocessorDefinitions=""
  1250. />
  1251. </FileConfiguration>
  1252. <FileConfiguration
  1253. Name="Release|Win32"
  1254. >
  1255. <Tool
  1256. Name="VCCLCompilerTool"
  1257. PreprocessorDefinitions=""
  1258. />
  1259. </FileConfiguration>
  1260. </File>
  1261. <File
  1262. RelativePath="SelExpendType.cpp"
  1263. >
  1264. <FileConfiguration
  1265. Name="Debug|Win32"
  1266. >
  1267. <Tool
  1268. Name="VCCLCompilerTool"
  1269. PreprocessorDefinitions=""
  1270. />
  1271. </FileConfiguration>
  1272. <FileConfiguration
  1273. Name="Release|Win32"
  1274. >
  1275. <Tool
  1276. Name="VCCLCompilerTool"
  1277. PreprocessorDefinitions=""
  1278. />
  1279. </FileConfiguration>
  1280. </File>
  1281. <File
  1282. RelativePath="SelExportType.cpp"
  1283. >
  1284. <FileConfiguration
  1285. Name="Debug|Win32"
  1286. >
  1287. <Tool
  1288. Name="VCCLCompilerTool"
  1289. PreprocessorDefinitions=""
  1290. />
  1291. </FileConfiguration>
  1292. <FileConfiguration
  1293. Name="Release|Win32"
  1294. >
  1295. <Tool
  1296. Name="VCCLCompilerTool"
  1297. PreprocessorDefinitions=""
  1298. />
  1299. </FileConfiguration>
  1300. </File>
  1301. <File
  1302. RelativePath="SelMemberCardFund.cpp"
  1303. >
  1304. <FileConfiguration
  1305. Name="Debug|Win32"
  1306. >
  1307. <Tool
  1308. Name="VCCLCompilerTool"
  1309. PreprocessorDefinitions=""
  1310. />
  1311. </FileConfiguration>
  1312. <FileConfiguration
  1313. Name="Release|Win32"
  1314. >
  1315. <Tool
  1316. Name="VCCLCompilerTool"
  1317. PreprocessorDefinitions=""
  1318. />
  1319. </FileConfiguration>
  1320. </File>
  1321. <File
  1322. RelativePath="SelMoneyType.cpp"
  1323. >
  1324. <FileConfiguration
  1325. Name="Debug|Win32"
  1326. >
  1327. <Tool
  1328. Name="VCCLCompilerTool"
  1329. PreprocessorDefinitions=""
  1330. />
  1331. </FileConfiguration>
  1332. <FileConfiguration
  1333. Name="Release|Win32"
  1334. >
  1335. <Tool
  1336. Name="VCCLCompilerTool"
  1337. PreprocessorDefinitions=""
  1338. />
  1339. </FileConfiguration>
  1340. </File>
  1341. <File
  1342. RelativePath="SelPayType.cpp"
  1343. >
  1344. <FileConfiguration
  1345. Name="Debug|Win32"
  1346. >
  1347. <Tool
  1348. Name="VCCLCompilerTool"
  1349. PreprocessorDefinitions=""
  1350. />
  1351. </FileConfiguration>
  1352. <FileConfiguration
  1353. Name="Release|Win32"
  1354. >
  1355. <Tool
  1356. Name="VCCLCompilerTool"
  1357. PreprocessorDefinitions=""
  1358. />
  1359. </FileConfiguration>
  1360. </File>
  1361. <File
  1362. RelativePath="SelWaiter2.cpp"
  1363. >
  1364. <FileConfiguration
  1365. Name="Debug|Win32"
  1366. >
  1367. <Tool
  1368. Name="VCCLCompilerTool"
  1369. PreprocessorDefinitions=""
  1370. />
  1371. </FileConfiguration>
  1372. <FileConfiguration
  1373. Name="Release|Win32"
  1374. >
  1375. <Tool
  1376. Name="VCCLCompilerTool"
  1377. PreprocessorDefinitions=""
  1378. />
  1379. </FileConfiguration>
  1380. </File>
  1381. <File
  1382. RelativePath="Set.cpp"
  1383. >
  1384. <FileConfiguration
  1385. Name="Debug|Win32"
  1386. >
  1387. <Tool
  1388. Name="VCCLCompilerTool"
  1389. PreprocessorDefinitions=""
  1390. />
  1391. </FileConfiguration>
  1392. <FileConfiguration
  1393. Name="Release|Win32"
  1394. >
  1395. <Tool
  1396. Name="VCCLCompilerTool"
  1397. PreprocessorDefinitions=""
  1398. />
  1399. </FileConfiguration>
  1400. </File>
  1401. <File
  1402. RelativePath="SetLeftBar.cpp"
  1403. >
  1404. <FileConfiguration
  1405. Name="Debug|Win32"
  1406. >
  1407. <Tool
  1408. Name="VCCLCompilerTool"
  1409. PreprocessorDefinitions=""
  1410. />
  1411. </FileConfiguration>
  1412. <FileConfiguration
  1413. Name="Release|Win32"
  1414. >
  1415. <Tool
  1416. Name="VCCLCompilerTool"
  1417. PreprocessorDefinitions=""
  1418. />
  1419. </FileConfiguration>
  1420. </File>
  1421. <File
  1422. RelativePath="SetPathDlg.cpp"
  1423. >
  1424. <FileConfiguration
  1425. Name="Debug|Win32"
  1426. >
  1427. <Tool
  1428. Name="VCCLCompilerTool"
  1429. PreprocessorDefinitions=""
  1430. />
  1431. </FileConfiguration>
  1432. <FileConfiguration
  1433. Name="Release|Win32"
  1434. >
  1435. <Tool
  1436. Name="VCCLCompilerTool"
  1437. PreprocessorDefinitions=""
  1438. />
  1439. </FileConfiguration>
  1440. </File>
  1441. <File
  1442. RelativePath="SetPathDlg.h"
  1443. >
  1444. </File>
  1445. <File
  1446. RelativePath="SetPathDlg2.cpp"
  1447. >
  1448. <FileConfiguration
  1449. Name="Debug|Win32"
  1450. >
  1451. <Tool
  1452. Name="VCCLCompilerTool"
  1453. PreprocessorDefinitions=""
  1454. />
  1455. </FileConfiguration>
  1456. <FileConfiguration
  1457. Name="Release|Win32"
  1458. >
  1459. <Tool
  1460. Name="VCCLCompilerTool"
  1461. PreprocessorDefinitions=""
  1462. />
  1463. </FileConfiguration>
  1464. </File>
  1465. <File
  1466. RelativePath="SetPathDlg2.h"
  1467. >
  1468. </File>
  1469. <File
  1470. RelativePath="SetPercentAll.cpp"
  1471. >
  1472. <FileConfiguration
  1473. Name="Debug|Win32"
  1474. >
  1475. <Tool
  1476. Name="VCCLCompilerTool"
  1477. PreprocessorDefinitions=""
  1478. />
  1479. </FileConfiguration>
  1480. <FileConfiguration
  1481. Name="Release|Win32"
  1482. >
  1483. <Tool
  1484. Name="VCCLCompilerTool"
  1485. PreprocessorDefinitions=""
  1486. />
  1487. </FileConfiguration>
  1488. </File>
  1489. <File
  1490. RelativePath="SetSalary.cpp"
  1491. >
  1492. <FileConfiguration
  1493. Name="Debug|Win32"
  1494. >
  1495. <Tool
  1496. Name="VCCLCompilerTool"
  1497. PreprocessorDefinitions=""
  1498. />
  1499. </FileConfiguration>
  1500. <FileConfiguration
  1501. Name="Release|Win32"
  1502. >
  1503. <Tool
  1504. Name="VCCLCompilerTool"
  1505. PreprocessorDefinitions=""
  1506. />
  1507. </FileConfiguration>
  1508. </File>
  1509. <File
  1510. RelativePath="SetSalary.h"
  1511. >
  1512. </File>
  1513. <File
  1514. RelativePath="shockwaveflash.cpp"
  1515. >
  1516. <FileConfiguration
  1517. Name="Debug|Win32"
  1518. >
  1519. <Tool
  1520. Name="VCCLCompilerTool"
  1521. PreprocessorDefinitions=""
  1522. />
  1523. </FileConfiguration>
  1524. <FileConfiguration
  1525. Name="Release|Win32"
  1526. >
  1527. <Tool
  1528. Name="VCCLCompilerTool"
  1529. PreprocessorDefinitions=""
  1530. />
  1531. </FileConfiguration>
  1532. </File>
  1533. <File
  1534. RelativePath="ShowBakState.cpp"
  1535. >
  1536. <FileConfiguration
  1537. Name="Debug|Win32"
  1538. >
  1539. <Tool
  1540. Name="VCCLCompilerTool"
  1541. PreprocessorDefinitions=""
  1542. />
  1543. </FileConfiguration>
  1544. <FileConfiguration
  1545. Name="Release|Win32"
  1546. >
  1547. <Tool
  1548. Name="VCCLCompilerTool"
  1549. PreprocessorDefinitions=""
  1550. />
  1551. </FileConfiguration>
  1552. </File>
  1553. <File
  1554. RelativePath="ShowHisSalary.cpp"
  1555. >
  1556. <FileConfiguration
  1557. Name="Debug|Win32"
  1558. >
  1559. <Tool
  1560. Name="VCCLCompilerTool"
  1561. PreprocessorDefinitions=""
  1562. />
  1563. </FileConfiguration>
  1564. <FileConfiguration
  1565. Name="Release|Win32"
  1566. >
  1567. <Tool
  1568. Name="VCCLCompilerTool"
  1569. PreprocessorDefinitions=""
  1570. />
  1571. </FileConfiguration>
  1572. </File>
  1573. <File
  1574. RelativePath="ShowHisSalary.h"
  1575. >
  1576. </File>
  1577. <File
  1578. RelativePath="ShowLOg.cpp"
  1579. >
  1580. <FileConfiguration
  1581. Name="Debug|Win32"
  1582. >
  1583. <Tool
  1584. Name="VCCLCompilerTool"
  1585. PreprocessorDefinitions=""
  1586. />
  1587. </FileConfiguration>
  1588. <FileConfiguration
  1589. Name="Release|Win32"
  1590. >
  1591. <Tool
  1592. Name="VCCLCompilerTool"
  1593. PreprocessorDefinitions=""
  1594. />
  1595. </FileConfiguration>
  1596. </File>
  1597. <File
  1598. RelativePath="ShowMschart.cpp"
  1599. >
  1600. <FileConfiguration
  1601. Name="Debug|Win32"
  1602. >
  1603. <Tool
  1604. Name="VCCLCompilerTool"
  1605. PreprocessorDefinitions=""
  1606. />
  1607. </FileConfiguration>
  1608. <FileConfiguration
  1609. Name="Release|Win32"
  1610. >
  1611. <Tool
  1612. Name="VCCLCompilerTool"
  1613. PreprocessorDefinitions=""
  1614. />
  1615. </FileConfiguration>
  1616. </File>
  1617. <File
  1618. RelativePath="ShowMsg.cpp"
  1619. >
  1620. <FileConfiguration
  1621. Name="Debug|Win32"
  1622. >
  1623. <Tool
  1624. Name="VCCLCompilerTool"
  1625. PreprocessorDefinitions=""
  1626. />
  1627. </FileConfiguration>
  1628. <FileConfiguration
  1629. Name="Release|Win32"
  1630. >
  1631. <Tool
  1632. Name="VCCLCompilerTool"
  1633. PreprocessorDefinitions=""
  1634. />
  1635. </FileConfiguration>
  1636. </File>
  1637. <File
  1638. RelativePath="ShowMsg2.cpp"
  1639. >
  1640. <FileConfiguration
  1641. Name="Debug|Win32"
  1642. >
  1643. <Tool
  1644. Name="VCCLCompilerTool"
  1645. PreprocessorDefinitions=""
  1646. />
  1647. </FileConfiguration>
  1648. <FileConfiguration
  1649. Name="Release|Win32"
  1650. >
  1651. <Tool
  1652. Name="VCCLCompilerTool"
  1653. PreprocessorDefinitions=""
  1654. />
  1655. </FileConfiguration>
  1656. </File>
  1657. <File
  1658. RelativePath="ShowPhoto.cpp"
  1659. >
  1660. <FileConfiguration
  1661. Name="Debug|Win32"
  1662. >
  1663. <Tool
  1664. Name="VCCLCompilerTool"
  1665. PreprocessorDefinitions=""
  1666. />
  1667. </FileConfiguration>
  1668. <FileConfiguration
  1669. Name="Release|Win32"
  1670. >
  1671. <Tool
  1672. Name="VCCLCompilerTool"
  1673. PreprocessorDefinitions=""
  1674. />
  1675. </FileConfiguration>
  1676. </File>
  1677. <File
  1678. RelativePath="ShowRemark.cpp"
  1679. >
  1680. <FileConfiguration
  1681. Name="Debug|Win32"
  1682. >
  1683. <Tool
  1684. Name="VCCLCompilerTool"
  1685. PreprocessorDefinitions=""
  1686. />
  1687. </FileConfiguration>
  1688. <FileConfiguration
  1689. Name="Release|Win32"
  1690. >
  1691. <Tool
  1692. Name="VCCLCompilerTool"
  1693. PreprocessorDefinitions=""
  1694. />
  1695. </FileConfiguration>
  1696. </File>
  1697. <File
  1698. RelativePath="SqlDlg.cpp"
  1699. >
  1700. <FileConfiguration
  1701. Name="Debug|Win32"
  1702. >
  1703. <Tool
  1704. Name="VCCLCompilerTool"
  1705. PreprocessorDefinitions=""
  1706. />
  1707. </FileConfiguration>
  1708. <FileConfiguration
  1709. Name="Release|Win32"
  1710. >
  1711. <Tool
  1712. Name="VCCLCompilerTool"
  1713. PreprocessorDefinitions=""
  1714. />
  1715. </FileConfiguration>
  1716. </File>
  1717. <File
  1718. RelativePath="StaffAchievementSet.cpp"
  1719. >
  1720. <FileConfiguration
  1721. Name="Debug|Win32"
  1722. >
  1723. <Tool
  1724. Name="VCCLCompilerTool"
  1725. PreprocessorDefinitions=""
  1726. />
  1727. </FileConfiguration>
  1728. <FileConfiguration
  1729. Name="Release|Win32"
  1730. >
  1731. <Tool
  1732. Name="VCCLCompilerTool"
  1733. PreprocessorDefinitions=""
  1734. />
  1735. </FileConfiguration>
  1736. </File>
  1737. <File
  1738. RelativePath="StdAfx.cpp"
  1739. >
  1740. <FileConfiguration
  1741. Name="Debug|Win32"
  1742. >
  1743. <Tool
  1744. Name="VCCLCompilerTool"
  1745. PreprocessorDefinitions=""
  1746. UsePrecompiledHeader="1"
  1747. />
  1748. </FileConfiguration>
  1749. <FileConfiguration
  1750. Name="Release|Win32"
  1751. >
  1752. <Tool
  1753. Name="VCCLCompilerTool"
  1754. PreprocessorDefinitions=""
  1755. UsePrecompiledHeader="1"
  1756. />
  1757. </FileConfiguration>
  1758. </File>
  1759. <File
  1760. RelativePath="TestDlg1.cpp"
  1761. >
  1762. <FileConfiguration
  1763. Name="Debug|Win32"
  1764. >
  1765. <Tool
  1766. Name="VCCLCompilerTool"
  1767. PreprocessorDefinitions=""
  1768. />
  1769. </FileConfiguration>
  1770. <FileConfiguration
  1771. Name="Release|Win32"
  1772. >
  1773. <Tool
  1774. Name="VCCLCompilerTool"
  1775. PreprocessorDefinitions=""
  1776. />
  1777. </FileConfiguration>
  1778. </File>
  1779. <File
  1780. RelativePath="Time5.cpp"
  1781. >
  1782. <FileConfiguration
  1783. Name="Debug|Win32"
  1784. >
  1785. <Tool
  1786. Name="VCCLCompilerTool"
  1787. PreprocessorDefinitions=""
  1788. />
  1789. </FileConfiguration>
  1790. <FileConfiguration
  1791. Name="Release|Win32"
  1792. >
  1793. <Tool
  1794. Name="VCCLCompilerTool"
  1795. PreprocessorDefinitions=""
  1796. />
  1797. </FileConfiguration>
  1798. </File>
  1799. <File
  1800. RelativePath="TimeOutDlg.cpp"
  1801. >
  1802. <FileConfiguration
  1803. Name="Debug|Win32"
  1804. >
  1805. <Tool
  1806. Name="VCCLCompilerTool"
  1807. PreprocessorDefinitions=""
  1808. />
  1809. </FileConfiguration>
  1810. <FileConfiguration
  1811. Name="Release|Win32"
  1812. >
  1813. <Tool
  1814. Name="VCCLCompilerTool"
  1815. PreprocessorDefinitions=""
  1816. />
  1817. </FileConfiguration>
  1818. </File>
  1819. <File
  1820. RelativePath="TodayBar.cpp"
  1821. >
  1822. <FileConfiguration
  1823. Name="Debug|Win32"
  1824. >
  1825. <Tool
  1826. Name="VCCLCompilerTool"
  1827. PreprocessorDefinitions=""
  1828. />
  1829. </FileConfiguration>
  1830. <FileConfiguration
  1831. Name="Release|Win32"
  1832. >
  1833. <Tool
  1834. Name="VCCLCompilerTool"
  1835. PreprocessorDefinitions=""
  1836. />
  1837. </FileConfiguration>
  1838. </File>
  1839. <File
  1840. RelativePath="TodayBar.h"
  1841. >
  1842. </File>
  1843. <File
  1844. RelativePath="TXFG.cpp"
  1845. >
  1846. <FileConfiguration
  1847. Name="Debug|Win32"
  1848. >
  1849. <Tool
  1850. Name="VCCLCompilerTool"
  1851. PreprocessorDefinitions=""
  1852. />
  1853. </FileConfiguration>
  1854. <FileConfiguration
  1855. Name="Release|Win32"
  1856. >
  1857. <Tool
  1858. Name="VCCLCompilerTool"
  1859. PreprocessorDefinitions=""
  1860. />
  1861. </FileConfiguration>
  1862. </File>
  1863. <File
  1864. RelativePath="TXFG.h"
  1865. >
  1866. </File>
  1867. <File
  1868. RelativePath="UploadDes.cpp"
  1869. >
  1870. <FileConfiguration
  1871. Name="Debug|Win32"
  1872. >
  1873. <Tool
  1874. Name="VCCLCompilerTool"
  1875. PreprocessorDefinitions=""
  1876. />
  1877. </FileConfiguration>
  1878. <FileConfiguration
  1879. Name="Release|Win32"
  1880. >
  1881. <Tool
  1882. Name="VCCLCompilerTool"
  1883. PreprocessorDefinitions=""
  1884. />
  1885. </FileConfiguration>
  1886. </File>
  1887. <File
  1888. RelativePath="Welcome.cpp"
  1889. >
  1890. <FileConfiguration
  1891. Name="Debug|Win32"
  1892. >
  1893. <Tool
  1894. Name="VCCLCompilerTool"
  1895. PreprocessorDefinitions=""
  1896. />
  1897. </FileConfiguration>
  1898. <FileConfiguration
  1899. Name="Release|Win32"
  1900. >
  1901. <Tool
  1902. Name="VCCLCompilerTool"
  1903. PreprocessorDefinitions=""
  1904. />
  1905. </FileConfiguration>
  1906. </File>
  1907. <File
  1908. RelativePath="Welcome.h"
  1909. >
  1910. </File>
  1911. <File
  1912. RelativePath="YLGL.cpp"
  1913. >
  1914. <FileConfiguration
  1915. Name="Debug|Win32"
  1916. >
  1917. <Tool
  1918. Name="VCCLCompilerTool"
  1919. PreprocessorDefinitions=""
  1920. />
  1921. </FileConfiguration>
  1922. <FileConfiguration
  1923. Name="Release|Win32"
  1924. >
  1925. <Tool
  1926. Name="VCCLCompilerTool"
  1927. PreprocessorDefinitions=""
  1928. />
  1929. </FileConfiguration>
  1930. </File>
  1931. <File
  1932. RelativePath="YLGL.rc"
  1933. >
  1934. <FileConfiguration
  1935. Name="Debug|Win32"
  1936. >
  1937. <Tool
  1938. Name="VCResourceCompilerTool"
  1939. PreprocessorDefinitions=""
  1940. />
  1941. </FileConfiguration>
  1942. <FileConfiguration
  1943. Name="Release|Win32"
  1944. >
  1945. <Tool
  1946. Name="VCResourceCompilerTool"
  1947. PreprocessorDefinitions=""
  1948. />
  1949. </FileConfiguration>
  1950. </File>
  1951. <File
  1952. RelativePath="YLGLDoc.cpp"
  1953. >
  1954. <FileConfiguration
  1955. Name="Debug|Win32"
  1956. >
  1957. <Tool
  1958. Name="VCCLCompilerTool"
  1959. PreprocessorDefinitions=""
  1960. />
  1961. </FileConfiguration>
  1962. <FileConfiguration
  1963. Name="Release|Win32"
  1964. >
  1965. <Tool
  1966. Name="VCCLCompilerTool"
  1967. PreprocessorDefinitions=""
  1968. />
  1969. </FileConfiguration>
  1970. </File>
  1971. <File
  1972. RelativePath="YLGLView.cpp"
  1973. >
  1974. <FileConfiguration
  1975. Name="Debug|Win32"
  1976. >
  1977. <Tool
  1978. Name="VCCLCompilerTool"
  1979. PreprocessorDefinitions=""
  1980. />
  1981. </FileConfiguration>
  1982. <FileConfiguration
  1983. Name="Release|Win32"
  1984. >
  1985. <Tool
  1986. Name="VCCLCompilerTool"
  1987. PreprocessorDefinitions=""
  1988. />
  1989. </FileConfiguration>
  1990. </File>
  1991. <File
  1992. RelativePath="ZipTypeDlg.cpp"
  1993. >
  1994. <FileConfiguration
  1995. Name="Debug|Win32"
  1996. >
  1997. <Tool
  1998. Name="VCCLCompilerTool"
  1999. PreprocessorDefinitions=""
  2000. />
  2001. </FileConfiguration>
  2002. <FileConfiguration
  2003. Name="Release|Win32"
  2004. >
  2005. <Tool
  2006. Name="VCCLCompilerTool"
  2007. PreprocessorDefinitions=""
  2008. />
  2009. </FileConfiguration>
  2010. </File>
  2011. <Filter
  2012. Name="OutBarCtrl"
  2013. >
  2014. <File
  2015. RelativePath="MySplitterWnd.cpp"
  2016. >
  2017. <FileConfiguration
  2018. Name="Debug|Win32"
  2019. >
  2020. <Tool
  2021. Name="VCCLCompilerTool"
  2022. PreprocessorDefinitions=""
  2023. />
  2024. </FileConfiguration>
  2025. <FileConfiguration
  2026. Name="Release|Win32"
  2027. >
  2028. <Tool
  2029. Name="VCCLCompilerTool"
  2030. PreprocessorDefinitions=""
  2031. />
  2032. </FileConfiguration>
  2033. </File>
  2034. <File
  2035. RelativePath="MySplitterWnd.h"
  2036. >
  2037. </File>
  2038. <File
  2039. RelativePath="XTMemDC.cpp"
  2040. >
  2041. <FileConfiguration
  2042. Name="Debug|Win32"
  2043. >
  2044. <Tool
  2045. Name="VCCLCompilerTool"
  2046. PreprocessorDefinitions=""
  2047. />
  2048. </FileConfiguration>
  2049. <FileConfiguration
  2050. Name="Release|Win32"
  2051. >
  2052. <Tool
  2053. Name="VCCLCompilerTool"
  2054. PreprocessorDefinitions=""
  2055. />
  2056. </FileConfiguration>
  2057. </File>
  2058. <File
  2059. RelativePath="XTMemDC.h"
  2060. >
  2061. </File>
  2062. <File
  2063. RelativePath="XTOutBarCtrl.cpp"
  2064. >
  2065. <FileConfiguration
  2066. Name="Debug|Win32"
  2067. >
  2068. <Tool
  2069. Name="VCCLCompilerTool"
  2070. PreprocessorDefinitions=""
  2071. />
  2072. </FileConfiguration>
  2073. <FileConfiguration
  2074. Name="Release|Win32"
  2075. >
  2076. <Tool
  2077. Name="VCCLCompilerTool"
  2078. PreprocessorDefinitions=""
  2079. />
  2080. </FileConfiguration>
  2081. </File>
  2082. <File
  2083. RelativePath="XTOutBarCtrl.h"
  2084. >
  2085. </File>
  2086. </Filter>
  2087. <Filter
  2088. Name="ListCtrl"
  2089. >
  2090. <File
  2091. RelativePath="list\SortHeaderCtrl.cpp"
  2092. >
  2093. <FileConfiguration
  2094. Name="Debug|Win32"
  2095. >
  2096. <Tool
  2097. Name="VCCLCompilerTool"
  2098. PreprocessorDefinitions=""
  2099. />
  2100. </FileConfiguration>
  2101. <FileConfiguration
  2102. Name="Release|Win32"
  2103. >
  2104. <Tool
  2105. Name="VCCLCompilerTool"
  2106. PreprocessorDefinitions=""
  2107. />
  2108. </FileConfiguration>
  2109. </File>
  2110. <File
  2111. RelativePath="list\SortHeaderCtrl.h"
  2112. >
  2113. </File>
  2114. <File
  2115. RelativePath="list\SortHeaderCtrl2.cpp"
  2116. >
  2117. <FileConfiguration
  2118. Name="Debug|Win32"
  2119. >
  2120. <Tool
  2121. Name="VCCLCompilerTool"
  2122. PreprocessorDefinitions=""
  2123. />
  2124. </FileConfiguration>
  2125. <FileConfiguration
  2126. Name="Release|Win32"
  2127. >
  2128. <Tool
  2129. Name="VCCLCompilerTool"
  2130. PreprocessorDefinitions=""
  2131. />
  2132. </FileConfiguration>
  2133. </File>
  2134. <File
  2135. RelativePath="list\SortHeaderCtrl2.h"
  2136. >
  2137. </File>
  2138. <File
  2139. RelativePath="list\SortListCtrl.cpp"
  2140. >
  2141. <FileConfiguration
  2142. Name="Debug|Win32"
  2143. >
  2144. <Tool
  2145. Name="VCCLCompilerTool"
  2146. PreprocessorDefinitions=""
  2147. />
  2148. </FileConfiguration>
  2149. <FileConfiguration
  2150. Name="Release|Win32"
  2151. >
  2152. <Tool
  2153. Name="VCCLCompilerTool"
  2154. PreprocessorDefinitions=""
  2155. />
  2156. </FileConfiguration>
  2157. </File>
  2158. <File
  2159. RelativePath="list\SortListCtrl.h"
  2160. >
  2161. </File>
  2162. <File
  2163. RelativePath="list\SortListCtrl2.cpp"
  2164. >
  2165. <FileConfiguration
  2166. Name="Debug|Win32"
  2167. >
  2168. <Tool
  2169. Name="VCCLCompilerTool"
  2170. PreprocessorDefinitions=""
  2171. />
  2172. </FileConfiguration>
  2173. <FileConfiguration
  2174. Name="Release|Win32"
  2175. >
  2176. <Tool
  2177. Name="VCCLCompilerTool"
  2178. PreprocessorDefinitions=""
  2179. />
  2180. </FileConfiguration>
  2181. </File>
  2182. <File
  2183. RelativePath="list\SortListCtrl2.h"
  2184. >
  2185. </File>
  2186. <File
  2187. RelativePath="list\SortListCtrl3.cpp"
  2188. >
  2189. <FileConfiguration
  2190. Name="Debug|Win32"
  2191. >
  2192. <Tool
  2193. Name="VCCLCompilerTool"
  2194. PreprocessorDefinitions=""
  2195. />
  2196. </FileConfiguration>
  2197. <FileConfiguration
  2198. Name="Release|Win32"
  2199. >
  2200. <Tool
  2201. Name="VCCLCompilerTool"
  2202. PreprocessorDefinitions=""
  2203. />
  2204. </FileConfiguration>
  2205. </File>
  2206. <File
  2207. RelativePath="list\SortListCtrl3.h"
  2208. >
  2209. </File>
  2210. </Filter>
  2211. <Filter
  2212. Name="部门设置"
  2213. >
  2214. <File
  2215. RelativePath="BuMenDlg.cpp"
  2216. >
  2217. <FileConfiguration
  2218. Name="Debug|Win32"
  2219. >
  2220. <Tool
  2221. Name="VCCLCompilerTool"
  2222. PreprocessorDefinitions=""
  2223. />
  2224. </FileConfiguration>
  2225. <FileConfiguration
  2226. Name="Release|Win32"
  2227. >
  2228. <Tool
  2229. Name="VCCLCompilerTool"
  2230. PreprocessorDefinitions=""
  2231. />
  2232. </FileConfiguration>
  2233. </File>
  2234. <File
  2235. RelativePath="BuMenDlg.h"
  2236. >
  2237. </File>
  2238. </Filter>
  2239. <Filter
  2240. Name="套系设置"
  2241. >
  2242. <File
  2243. RelativePath="TXDlg.cpp"
  2244. >
  2245. <FileConfiguration
  2246. Name="Debug|Win32"
  2247. >
  2248. <Tool
  2249. Name="VCCLCompilerTool"
  2250. PreprocessorDefinitions=""
  2251. />
  2252. </FileConfiguration>
  2253. <FileConfiguration
  2254. Name="Release|Win32"
  2255. >
  2256. <Tool
  2257. Name="VCCLCompilerTool"
  2258. PreprocessorDefinitions=""
  2259. />
  2260. </FileConfiguration>
  2261. </File>
  2262. <File
  2263. RelativePath="TXDlg.h"
  2264. >
  2265. </File>
  2266. <File
  2267. RelativePath="TXSPDlg.cpp"
  2268. >
  2269. <FileConfiguration
  2270. Name="Debug|Win32"
  2271. >
  2272. <Tool
  2273. Name="VCCLCompilerTool"
  2274. PreprocessorDefinitions=""
  2275. />
  2276. </FileConfiguration>
  2277. <FileConfiguration
  2278. Name="Release|Win32"
  2279. >
  2280. <Tool
  2281. Name="VCCLCompilerTool"
  2282. PreprocessorDefinitions=""
  2283. />
  2284. </FileConfiguration>
  2285. </File>
  2286. <File
  2287. RelativePath="TXSPDlg.h"
  2288. >
  2289. </File>
  2290. </Filter>
  2291. <Filter
  2292. Name="EditListCtrl"
  2293. >
  2294. <File
  2295. RelativePath="CheckBoxListCtrl.cpp"
  2296. >
  2297. <FileConfiguration
  2298. Name="Debug|Win32"
  2299. >
  2300. <Tool
  2301. Name="VCCLCompilerTool"
  2302. PreprocessorDefinitions=""
  2303. />
  2304. </FileConfiguration>
  2305. <FileConfiguration
  2306. Name="Release|Win32"
  2307. >
  2308. <Tool
  2309. Name="VCCLCompilerTool"
  2310. PreprocessorDefinitions=""
  2311. />
  2312. </FileConfiguration>
  2313. </File>
  2314. <File
  2315. RelativePath="CheckBoxListCtrl.h"
  2316. >
  2317. </File>
  2318. <File
  2319. RelativePath="ComboListCtrl.cpp"
  2320. >
  2321. <FileConfiguration
  2322. Name="Debug|Win32"
  2323. >
  2324. <Tool
  2325. Name="VCCLCompilerTool"
  2326. PreprocessorDefinitions=""
  2327. />
  2328. </FileConfiguration>
  2329. <FileConfiguration
  2330. Name="Release|Win32"
  2331. >
  2332. <Tool
  2333. Name="VCCLCompilerTool"
  2334. PreprocessorDefinitions=""
  2335. />
  2336. </FileConfiguration>
  2337. </File>
  2338. <File
  2339. RelativePath="ComboListCtrl.h"
  2340. >
  2341. </File>
  2342. <File
  2343. RelativePath="ComboListCtrl2.cpp"
  2344. >
  2345. <FileConfiguration
  2346. Name="Debug|Win32"
  2347. >
  2348. <Tool
  2349. Name="VCCLCompilerTool"
  2350. PreprocessorDefinitions=""
  2351. />
  2352. </FileConfiguration>
  2353. <FileConfiguration
  2354. Name="Release|Win32"
  2355. >
  2356. <Tool
  2357. Name="VCCLCompilerTool"
  2358. PreprocessorDefinitions=""
  2359. />
  2360. </FileConfiguration>
  2361. </File>
  2362. <File
  2363. RelativePath="ComboListCtrl2.h"
  2364. >
  2365. </File>
  2366. <File
  2367. RelativePath="ComboListCtrl3.cpp"
  2368. >
  2369. <FileConfiguration
  2370. Name="Debug|Win32"
  2371. >
  2372. <Tool
  2373. Name="VCCLCompilerTool"
  2374. PreprocessorDefinitions=""
  2375. />
  2376. </FileConfiguration>
  2377. <FileConfiguration
  2378. Name="Release|Win32"
  2379. >
  2380. <Tool
  2381. Name="VCCLCompilerTool"
  2382. PreprocessorDefinitions=""
  2383. />
  2384. </FileConfiguration>
  2385. </File>
  2386. <File
  2387. RelativePath="ComboListCtrl3.h"
  2388. >
  2389. </File>
  2390. <File
  2391. RelativePath="ComboListCtrl4.cpp"
  2392. >
  2393. <FileConfiguration
  2394. Name="Debug|Win32"
  2395. >
  2396. <Tool
  2397. Name="VCCLCompilerTool"
  2398. PreprocessorDefinitions=""
  2399. />
  2400. </FileConfiguration>
  2401. <FileConfiguration
  2402. Name="Release|Win32"
  2403. >
  2404. <Tool
  2405. Name="VCCLCompilerTool"
  2406. PreprocessorDefinitions=""
  2407. />
  2408. </FileConfiguration>
  2409. </File>
  2410. <File
  2411. RelativePath="ComboListCtrl4.h"
  2412. >
  2413. </File>
  2414. <File
  2415. RelativePath="ComboListCtrl5.cpp"
  2416. >
  2417. <FileConfiguration
  2418. Name="Debug|Win32"
  2419. >
  2420. <Tool
  2421. Name="VCCLCompilerTool"
  2422. PreprocessorDefinitions=""
  2423. />
  2424. </FileConfiguration>
  2425. <FileConfiguration
  2426. Name="Release|Win32"
  2427. >
  2428. <Tool
  2429. Name="VCCLCompilerTool"
  2430. PreprocessorDefinitions=""
  2431. />
  2432. </FileConfiguration>
  2433. </File>
  2434. <File
  2435. RelativePath="ComboListCtrl5.h"
  2436. >
  2437. </File>
  2438. <File
  2439. RelativePath="ComboListCtrl6.cpp"
  2440. >
  2441. <FileConfiguration
  2442. Name="Debug|Win32"
  2443. >
  2444. <Tool
  2445. Name="VCCLCompilerTool"
  2446. PreprocessorDefinitions=""
  2447. />
  2448. </FileConfiguration>
  2449. <FileConfiguration
  2450. Name="Release|Win32"
  2451. >
  2452. <Tool
  2453. Name="VCCLCompilerTool"
  2454. PreprocessorDefinitions=""
  2455. />
  2456. </FileConfiguration>
  2457. </File>
  2458. <File
  2459. RelativePath="ComboListCtrl6.h"
  2460. >
  2461. </File>
  2462. <File
  2463. RelativePath="EditListCtrl.cpp"
  2464. >
  2465. <FileConfiguration
  2466. Name="Debug|Win32"
  2467. >
  2468. <Tool
  2469. Name="VCCLCompilerTool"
  2470. PreprocessorDefinitions=""
  2471. />
  2472. </FileConfiguration>
  2473. <FileConfiguration
  2474. Name="Release|Win32"
  2475. >
  2476. <Tool
  2477. Name="VCCLCompilerTool"
  2478. PreprocessorDefinitions=""
  2479. />
  2480. </FileConfiguration>
  2481. </File>
  2482. <File
  2483. RelativePath="EditListCtrl.h"
  2484. >
  2485. </File>
  2486. <File
  2487. RelativePath="EditListCtrl2.cpp"
  2488. >
  2489. <FileConfiguration
  2490. Name="Debug|Win32"
  2491. >
  2492. <Tool
  2493. Name="VCCLCompilerTool"
  2494. PreprocessorDefinitions=""
  2495. />
  2496. </FileConfiguration>
  2497. <FileConfiguration
  2498. Name="Release|Win32"
  2499. >
  2500. <Tool
  2501. Name="VCCLCompilerTool"
  2502. PreprocessorDefinitions=""
  2503. />
  2504. </FileConfiguration>
  2505. </File>
  2506. <File
  2507. RelativePath="EditListCtrl2.h"
  2508. >
  2509. </File>
  2510. </Filter>
  2511. <Filter
  2512. Name="员工设置"
  2513. >
  2514. <File
  2515. RelativePath="Account.cpp"
  2516. >
  2517. <FileConfiguration
  2518. Name="Debug|Win32"
  2519. >
  2520. <Tool
  2521. Name="VCCLCompilerTool"
  2522. PreprocessorDefinitions=""
  2523. />
  2524. </FileConfiguration>
  2525. <FileConfiguration
  2526. Name="Release|Win32"
  2527. >
  2528. <Tool
  2529. Name="VCCLCompilerTool"
  2530. PreprocessorDefinitions=""
  2531. />
  2532. </FileConfiguration>
  2533. </File>
  2534. <File
  2535. RelativePath="Account.h"
  2536. >
  2537. </File>
  2538. <File
  2539. RelativePath="EmployeeForm.cpp"
  2540. >
  2541. <FileConfiguration
  2542. Name="Debug|Win32"
  2543. >
  2544. <Tool
  2545. Name="VCCLCompilerTool"
  2546. PreprocessorDefinitions=""
  2547. />
  2548. </FileConfiguration>
  2549. <FileConfiguration
  2550. Name="Release|Win32"
  2551. >
  2552. <Tool
  2553. Name="VCCLCompilerTool"
  2554. PreprocessorDefinitions=""
  2555. />
  2556. </FileConfiguration>
  2557. </File>
  2558. <File
  2559. RelativePath="EmployeeForm.h"
  2560. >
  2561. </File>
  2562. <File
  2563. RelativePath="EmployeeForm2.cpp"
  2564. >
  2565. <FileConfiguration
  2566. Name="Debug|Win32"
  2567. >
  2568. <Tool
  2569. Name="VCCLCompilerTool"
  2570. PreprocessorDefinitions=""
  2571. />
  2572. </FileConfiguration>
  2573. <FileConfiguration
  2574. Name="Release|Win32"
  2575. >
  2576. <Tool
  2577. Name="VCCLCompilerTool"
  2578. PreprocessorDefinitions=""
  2579. />
  2580. </FileConfiguration>
  2581. </File>
  2582. <File
  2583. RelativePath="EmployeeForm2.h"
  2584. >
  2585. </File>
  2586. <File
  2587. RelativePath="Worker.cpp"
  2588. >
  2589. <FileConfiguration
  2590. Name="Debug|Win32"
  2591. >
  2592. <Tool
  2593. Name="VCCLCompilerTool"
  2594. PreprocessorDefinitions=""
  2595. />
  2596. </FileConfiguration>
  2597. <FileConfiguration
  2598. Name="Release|Win32"
  2599. >
  2600. <Tool
  2601. Name="VCCLCompilerTool"
  2602. PreprocessorDefinitions=""
  2603. />
  2604. </FileConfiguration>
  2605. </File>
  2606. <File
  2607. RelativePath="Worker.h"
  2608. >
  2609. </File>
  2610. </Filter>
  2611. <Filter
  2612. Name="固定费用"
  2613. >
  2614. <File
  2615. RelativePath="PayOutInput.cpp"
  2616. >
  2617. <FileConfiguration
  2618. Name="Debug|Win32"
  2619. >
  2620. <Tool
  2621. Name="VCCLCompilerTool"
  2622. PreprocessorDefinitions=""
  2623. />
  2624. </FileConfiguration>
  2625. <FileConfiguration
  2626. Name="Release|Win32"
  2627. >
  2628. <Tool
  2629. Name="VCCLCompilerTool"
  2630. PreprocessorDefinitions=""
  2631. />
  2632. </FileConfiguration>
  2633. </File>
  2634. <File
  2635. RelativePath="PayOutInput.h"
  2636. >
  2637. </File>
  2638. <File
  2639. RelativePath="PayOutSet.cpp"
  2640. >
  2641. <FileConfiguration
  2642. Name="Debug|Win32"
  2643. >
  2644. <Tool
  2645. Name="VCCLCompilerTool"
  2646. PreprocessorDefinitions=""
  2647. />
  2648. </FileConfiguration>
  2649. <FileConfiguration
  2650. Name="Release|Win32"
  2651. >
  2652. <Tool
  2653. Name="VCCLCompilerTool"
  2654. PreprocessorDefinitions=""
  2655. />
  2656. </FileConfiguration>
  2657. </File>
  2658. <File
  2659. RelativePath="PayOutSet.h"
  2660. >
  2661. </File>
  2662. </Filter>
  2663. <Filter
  2664. Name="单项收入"
  2665. >
  2666. <File
  2667. RelativePath="AddIncome.cpp"
  2668. >
  2669. <FileConfiguration
  2670. Name="Debug|Win32"
  2671. >
  2672. <Tool
  2673. Name="VCCLCompilerTool"
  2674. PreprocessorDefinitions=""
  2675. />
  2676. </FileConfiguration>
  2677. <FileConfiguration
  2678. Name="Release|Win32"
  2679. >
  2680. <Tool
  2681. Name="VCCLCompilerTool"
  2682. PreprocessorDefinitions=""
  2683. />
  2684. </FileConfiguration>
  2685. </File>
  2686. <File
  2687. RelativePath="AddIncome.h"
  2688. >
  2689. </File>
  2690. <File
  2691. RelativePath="IncomeInput.cpp"
  2692. >
  2693. <FileConfiguration
  2694. Name="Debug|Win32"
  2695. >
  2696. <Tool
  2697. Name="VCCLCompilerTool"
  2698. PreprocessorDefinitions=""
  2699. />
  2700. </FileConfiguration>
  2701. <FileConfiguration
  2702. Name="Release|Win32"
  2703. >
  2704. <Tool
  2705. Name="VCCLCompilerTool"
  2706. PreprocessorDefinitions=""
  2707. />
  2708. </FileConfiguration>
  2709. </File>
  2710. <File
  2711. RelativePath="IncomeInput.h"
  2712. >
  2713. </File>
  2714. <File
  2715. RelativePath="IncomeInput2.cpp"
  2716. >
  2717. <FileConfiguration
  2718. Name="Debug|Win32"
  2719. >
  2720. <Tool
  2721. Name="VCCLCompilerTool"
  2722. PreprocessorDefinitions=""
  2723. />
  2724. </FileConfiguration>
  2725. <FileConfiguration
  2726. Name="Release|Win32"
  2727. >
  2728. <Tool
  2729. Name="VCCLCompilerTool"
  2730. PreprocessorDefinitions=""
  2731. />
  2732. </FileConfiguration>
  2733. </File>
  2734. <File
  2735. RelativePath="IncomeInput2.h"
  2736. >
  2737. </File>
  2738. <File
  2739. RelativePath="IncomeInput3.cpp"
  2740. >
  2741. <FileConfiguration
  2742. Name="Debug|Win32"
  2743. >
  2744. <Tool
  2745. Name="VCCLCompilerTool"
  2746. PreprocessorDefinitions=""
  2747. />
  2748. </FileConfiguration>
  2749. <FileConfiguration
  2750. Name="Release|Win32"
  2751. >
  2752. <Tool
  2753. Name="VCCLCompilerTool"
  2754. PreprocessorDefinitions=""
  2755. />
  2756. </FileConfiguration>
  2757. </File>
  2758. <File
  2759. RelativePath="IncomeInput3.h"
  2760. >
  2761. </File>
  2762. <File
  2763. RelativePath="IncomeInput4.cpp"
  2764. >
  2765. <FileConfiguration
  2766. Name="Debug|Win32"
  2767. >
  2768. <Tool
  2769. Name="VCCLCompilerTool"
  2770. PreprocessorDefinitions=""
  2771. />
  2772. </FileConfiguration>
  2773. <FileConfiguration
  2774. Name="Release|Win32"
  2775. >
  2776. <Tool
  2777. Name="VCCLCompilerTool"
  2778. PreprocessorDefinitions=""
  2779. />
  2780. </FileConfiguration>
  2781. </File>
  2782. <File
  2783. RelativePath="IncomeInput4.h"
  2784. >
  2785. </File>
  2786. <File
  2787. RelativePath="Other2SaleChart.cpp"
  2788. >
  2789. <FileConfiguration
  2790. Name="Debug|Win32"
  2791. >
  2792. <Tool
  2793. Name="VCCLCompilerTool"
  2794. PreprocessorDefinitions=""
  2795. />
  2796. </FileConfiguration>
  2797. <FileConfiguration
  2798. Name="Release|Win32"
  2799. >
  2800. <Tool
  2801. Name="VCCLCompilerTool"
  2802. PreprocessorDefinitions=""
  2803. />
  2804. </FileConfiguration>
  2805. </File>
  2806. <File
  2807. RelativePath="Other2SaleChart.h"
  2808. >
  2809. </File>
  2810. <File
  2811. RelativePath="SearchFilter4.cpp"
  2812. >
  2813. <FileConfiguration
  2814. Name="Debug|Win32"
  2815. >
  2816. <Tool
  2817. Name="VCCLCompilerTool"
  2818. PreprocessorDefinitions=""
  2819. />
  2820. </FileConfiguration>
  2821. <FileConfiguration
  2822. Name="Release|Win32"
  2823. >
  2824. <Tool
  2825. Name="VCCLCompilerTool"
  2826. PreprocessorDefinitions=""
  2827. />
  2828. </FileConfiguration>
  2829. </File>
  2830. <File
  2831. RelativePath="SearchFilter4.h"
  2832. >
  2833. </File>
  2834. <File
  2835. RelativePath="Singleincomemoney.cpp"
  2836. >
  2837. <FileConfiguration
  2838. Name="Debug|Win32"
  2839. >
  2840. <Tool
  2841. Name="VCCLCompilerTool"
  2842. PreprocessorDefinitions=""
  2843. />
  2844. </FileConfiguration>
  2845. <FileConfiguration
  2846. Name="Release|Win32"
  2847. >
  2848. <Tool
  2849. Name="VCCLCompilerTool"
  2850. PreprocessorDefinitions=""
  2851. />
  2852. </FileConfiguration>
  2853. </File>
  2854. <File
  2855. RelativePath="Singleincomemoney.h"
  2856. >
  2857. </File>
  2858. </Filter>
  2859. <Filter
  2860. Name="Ctrls"
  2861. >
  2862. <File
  2863. RelativePath="DateEdit.cpp"
  2864. >
  2865. <FileConfiguration
  2866. Name="Debug|Win32"
  2867. >
  2868. <Tool
  2869. Name="VCCLCompilerTool"
  2870. PreprocessorDefinitions=""
  2871. />
  2872. </FileConfiguration>
  2873. <FileConfiguration
  2874. Name="Release|Win32"
  2875. >
  2876. <Tool
  2877. Name="VCCLCompilerTool"
  2878. PreprocessorDefinitions=""
  2879. />
  2880. </FileConfiguration>
  2881. </File>
  2882. <File
  2883. RelativePath="DateEdit.h"
  2884. >
  2885. </File>
  2886. <File
  2887. RelativePath="NumEdit.cpp"
  2888. >
  2889. <FileConfiguration
  2890. Name="Debug|Win32"
  2891. >
  2892. <Tool
  2893. Name="VCCLCompilerTool"
  2894. PreprocessorDefinitions=""
  2895. />
  2896. </FileConfiguration>
  2897. <FileConfiguration
  2898. Name="Release|Win32"
  2899. >
  2900. <Tool
  2901. Name="VCCLCompilerTool"
  2902. PreprocessorDefinitions=""
  2903. />
  2904. </FileConfiguration>
  2905. </File>
  2906. <File
  2907. RelativePath="NumEdit.h"
  2908. >
  2909. </File>
  2910. <File
  2911. RelativePath="vcaxis.cpp"
  2912. >
  2913. <FileConfiguration
  2914. Name="Debug|Win32"
  2915. >
  2916. <Tool
  2917. Name="VCCLCompilerTool"
  2918. PreprocessorDefinitions=""
  2919. />
  2920. </FileConfiguration>
  2921. <FileConfiguration
  2922. Name="Release|Win32"
  2923. >
  2924. <Tool
  2925. Name="VCCLCompilerTool"
  2926. PreprocessorDefinitions=""
  2927. />
  2928. </FileConfiguration>
  2929. </File>
  2930. <File
  2931. RelativePath="vcaxis.h"
  2932. >
  2933. </File>
  2934. <File
  2935. RelativePath="vcaxisgrid.cpp"
  2936. >
  2937. <FileConfiguration
  2938. Name="Debug|Win32"
  2939. >
  2940. <Tool
  2941. Name="VCCLCompilerTool"
  2942. PreprocessorDefinitions=""
  2943. />
  2944. </FileConfiguration>
  2945. <FileConfiguration
  2946. Name="Release|Win32"
  2947. >
  2948. <Tool
  2949. Name="VCCLCompilerTool"
  2950. PreprocessorDefinitions=""
  2951. />
  2952. </FileConfiguration>
  2953. </File>
  2954. <File
  2955. RelativePath="vcaxisgrid.h"
  2956. >
  2957. </File>
  2958. <File
  2959. RelativePath="vcaxisscale.cpp"
  2960. >
  2961. <FileConfiguration
  2962. Name="Debug|Win32"
  2963. >
  2964. <Tool
  2965. Name="VCCLCompilerTool"
  2966. PreprocessorDefinitions=""
  2967. />
  2968. </FileConfiguration>
  2969. <FileConfiguration
  2970. Name="Release|Win32"
  2971. >
  2972. <Tool
  2973. Name="VCCLCompilerTool"
  2974. PreprocessorDefinitions=""
  2975. />
  2976. </FileConfiguration>
  2977. </File>
  2978. <File
  2979. RelativePath="vcaxisscale.h"
  2980. >
  2981. </File>
  2982. <File
  2983. RelativePath="vcaxistitle.cpp"
  2984. >
  2985. <FileConfiguration
  2986. Name="Debug|Win32"
  2987. >
  2988. <Tool
  2989. Name="VCCLCompilerTool"
  2990. PreprocessorDefinitions=""
  2991. />
  2992. </FileConfiguration>
  2993. <FileConfiguration
  2994. Name="Release|Win32"
  2995. >
  2996. <Tool
  2997. Name="VCCLCompilerTool"
  2998. PreprocessorDefinitions=""
  2999. />
  3000. </FileConfiguration>
  3001. </File>
  3002. <File
  3003. RelativePath="vcaxistitle.h"
  3004. >
  3005. </File>
  3006. <File
  3007. RelativePath="vcbackdrop.cpp"
  3008. >
  3009. <FileConfiguration
  3010. Name="Debug|Win32"
  3011. >
  3012. <Tool
  3013. Name="VCCLCompilerTool"
  3014. PreprocessorDefinitions=""
  3015. />
  3016. </FileConfiguration>
  3017. <FileConfiguration
  3018. Name="Release|Win32"
  3019. >
  3020. <Tool
  3021. Name="VCCLCompilerTool"
  3022. PreprocessorDefinitions=""
  3023. />
  3024. </FileConfiguration>
  3025. </File>
  3026. <File
  3027. RelativePath="vcbackdrop.h"
  3028. >
  3029. </File>
  3030. <File
  3031. RelativePath="vcbrush.cpp"
  3032. >
  3033. <FileConfiguration
  3034. Name="Debug|Win32"
  3035. >
  3036. <Tool
  3037. Name="VCCLCompilerTool"
  3038. PreprocessorDefinitions=""
  3039. />
  3040. </FileConfiguration>
  3041. <FileConfiguration
  3042. Name="Release|Win32"
  3043. >
  3044. <Tool
  3045. Name="VCCLCompilerTool"
  3046. PreprocessorDefinitions=""
  3047. />
  3048. </FileConfiguration>
  3049. </File>
  3050. <File
  3051. RelativePath="vcbrush.h"
  3052. >
  3053. </File>
  3054. <File
  3055. RelativePath="vccategoryscale.cpp"
  3056. >
  3057. <FileConfiguration
  3058. Name="Debug|Win32"
  3059. >
  3060. <Tool
  3061. Name="VCCLCompilerTool"
  3062. PreprocessorDefinitions=""
  3063. />
  3064. </FileConfiguration>
  3065. <FileConfiguration
  3066. Name="Release|Win32"
  3067. >
  3068. <Tool
  3069. Name="VCCLCompilerTool"
  3070. PreprocessorDefinitions=""
  3071. />
  3072. </FileConfiguration>
  3073. </File>
  3074. <File
  3075. RelativePath="vccategoryscale.h"
  3076. >
  3077. </File>
  3078. <File
  3079. RelativePath="vccolor.cpp"
  3080. >
  3081. <FileConfiguration
  3082. Name="Debug|Win32"
  3083. >
  3084. <Tool
  3085. Name="VCCLCompilerTool"
  3086. PreprocessorDefinitions=""
  3087. />
  3088. </FileConfiguration>
  3089. <FileConfiguration
  3090. Name="Release|Win32"
  3091. >
  3092. <Tool
  3093. Name="VCCLCompilerTool"
  3094. PreprocessorDefinitions=""
  3095. />
  3096. </FileConfiguration>
  3097. </File>
  3098. <File
  3099. RelativePath="vccolor.h"
  3100. >
  3101. </File>
  3102. <File
  3103. RelativePath="vccoor.cpp"
  3104. >
  3105. <FileConfiguration
  3106. Name="Debug|Win32"
  3107. >
  3108. <Tool
  3109. Name="VCCLCompilerTool"
  3110. PreprocessorDefinitions=""
  3111. />
  3112. </FileConfiguration>
  3113. <FileConfiguration
  3114. Name="Release|Win32"
  3115. >
  3116. <Tool
  3117. Name="VCCLCompilerTool"
  3118. PreprocessorDefinitions=""
  3119. />
  3120. </FileConfiguration>
  3121. </File>
  3122. <File
  3123. RelativePath="vccoor.h"
  3124. >
  3125. </File>
  3126. <File
  3127. RelativePath="vcdatagrid.cpp"
  3128. >
  3129. <FileConfiguration
  3130. Name="Debug|Win32"
  3131. >
  3132. <Tool
  3133. Name="VCCLCompilerTool"
  3134. PreprocessorDefinitions=""
  3135. />
  3136. </FileConfiguration>
  3137. <FileConfiguration
  3138. Name="Release|Win32"
  3139. >
  3140. <Tool
  3141. Name="VCCLCompilerTool"
  3142. PreprocessorDefinitions=""
  3143. />
  3144. </FileConfiguration>
  3145. </File>
  3146. <File
  3147. RelativePath="vcdatagrid.h"
  3148. >
  3149. </File>
  3150. <File
  3151. RelativePath="vcdatapoint.cpp"
  3152. >
  3153. <FileConfiguration
  3154. Name="Debug|Win32"
  3155. >
  3156. <Tool
  3157. Name="VCCLCompilerTool"
  3158. PreprocessorDefinitions=""
  3159. />
  3160. </FileConfiguration>
  3161. <FileConfiguration
  3162. Name="Release|Win32"
  3163. >
  3164. <Tool
  3165. Name="VCCLCompilerTool"
  3166. PreprocessorDefinitions=""
  3167. />
  3168. </FileConfiguration>
  3169. </File>
  3170. <File
  3171. RelativePath="vcdatapoint.h"
  3172. >
  3173. </File>
  3174. <File
  3175. RelativePath="vcdatapointlabel.cpp"
  3176. >
  3177. <FileConfiguration
  3178. Name="Debug|Win32"
  3179. >
  3180. <Tool
  3181. Name="VCCLCompilerTool"
  3182. PreprocessorDefinitions=""
  3183. />
  3184. </FileConfiguration>
  3185. <FileConfiguration
  3186. Name="Release|Win32"
  3187. >
  3188. <Tool
  3189. Name="VCCLCompilerTool"
  3190. PreprocessorDefinitions=""
  3191. />
  3192. </FileConfiguration>
  3193. </File>
  3194. <File
  3195. RelativePath="vcdatapointlabel.h"
  3196. >
  3197. </File>
  3198. <File
  3199. RelativePath="vcdatapoints.cpp"
  3200. >
  3201. <FileConfiguration
  3202. Name="Debug|Win32"
  3203. >
  3204. <Tool
  3205. Name="VCCLCompilerTool"
  3206. PreprocessorDefinitions=""
  3207. />
  3208. </FileConfiguration>
  3209. <FileConfiguration
  3210. Name="Release|Win32"
  3211. >
  3212. <Tool
  3213. Name="VCCLCompilerTool"
  3214. PreprocessorDefinitions=""
  3215. />
  3216. </FileConfiguration>
  3217. </File>
  3218. <File
  3219. RelativePath="vcdatapoints.h"
  3220. >
  3221. </File>
  3222. <File
  3223. RelativePath="vcfill.cpp"
  3224. >
  3225. <FileConfiguration
  3226. Name="Debug|Win32"
  3227. >
  3228. <Tool
  3229. Name="VCCLCompilerTool"
  3230. PreprocessorDefinitions=""
  3231. />
  3232. </FileConfiguration>
  3233. <FileConfiguration
  3234. Name="Release|Win32"
  3235. >
  3236. <Tool
  3237. Name="VCCLCompilerTool"
  3238. PreprocessorDefinitions=""
  3239. />
  3240. </FileConfiguration>
  3241. </File>
  3242. <File
  3243. RelativePath="vcfill.h"
  3244. >
  3245. </File>
  3246. <File
  3247. RelativePath="vcfont.cpp"
  3248. >
  3249. <FileConfiguration
  3250. Name="Debug|Win32"
  3251. >
  3252. <Tool
  3253. Name="VCCLCompilerTool"
  3254. PreprocessorDefinitions=""
  3255. />
  3256. </FileConfiguration>
  3257. <FileConfiguration
  3258. Name="Release|Win32"
  3259. >
  3260. <Tool
  3261. Name="VCCLCompilerTool"
  3262. PreprocessorDefinitions=""
  3263. />
  3264. </FileConfiguration>
  3265. </File>
  3266. <File
  3267. RelativePath="vcfont.h"
  3268. >
  3269. </File>
  3270. <File
  3271. RelativePath="vcfootnote.cpp"
  3272. >
  3273. <FileConfiguration
  3274. Name="Debug|Win32"
  3275. >
  3276. <Tool
  3277. Name="VCCLCompilerTool"
  3278. PreprocessorDefinitions=""
  3279. />
  3280. </FileConfiguration>
  3281. <FileConfiguration
  3282. Name="Release|Win32"
  3283. >
  3284. <Tool
  3285. Name="VCCLCompilerTool"
  3286. PreprocessorDefinitions=""
  3287. />
  3288. </FileConfiguration>
  3289. </File>
  3290. <File
  3291. RelativePath="vcfootnote.h"
  3292. >
  3293. </File>
  3294. <File
  3295. RelativePath="vcframe.cpp"
  3296. >
  3297. <FileConfiguration
  3298. Name="Debug|Win32"
  3299. >
  3300. <Tool
  3301. Name="VCCLCompilerTool"
  3302. PreprocessorDefinitions=""
  3303. />
  3304. </FileConfiguration>
  3305. <FileConfiguration
  3306. Name="Release|Win32"
  3307. >
  3308. <Tool
  3309. Name="VCCLCompilerTool"
  3310. PreprocessorDefinitions=""
  3311. />
  3312. </FileConfiguration>
  3313. </File>
  3314. <File
  3315. RelativePath="vcframe.h"
  3316. >
  3317. </File>
  3318. <File
  3319. RelativePath="vcintersection.cpp"
  3320. >
  3321. <FileConfiguration
  3322. Name="Debug|Win32"
  3323. >
  3324. <Tool
  3325. Name="VCCLCompilerTool"
  3326. PreprocessorDefinitions=""
  3327. />
  3328. </FileConfiguration>
  3329. <FileConfiguration
  3330. Name="Release|Win32"
  3331. >
  3332. <Tool
  3333. Name="VCCLCompilerTool"
  3334. PreprocessorDefinitions=""
  3335. />
  3336. </FileConfiguration>
  3337. </File>
  3338. <File
  3339. RelativePath="vcintersection.h"
  3340. >
  3341. </File>
  3342. <File
  3343. RelativePath="vclabel.cpp"
  3344. >
  3345. <FileConfiguration
  3346. Name="Debug|Win32"
  3347. >
  3348. <Tool
  3349. Name="VCCLCompilerTool"
  3350. PreprocessorDefinitions=""
  3351. />
  3352. </FileConfiguration>
  3353. <FileConfiguration
  3354. Name="Release|Win32"
  3355. >
  3356. <Tool
  3357. Name="VCCLCompilerTool"
  3358. PreprocessorDefinitions=""
  3359. />
  3360. </FileConfiguration>
  3361. </File>
  3362. <File
  3363. RelativePath="vclabel.h"
  3364. >
  3365. </File>
  3366. <File
  3367. RelativePath="vclabels.cpp"
  3368. >
  3369. <FileConfiguration
  3370. Name="Debug|Win32"
  3371. >
  3372. <Tool
  3373. Name="VCCLCompilerTool"
  3374. PreprocessorDefinitions=""
  3375. />
  3376. </FileConfiguration>
  3377. <FileConfiguration
  3378. Name="Release|Win32"
  3379. >
  3380. <Tool
  3381. Name="VCCLCompilerTool"
  3382. PreprocessorDefinitions=""
  3383. />
  3384. </FileConfiguration>
  3385. </File>
  3386. <File
  3387. RelativePath="vclabels.h"
  3388. >
  3389. </File>
  3390. <File
  3391. RelativePath="vclcoor.cpp"
  3392. >
  3393. <FileConfiguration
  3394. Name="Debug|Win32"
  3395. >
  3396. <Tool
  3397. Name="VCCLCompilerTool"
  3398. PreprocessorDefinitions=""
  3399. />
  3400. </FileConfiguration>
  3401. <FileConfiguration
  3402. Name="Release|Win32"
  3403. >
  3404. <Tool
  3405. Name="VCCLCompilerTool"
  3406. PreprocessorDefinitions=""
  3407. />
  3408. </FileConfiguration>
  3409. </File>
  3410. <File
  3411. RelativePath="vclcoor.h"
  3412. >
  3413. </File>
  3414. <File
  3415. RelativePath="vclegend.cpp"
  3416. >
  3417. <FileConfiguration
  3418. Name="Debug|Win32"
  3419. >
  3420. <Tool
  3421. Name="VCCLCompilerTool"
  3422. PreprocessorDefinitions=""
  3423. />
  3424. </FileConfiguration>
  3425. <FileConfiguration
  3426. Name="Release|Win32"
  3427. >
  3428. <Tool
  3429. Name="VCCLCompilerTool"
  3430. PreprocessorDefinitions=""
  3431. />
  3432. </FileConfiguration>
  3433. </File>
  3434. <File
  3435. RelativePath="vclegend.h"
  3436. >
  3437. </File>
  3438. <File
  3439. RelativePath="vclight.cpp"
  3440. >
  3441. <FileConfiguration
  3442. Name="Debug|Win32"
  3443. >
  3444. <Tool
  3445. Name="VCCLCompilerTool"
  3446. PreprocessorDefinitions=""
  3447. />
  3448. </FileConfiguration>
  3449. <FileConfiguration
  3450. Name="Release|Win32"
  3451. >
  3452. <Tool
  3453. Name="VCCLCompilerTool"
  3454. PreprocessorDefinitions=""
  3455. />
  3456. </FileConfiguration>
  3457. </File>
  3458. <File
  3459. RelativePath="vclight.h"
  3460. >
  3461. </File>
  3462. <File
  3463. RelativePath="vclightsource.cpp"
  3464. >
  3465. <FileConfiguration
  3466. Name="Debug|Win32"
  3467. >
  3468. <Tool
  3469. Name="VCCLCompilerTool"
  3470. PreprocessorDefinitions=""
  3471. />
  3472. </FileConfiguration>
  3473. <FileConfiguration
  3474. Name="Release|Win32"
  3475. >
  3476. <Tool
  3477. Name="VCCLCompilerTool"
  3478. PreprocessorDefinitions=""
  3479. />
  3480. </FileConfiguration>
  3481. </File>
  3482. <File
  3483. RelativePath="vclightsource.h"
  3484. >
  3485. </File>
  3486. <File
  3487. RelativePath="vclightsources.cpp"
  3488. >
  3489. <FileConfiguration
  3490. Name="Debug|Win32"
  3491. >
  3492. <Tool
  3493. Name="VCCLCompilerTool"
  3494. PreprocessorDefinitions=""
  3495. />
  3496. </FileConfiguration>
  3497. <FileConfiguration
  3498. Name="Release|Win32"
  3499. >
  3500. <Tool
  3501. Name="VCCLCompilerTool"
  3502. PreprocessorDefinitions=""
  3503. />
  3504. </FileConfiguration>
  3505. </File>
  3506. <File
  3507. RelativePath="vclightsources.h"
  3508. >
  3509. </File>
  3510. <File
  3511. RelativePath="vclocation.cpp"
  3512. >
  3513. <FileConfiguration
  3514. Name="Debug|Win32"
  3515. >
  3516. <Tool
  3517. Name="VCCLCompilerTool"
  3518. PreprocessorDefinitions=""
  3519. />
  3520. </FileConfiguration>
  3521. <FileConfiguration
  3522. Name="Release|Win32"
  3523. >
  3524. <Tool
  3525. Name="VCCLCompilerTool"
  3526. PreprocessorDefinitions=""
  3527. />
  3528. </FileConfiguration>
  3529. </File>
  3530. <File
  3531. RelativePath="vclocation.h"
  3532. >
  3533. </File>
  3534. <File
  3535. RelativePath="vcmarker.cpp"
  3536. >
  3537. <FileConfiguration
  3538. Name="Debug|Win32"
  3539. >
  3540. <Tool
  3541. Name="VCCLCompilerTool"
  3542. PreprocessorDefinitions=""
  3543. />
  3544. </FileConfiguration>
  3545. <FileConfiguration
  3546. Name="Release|Win32"
  3547. >
  3548. <Tool
  3549. Name="VCCLCompilerTool"
  3550. PreprocessorDefinitions=""
  3551. />
  3552. </FileConfiguration>
  3553. </File>
  3554. <File
  3555. RelativePath="vcmarker.h"
  3556. >
  3557. </File>
  3558. <File
  3559. RelativePath="vcpen.cpp"
  3560. >
  3561. <FileConfiguration
  3562. Name="Debug|Win32"
  3563. >
  3564. <Tool
  3565. Name="VCCLCompilerTool"
  3566. PreprocessorDefinitions=""
  3567. />
  3568. </FileConfiguration>
  3569. <FileConfiguration
  3570. Name="Release|Win32"
  3571. >
  3572. <Tool
  3573. Name="VCCLCompilerTool"
  3574. PreprocessorDefinitions=""
  3575. />
  3576. </FileConfiguration>
  3577. </File>
  3578. <File
  3579. RelativePath="vcpen.h"
  3580. >
  3581. </File>
  3582. <File
  3583. RelativePath="vcplot.cpp"
  3584. >
  3585. <FileConfiguration
  3586. Name="Debug|Win32"
  3587. >
  3588. <Tool
  3589. Name="VCCLCompilerTool"
  3590. PreprocessorDefinitions=""
  3591. />
  3592. </FileConfiguration>
  3593. <FileConfiguration
  3594. Name="Release|Win32"
  3595. >
  3596. <Tool
  3597. Name="VCCLCompilerTool"
  3598. PreprocessorDefinitions=""
  3599. />
  3600. </FileConfiguration>
  3601. </File>
  3602. <File
  3603. RelativePath="vcplot.h"
  3604. >
  3605. </File>
  3606. <File
  3607. RelativePath="vcplotbase.cpp"
  3608. >
  3609. <FileConfiguration
  3610. Name="Debug|Win32"
  3611. >
  3612. <Tool
  3613. Name="VCCLCompilerTool"
  3614. PreprocessorDefinitions=""
  3615. />
  3616. </FileConfiguration>
  3617. <FileConfiguration
  3618. Name="Release|Win32"
  3619. >
  3620. <Tool
  3621. Name="VCCLCompilerTool"
  3622. PreprocessorDefinitions=""
  3623. />
  3624. </FileConfiguration>
  3625. </File>
  3626. <File
  3627. RelativePath="vcplotbase.h"
  3628. >
  3629. </File>
  3630. <File
  3631. RelativePath="vcrect.cpp"
  3632. >
  3633. <FileConfiguration
  3634. Name="Debug|Win32"
  3635. >
  3636. <Tool
  3637. Name="VCCLCompilerTool"
  3638. PreprocessorDefinitions=""
  3639. />
  3640. </FileConfiguration>
  3641. <FileConfiguration
  3642. Name="Release|Win32"
  3643. >
  3644. <Tool
  3645. Name="VCCLCompilerTool"
  3646. PreprocessorDefinitions=""
  3647. />
  3648. </FileConfiguration>
  3649. </File>
  3650. <File
  3651. RelativePath="vcrect.h"
  3652. >
  3653. </File>
  3654. <File
  3655. RelativePath="vcseries.cpp"
  3656. >
  3657. <FileConfiguration
  3658. Name="Debug|Win32"
  3659. >
  3660. <Tool
  3661. Name="VCCLCompilerTool"
  3662. PreprocessorDefinitions=""
  3663. />
  3664. </FileConfiguration>
  3665. <FileConfiguration
  3666. Name="Release|Win32"
  3667. >
  3668. <Tool
  3669. Name="VCCLCompilerTool"
  3670. PreprocessorDefinitions=""
  3671. />
  3672. </FileConfiguration>
  3673. </File>
  3674. <File
  3675. RelativePath="vcseries.h"
  3676. >
  3677. </File>
  3678. <File
  3679. RelativePath="vcseriescollection.cpp"
  3680. >
  3681. <FileConfiguration
  3682. Name="Debug|Win32"
  3683. >
  3684. <Tool
  3685. Name="VCCLCompilerTool"
  3686. PreprocessorDefinitions=""
  3687. />
  3688. </FileConfiguration>
  3689. <FileConfiguration
  3690. Name="Release|Win32"
  3691. >
  3692. <Tool
  3693. Name="VCCLCompilerTool"
  3694. PreprocessorDefinitions=""
  3695. />
  3696. </FileConfiguration>
  3697. </File>
  3698. <File
  3699. RelativePath="vcseriescollection.h"
  3700. >
  3701. </File>
  3702. <File
  3703. RelativePath="vcseriesmarker.cpp"
  3704. >
  3705. <FileConfiguration
  3706. Name="Debug|Win32"
  3707. >
  3708. <Tool
  3709. Name="VCCLCompilerTool"
  3710. PreprocessorDefinitions=""
  3711. />
  3712. </FileConfiguration>
  3713. <FileConfiguration
  3714. Name="Release|Win32"
  3715. >
  3716. <Tool
  3717. Name="VCCLCompilerTool"
  3718. PreprocessorDefinitions=""
  3719. />
  3720. </FileConfiguration>
  3721. </File>
  3722. <File
  3723. RelativePath="vcseriesmarker.h"
  3724. >
  3725. </File>
  3726. <File
  3727. RelativePath="vcseriesposition.cpp"
  3728. >
  3729. <FileConfiguration
  3730. Name="Debug|Win32"
  3731. >
  3732. <Tool
  3733. Name="VCCLCompilerTool"
  3734. PreprocessorDefinitions=""
  3735. />
  3736. </FileConfiguration>
  3737. <FileConfiguration
  3738. Name="Release|Win32"
  3739. >
  3740. <Tool
  3741. Name="VCCLCompilerTool"
  3742. PreprocessorDefinitions=""
  3743. />
  3744. </FileConfiguration>
  3745. </File>
  3746. <File
  3747. RelativePath="vcseriesposition.h"
  3748. >
  3749. </File>
  3750. <File
  3751. RelativePath="vcshadow.cpp"
  3752. >
  3753. <FileConfiguration
  3754. Name="Debug|Win32"
  3755. >
  3756. <Tool
  3757. Name="VCCLCompilerTool"
  3758. PreprocessorDefinitions=""
  3759. />
  3760. </FileConfiguration>
  3761. <FileConfiguration
  3762. Name="Release|Win32"
  3763. >
  3764. <Tool
  3765. Name="VCCLCompilerTool"
  3766. PreprocessorDefinitions=""
  3767. />
  3768. </FileConfiguration>
  3769. </File>
  3770. <File
  3771. RelativePath="vcshadow.h"
  3772. >
  3773. </File>
  3774. <File
  3775. RelativePath="vcstatline.cpp"
  3776. >
  3777. <FileConfiguration
  3778. Name="Debug|Win32"
  3779. >
  3780. <Tool
  3781. Name="VCCLCompilerTool"
  3782. PreprocessorDefinitions=""
  3783. />
  3784. </FileConfiguration>
  3785. <FileConfiguration
  3786. Name="Release|Win32"
  3787. >
  3788. <Tool
  3789. Name="VCCLCompilerTool"
  3790. PreprocessorDefinitions=""
  3791. />
  3792. </FileConfiguration>
  3793. </File>
  3794. <File
  3795. RelativePath="vcstatline.h"
  3796. >
  3797. </File>
  3798. <File
  3799. RelativePath="vctextlayout.cpp"
  3800. >
  3801. <FileConfiguration
  3802. Name="Debug|Win32"
  3803. >
  3804. <Tool
  3805. Name="VCCLCompilerTool"
  3806. PreprocessorDefinitions=""
  3807. />
  3808. </FileConfiguration>
  3809. <FileConfiguration
  3810. Name="Release|Win32"
  3811. >
  3812. <Tool
  3813. Name="VCCLCompilerTool"
  3814. PreprocessorDefinitions=""
  3815. />
  3816. </FileConfiguration>
  3817. </File>
  3818. <File
  3819. RelativePath="vctextlayout.h"
  3820. >
  3821. </File>
  3822. <File
  3823. RelativePath="vctick.cpp"
  3824. >
  3825. <FileConfiguration
  3826. Name="Debug|Win32"
  3827. >
  3828. <Tool
  3829. Name="VCCLCompilerTool"
  3830. PreprocessorDefinitions=""
  3831. />
  3832. </FileConfiguration>
  3833. <FileConfiguration
  3834. Name="Release|Win32"
  3835. >
  3836. <Tool
  3837. Name="VCCLCompilerTool"
  3838. PreprocessorDefinitions=""
  3839. />
  3840. </FileConfiguration>
  3841. </File>
  3842. <File
  3843. RelativePath="vctick.h"
  3844. >
  3845. </File>
  3846. <File
  3847. RelativePath="vctitle.cpp"
  3848. >
  3849. <FileConfiguration
  3850. Name="Debug|Win32"
  3851. >
  3852. <Tool
  3853. Name="VCCLCompilerTool"
  3854. PreprocessorDefinitions=""
  3855. />
  3856. </FileConfiguration>
  3857. <FileConfiguration
  3858. Name="Release|Win32"
  3859. >
  3860. <Tool
  3861. Name="VCCLCompilerTool"
  3862. PreprocessorDefinitions=""
  3863. />
  3864. </FileConfiguration>
  3865. </File>
  3866. <File
  3867. RelativePath="vctitle.h"
  3868. >
  3869. </File>
  3870. <File
  3871. RelativePath="vcvaluescale.cpp"
  3872. >
  3873. <FileConfiguration
  3874. Name="Debug|Win32"
  3875. >
  3876. <Tool
  3877. Name="VCCLCompilerTool"
  3878. PreprocessorDefinitions=""
  3879. />
  3880. </FileConfiguration>
  3881. <FileConfiguration
  3882. Name="Release|Win32"
  3883. >
  3884. <Tool
  3885. Name="VCCLCompilerTool"
  3886. PreprocessorDefinitions=""
  3887. />
  3888. </FileConfiguration>
  3889. </File>
  3890. <File
  3891. RelativePath="vcvaluescale.h"
  3892. >
  3893. </File>
  3894. <File
  3895. RelativePath="vcview3d.cpp"
  3896. >
  3897. <FileConfiguration
  3898. Name="Debug|Win32"
  3899. >
  3900. <Tool
  3901. Name="VCCLCompilerTool"
  3902. PreprocessorDefinitions=""
  3903. />
  3904. </FileConfiguration>
  3905. <FileConfiguration
  3906. Name="Release|Win32"
  3907. >
  3908. <Tool
  3909. Name="VCCLCompilerTool"
  3910. PreprocessorDefinitions=""
  3911. />
  3912. </FileConfiguration>
  3913. </File>
  3914. <File
  3915. RelativePath="vcview3d.h"
  3916. >
  3917. </File>
  3918. <File
  3919. RelativePath="vcwall.cpp"
  3920. >
  3921. <FileConfiguration
  3922. Name="Debug|Win32"
  3923. >
  3924. <Tool
  3925. Name="VCCLCompilerTool"
  3926. PreprocessorDefinitions=""
  3927. />
  3928. </FileConfiguration>
  3929. <FileConfiguration
  3930. Name="Release|Win32"
  3931. >
  3932. <Tool
  3933. Name="VCCLCompilerTool"
  3934. PreprocessorDefinitions=""
  3935. />
  3936. </FileConfiguration>
  3937. </File>
  3938. <File
  3939. RelativePath="vcwall.h"
  3940. >
  3941. </File>
  3942. <File
  3943. RelativePath="vcweighting.cpp"
  3944. >
  3945. <FileConfiguration
  3946. Name="Debug|Win32"
  3947. >
  3948. <Tool
  3949. Name="VCCLCompilerTool"
  3950. PreprocessorDefinitions=""
  3951. />
  3952. </FileConfiguration>
  3953. <FileConfiguration
  3954. Name="Release|Win32"
  3955. >
  3956. <Tool
  3957. Name="VCCLCompilerTool"
  3958. PreprocessorDefinitions=""
  3959. />
  3960. </FileConfiguration>
  3961. </File>
  3962. <File
  3963. RelativePath="vcweighting.h"
  3964. >
  3965. </File>
  3966. </Filter>
  3967. <Filter
  3968. Name="MenuBarXP"
  3969. >
  3970. <File
  3971. RelativePath="MenuBarXP\KeyHelper.cpp"
  3972. >
  3973. <FileConfiguration
  3974. Name="Debug|Win32"
  3975. >
  3976. <Tool
  3977. Name="VCCLCompilerTool"
  3978. PreprocessorDefinitions=""
  3979. />
  3980. </FileConfiguration>
  3981. <FileConfiguration
  3982. Name="Release|Win32"
  3983. >
  3984. <Tool
  3985. Name="VCCLCompilerTool"
  3986. PreprocessorDefinitions=""
  3987. />
  3988. </FileConfiguration>
  3989. </File>
  3990. <File
  3991. RelativePath="MenuBarXP\KeyHelper.h"
  3992. >
  3993. </File>
  3994. <File
  3995. RelativePath="MenuBarXP\MenuBarXP.cpp"
  3996. >
  3997. <FileConfiguration
  3998. Name="Debug|Win32"
  3999. >
  4000. <Tool
  4001. Name="VCCLCompilerTool"
  4002. PreprocessorDefinitions=""
  4003. />
  4004. </FileConfiguration>
  4005. <FileConfiguration
  4006. Name="Release|Win32"
  4007. >
  4008. <Tool
  4009. Name="VCCLCompilerTool"
  4010. PreprocessorDefinitions=""
  4011. />
  4012. </FileConfiguration>
  4013. </File>
  4014. <File
  4015. RelativePath="MenuBarXP\MenuBarXP.h"
  4016. >
  4017. </File>
  4018. <File
  4019. RelativePath="MenuBarXP\MenuXP.cpp"
  4020. >
  4021. <FileConfiguration
  4022. Name="Debug|Win32"
  4023. >
  4024. <Tool
  4025. Name="VCCLCompilerTool"
  4026. PreprocessorDefinitions=""
  4027. />
  4028. </FileConfiguration>
  4029. <FileConfiguration
  4030. Name="Release|Win32"
  4031. >
  4032. <Tool
  4033. Name="VCCLCompilerTool"
  4034. PreprocessorDefinitions=""
  4035. />
  4036. </FileConfiguration>
  4037. </File>
  4038. <File
  4039. RelativePath="MenuBarXP\MenuXP.h"
  4040. >
  4041. </File>
  4042. <File
  4043. RelativePath="MenuBarXP\ToolBarXP.cpp"
  4044. >
  4045. <FileConfiguration
  4046. Name="Debug|Win32"
  4047. >
  4048. <Tool
  4049. Name="VCCLCompilerTool"
  4050. PreprocessorDefinitions=""
  4051. />
  4052. </FileConfiguration>
  4053. <FileConfiguration
  4054. Name="Release|Win32"
  4055. >
  4056. <Tool
  4057. Name="VCCLCompilerTool"
  4058. PreprocessorDefinitions=""
  4059. />
  4060. </FileConfiguration>
  4061. </File>
  4062. <File
  4063. RelativePath="MenuBarXP\ToolBarXP.h"
  4064. >
  4065. </File>
  4066. </Filter>
  4067. <Filter
  4068. Name="界面支持"
  4069. >
  4070. <File
  4071. RelativePath="AutoCompl.cpp"
  4072. >
  4073. <FileConfiguration
  4074. Name="Debug|Win32"
  4075. >
  4076. <Tool
  4077. Name="VCCLCompilerTool"
  4078. PreprocessorDefinitions=""
  4079. />
  4080. </FileConfiguration>
  4081. <FileConfiguration
  4082. Name="Release|Win32"
  4083. >
  4084. <Tool
  4085. Name="VCCLCompilerTool"
  4086. PreprocessorDefinitions=""
  4087. />
  4088. </FileConfiguration>
  4089. </File>
  4090. <File
  4091. RelativePath="AutoCompl.h"
  4092. >
  4093. </File>
  4094. <File
  4095. RelativePath="ChoosePhotoSkin.cpp"
  4096. >
  4097. <FileConfiguration
  4098. Name="Debug|Win32"
  4099. >
  4100. <Tool
  4101. Name="VCCLCompilerTool"
  4102. PreprocessorDefinitions=""
  4103. />
  4104. </FileConfiguration>
  4105. <FileConfiguration
  4106. Name="Release|Win32"
  4107. >
  4108. <Tool
  4109. Name="VCCLCompilerTool"
  4110. PreprocessorDefinitions=""
  4111. />
  4112. </FileConfiguration>
  4113. </File>
  4114. <File
  4115. RelativePath="ChoosePhotoSkin.h"
  4116. >
  4117. </File>
  4118. <File
  4119. RelativePath="ChoosePhotoSkin2.cpp"
  4120. >
  4121. <FileConfiguration
  4122. Name="Debug|Win32"
  4123. >
  4124. <Tool
  4125. Name="VCCLCompilerTool"
  4126. PreprocessorDefinitions=""
  4127. />
  4128. </FileConfiguration>
  4129. <FileConfiguration
  4130. Name="Release|Win32"
  4131. >
  4132. <Tool
  4133. Name="VCCLCompilerTool"
  4134. PreprocessorDefinitions=""
  4135. />
  4136. </FileConfiguration>
  4137. </File>
  4138. <File
  4139. RelativePath="ChoosePhotoSkin2.h"
  4140. >
  4141. </File>
  4142. <File
  4143. RelativePath="ChoosePhotoSkin3.cpp"
  4144. >
  4145. <FileConfiguration
  4146. Name="Debug|Win32"
  4147. >
  4148. <Tool
  4149. Name="VCCLCompilerTool"
  4150. PreprocessorDefinitions=""
  4151. />
  4152. </FileConfiguration>
  4153. <FileConfiguration
  4154. Name="Release|Win32"
  4155. >
  4156. <Tool
  4157. Name="VCCLCompilerTool"
  4158. PreprocessorDefinitions=""
  4159. />
  4160. </FileConfiguration>
  4161. </File>
  4162. <File
  4163. RelativePath="ChoosePhotoSkin3.h"
  4164. >
  4165. </File>
  4166. <File
  4167. RelativePath="CompareContent.cpp"
  4168. >
  4169. <FileConfiguration
  4170. Name="Debug|Win32"
  4171. >
  4172. <Tool
  4173. Name="VCCLCompilerTool"
  4174. PreprocessorDefinitions=""
  4175. />
  4176. </FileConfiguration>
  4177. <FileConfiguration
  4178. Name="Release|Win32"
  4179. >
  4180. <Tool
  4181. Name="VCCLCompilerTool"
  4182. PreprocessorDefinitions=""
  4183. />
  4184. </FileConfiguration>
  4185. </File>
  4186. <File
  4187. RelativePath="CompareContent.h"
  4188. >
  4189. </File>
  4190. <File
  4191. RelativePath="ComparePhoto.cpp"
  4192. >
  4193. <FileConfiguration
  4194. Name="Debug|Win32"
  4195. >
  4196. <Tool
  4197. Name="VCCLCompilerTool"
  4198. PreprocessorDefinitions=""
  4199. />
  4200. </FileConfiguration>
  4201. <FileConfiguration
  4202. Name="Release|Win32"
  4203. >
  4204. <Tool
  4205. Name="VCCLCompilerTool"
  4206. PreprocessorDefinitions=""
  4207. />
  4208. </FileConfiguration>
  4209. </File>
  4210. <File
  4211. RelativePath="ComparePhoto.h"
  4212. >
  4213. </File>
  4214. <File
  4215. RelativePath="ConnectDlg.cpp"
  4216. >
  4217. <FileConfiguration
  4218. Name="Debug|Win32"
  4219. >
  4220. <Tool
  4221. Name="VCCLCompilerTool"
  4222. PreprocessorDefinitions=""
  4223. />
  4224. </FileConfiguration>
  4225. <FileConfiguration
  4226. Name="Release|Win32"
  4227. >
  4228. <Tool
  4229. Name="VCCLCompilerTool"
  4230. PreprocessorDefinitions=""
  4231. />
  4232. </FileConfiguration>
  4233. </File>
  4234. <File
  4235. RelativePath="CutPhoto.cpp"
  4236. >
  4237. <FileConfiguration
  4238. Name="Debug|Win32"
  4239. >
  4240. <Tool
  4241. Name="VCCLCompilerTool"
  4242. PreprocessorDefinitions=""
  4243. />
  4244. </FileConfiguration>
  4245. <FileConfiguration
  4246. Name="Release|Win32"
  4247. >
  4248. <Tool
  4249. Name="VCCLCompilerTool"
  4250. PreprocessorDefinitions=""
  4251. />
  4252. </FileConfiguration>
  4253. </File>
  4254. <File
  4255. RelativePath="CutPhoto.h"
  4256. >
  4257. </File>
  4258. <File
  4259. RelativePath="InputJT.cpp"
  4260. >
  4261. <FileConfiguration
  4262. Name="Debug|Win32"
  4263. >
  4264. <Tool
  4265. Name="VCCLCompilerTool"
  4266. PreprocessorDefinitions=""
  4267. />
  4268. </FileConfiguration>
  4269. <FileConfiguration
  4270. Name="Release|Win32"
  4271. >
  4272. <Tool
  4273. Name="VCCLCompilerTool"
  4274. PreprocessorDefinitions=""
  4275. />
  4276. </FileConfiguration>
  4277. </File>
  4278. <File
  4279. RelativePath="InputJT.h"
  4280. >
  4281. </File>
  4282. <File
  4283. RelativePath="LoadRect.cpp"
  4284. >
  4285. <FileConfiguration
  4286. Name="Debug|Win32"
  4287. >
  4288. <Tool
  4289. Name="VCCLCompilerTool"
  4290. PreprocessorDefinitions=""
  4291. />
  4292. </FileConfiguration>
  4293. <FileConfiguration
  4294. Name="Release|Win32"
  4295. >
  4296. <Tool
  4297. Name="VCCLCompilerTool"
  4298. PreprocessorDefinitions=""
  4299. />
  4300. </FileConfiguration>
  4301. </File>
  4302. <File
  4303. RelativePath="LoadRect.h"
  4304. >
  4305. </File>
  4306. <File
  4307. RelativePath="MyAnimateWindow.cpp"
  4308. >
  4309. <FileConfiguration
  4310. Name="Debug|Win32"
  4311. >
  4312. <Tool
  4313. Name="VCCLCompilerTool"
  4314. PreprocessorDefinitions=""
  4315. />
  4316. </FileConfiguration>
  4317. <FileConfiguration
  4318. Name="Release|Win32"
  4319. >
  4320. <Tool
  4321. Name="VCCLCompilerTool"
  4322. PreprocessorDefinitions=""
  4323. />
  4324. </FileConfiguration>
  4325. </File>
  4326. <File
  4327. RelativePath="MyAnimateWindow.h"
  4328. >
  4329. </File>
  4330. <File
  4331. RelativePath="MyBmpButton2.cpp"
  4332. >
  4333. <FileConfiguration
  4334. Name="Debug|Win32"
  4335. >
  4336. <Tool
  4337. Name="VCCLCompilerTool"
  4338. PreprocessorDefinitions=""
  4339. />
  4340. </FileConfiguration>
  4341. <FileConfiguration
  4342. Name="Release|Win32"
  4343. >
  4344. <Tool
  4345. Name="VCCLCompilerTool"
  4346. PreprocessorDefinitions=""
  4347. />
  4348. </FileConfiguration>
  4349. </File>
  4350. <File
  4351. RelativePath="MyBmpButton2.h"
  4352. >
  4353. </File>
  4354. <File
  4355. RelativePath="MyDlg.cpp"
  4356. >
  4357. <FileConfiguration
  4358. Name="Debug|Win32"
  4359. >
  4360. <Tool
  4361. Name="VCCLCompilerTool"
  4362. PreprocessorDefinitions=""
  4363. />
  4364. </FileConfiguration>
  4365. <FileConfiguration
  4366. Name="Release|Win32"
  4367. >
  4368. <Tool
  4369. Name="VCCLCompilerTool"
  4370. PreprocessorDefinitions=""
  4371. />
  4372. </FileConfiguration>
  4373. </File>
  4374. <File
  4375. RelativePath="MyDlg.h"
  4376. >
  4377. </File>
  4378. <File
  4379. RelativePath="PicBar.cpp"
  4380. >
  4381. <FileConfiguration
  4382. Name="Debug|Win32"
  4383. >
  4384. <Tool
  4385. Name="VCCLCompilerTool"
  4386. PreprocessorDefinitions=""
  4387. />
  4388. </FileConfiguration>
  4389. <FileConfiguration
  4390. Name="Release|Win32"
  4391. >
  4392. <Tool
  4393. Name="VCCLCompilerTool"
  4394. PreprocessorDefinitions=""
  4395. />
  4396. </FileConfiguration>
  4397. </File>
  4398. <File
  4399. RelativePath="PicBar.h"
  4400. >
  4401. </File>
  4402. <File
  4403. RelativePath="PreviewDlg.cpp"
  4404. >
  4405. <FileConfiguration
  4406. Name="Debug|Win32"
  4407. >
  4408. <Tool
  4409. Name="VCCLCompilerTool"
  4410. PreprocessorDefinitions=""
  4411. />
  4412. </FileConfiguration>
  4413. <FileConfiguration
  4414. Name="Release|Win32"
  4415. >
  4416. <Tool
  4417. Name="VCCLCompilerTool"
  4418. PreprocessorDefinitions=""
  4419. />
  4420. </FileConfiguration>
  4421. </File>
  4422. <File
  4423. RelativePath="PreviewDlg.h"
  4424. >
  4425. </File>
  4426. <File
  4427. RelativePath="ProductChooseFilter.cpp"
  4428. >
  4429. <FileConfiguration
  4430. Name="Debug|Win32"
  4431. >
  4432. <Tool
  4433. Name="VCCLCompilerTool"
  4434. PreprocessorDefinitions=""
  4435. />
  4436. </FileConfiguration>
  4437. <FileConfiguration
  4438. Name="Release|Win32"
  4439. >
  4440. <Tool
  4441. Name="VCCLCompilerTool"
  4442. PreprocessorDefinitions=""
  4443. />
  4444. </FileConfiguration>
  4445. </File>
  4446. <File
  4447. RelativePath="ProductChooseFilter.h"
  4448. >
  4449. </File>
  4450. <File
  4451. RelativePath="ReplaceDesignNo.cpp"
  4452. >
  4453. <FileConfiguration
  4454. Name="Debug|Win32"
  4455. >
  4456. <Tool
  4457. Name="VCCLCompilerTool"
  4458. PreprocessorDefinitions=""
  4459. />
  4460. </FileConfiguration>
  4461. <FileConfiguration
  4462. Name="Release|Win32"
  4463. >
  4464. <Tool
  4465. Name="VCCLCompilerTool"
  4466. PreprocessorDefinitions=""
  4467. />
  4468. </FileConfiguration>
  4469. </File>
  4470. <File
  4471. RelativePath="ReplaceDesignNo.h"
  4472. >
  4473. </File>
  4474. <File
  4475. RelativePath="SampleDlg.cpp"
  4476. >
  4477. <FileConfiguration
  4478. Name="Debug|Win32"
  4479. >
  4480. <Tool
  4481. Name="VCCLCompilerTool"
  4482. PreprocessorDefinitions=""
  4483. />
  4484. </FileConfiguration>
  4485. <FileConfiguration
  4486. Name="Release|Win32"
  4487. >
  4488. <Tool
  4489. Name="VCCLCompilerTool"
  4490. PreprocessorDefinitions=""
  4491. />
  4492. </FileConfiguration>
  4493. </File>
  4494. <File
  4495. RelativePath="SampleDlg.h"
  4496. >
  4497. </File>
  4498. <File
  4499. RelativePath="SearchClient.cpp"
  4500. >
  4501. <FileConfiguration
  4502. Name="Debug|Win32"
  4503. >
  4504. <Tool
  4505. Name="VCCLCompilerTool"
  4506. PreprocessorDefinitions=""
  4507. />
  4508. </FileConfiguration>
  4509. <FileConfiguration
  4510. Name="Release|Win32"
  4511. >
  4512. <Tool
  4513. Name="VCCLCompilerTool"
  4514. PreprocessorDefinitions=""
  4515. />
  4516. </FileConfiguration>
  4517. </File>
  4518. <File
  4519. RelativePath="SearchClient.h"
  4520. >
  4521. </File>
  4522. <File
  4523. RelativePath="SendDataDlg.cpp"
  4524. >
  4525. <FileConfiguration
  4526. Name="Debug|Win32"
  4527. >
  4528. <Tool
  4529. Name="VCCLCompilerTool"
  4530. PreprocessorDefinitions=""
  4531. />
  4532. </FileConfiguration>
  4533. <FileConfiguration
  4534. Name="Release|Win32"
  4535. >
  4536. <Tool
  4537. Name="VCCLCompilerTool"
  4538. PreprocessorDefinitions=""
  4539. />
  4540. </FileConfiguration>
  4541. </File>
  4542. <File
  4543. RelativePath="SetDesignNo.cpp"
  4544. >
  4545. <FileConfiguration
  4546. Name="Debug|Win32"
  4547. >
  4548. <Tool
  4549. Name="VCCLCompilerTool"
  4550. PreprocessorDefinitions=""
  4551. />
  4552. </FileConfiguration>
  4553. <FileConfiguration
  4554. Name="Release|Win32"
  4555. >
  4556. <Tool
  4557. Name="VCCLCompilerTool"
  4558. PreprocessorDefinitions=""
  4559. />
  4560. </FileConfiguration>
  4561. </File>
  4562. <File
  4563. RelativePath="SetDesignNo.h"
  4564. >
  4565. </File>
  4566. <File
  4567. RelativePath="SetSize.cpp"
  4568. >
  4569. <FileConfiguration
  4570. Name="Debug|Win32"
  4571. >
  4572. <Tool
  4573. Name="VCCLCompilerTool"
  4574. PreprocessorDefinitions=""
  4575. />
  4576. </FileConfiguration>
  4577. <FileConfiguration
  4578. Name="Release|Win32"
  4579. >
  4580. <Tool
  4581. Name="VCCLCompilerTool"
  4582. PreprocessorDefinitions=""
  4583. />
  4584. </FileConfiguration>
  4585. </File>
  4586. <File
  4587. RelativePath="SetSize.h"
  4588. >
  4589. </File>
  4590. <File
  4591. RelativePath="ShowCut.cpp"
  4592. >
  4593. <FileConfiguration
  4594. Name="Debug|Win32"
  4595. >
  4596. <Tool
  4597. Name="VCCLCompilerTool"
  4598. PreprocessorDefinitions=""
  4599. />
  4600. </FileConfiguration>
  4601. <FileConfiguration
  4602. Name="Release|Win32"
  4603. >
  4604. <Tool
  4605. Name="VCCLCompilerTool"
  4606. PreprocessorDefinitions=""
  4607. />
  4608. </FileConfiguration>
  4609. </File>
  4610. <File
  4611. RelativePath="ShowCut.h"
  4612. >
  4613. </File>
  4614. <File
  4615. RelativePath="ShowEffect.cpp"
  4616. >
  4617. <FileConfiguration
  4618. Name="Debug|Win32"
  4619. >
  4620. <Tool
  4621. Name="VCCLCompilerTool"
  4622. PreprocessorDefinitions=""
  4623. />
  4624. </FileConfiguration>
  4625. <FileConfiguration
  4626. Name="Release|Win32"
  4627. >
  4628. <Tool
  4629. Name="VCCLCompilerTool"
  4630. PreprocessorDefinitions=""
  4631. />
  4632. </FileConfiguration>
  4633. </File>
  4634. <File
  4635. RelativePath="ShowEffect.h"
  4636. >
  4637. </File>
  4638. <File
  4639. RelativePath="ShowPic22.cpp"
  4640. >
  4641. <FileConfiguration
  4642. Name="Debug|Win32"
  4643. >
  4644. <Tool
  4645. Name="VCCLCompilerTool"
  4646. PreprocessorDefinitions=""
  4647. />
  4648. </FileConfiguration>
  4649. <FileConfiguration
  4650. Name="Release|Win32"
  4651. >
  4652. <Tool
  4653. Name="VCCLCompilerTool"
  4654. PreprocessorDefinitions=""
  4655. />
  4656. </FileConfiguration>
  4657. </File>
  4658. <File
  4659. RelativePath="ShowPic22.h"
  4660. >
  4661. </File>
  4662. <File
  4663. RelativePath="ShowPicStatic2.cpp"
  4664. >
  4665. <FileConfiguration
  4666. Name="Debug|Win32"
  4667. >
  4668. <Tool
  4669. Name="VCCLCompilerTool"
  4670. PreprocessorDefinitions=""
  4671. />
  4672. </FileConfiguration>
  4673. <FileConfiguration
  4674. Name="Release|Win32"
  4675. >
  4676. <Tool
  4677. Name="VCCLCompilerTool"
  4678. PreprocessorDefinitions=""
  4679. />
  4680. </FileConfiguration>
  4681. </File>
  4682. <File
  4683. RelativePath="ShowPicStatic2.h"
  4684. >
  4685. </File>
  4686. <File
  4687. RelativePath="ShowSelPhoto.cpp"
  4688. >
  4689. <FileConfiguration
  4690. Name="Debug|Win32"
  4691. >
  4692. <Tool
  4693. Name="VCCLCompilerTool"
  4694. PreprocessorDefinitions=""
  4695. />
  4696. </FileConfiguration>
  4697. <FileConfiguration
  4698. Name="Release|Win32"
  4699. >
  4700. <Tool
  4701. Name="VCCLCompilerTool"
  4702. PreprocessorDefinitions=""
  4703. />
  4704. </FileConfiguration>
  4705. </File>
  4706. <File
  4707. RelativePath="ShowSelPhoto.h"
  4708. >
  4709. </File>
  4710. <File
  4711. RelativePath="ShowSelPhoto2.cpp"
  4712. >
  4713. <FileConfiguration
  4714. Name="Debug|Win32"
  4715. >
  4716. <Tool
  4717. Name="VCCLCompilerTool"
  4718. PreprocessorDefinitions=""
  4719. />
  4720. </FileConfiguration>
  4721. <FileConfiguration
  4722. Name="Release|Win32"
  4723. >
  4724. <Tool
  4725. Name="VCCLCompilerTool"
  4726. PreprocessorDefinitions=""
  4727. />
  4728. </FileConfiguration>
  4729. </File>
  4730. <File
  4731. RelativePath="ShowSelPhoto2.h"
  4732. >
  4733. </File>
  4734. <File
  4735. RelativePath="SLiaDlg.cpp"
  4736. >
  4737. <FileConfiguration
  4738. Name="Debug|Win32"
  4739. >
  4740. <Tool
  4741. Name="VCCLCompilerTool"
  4742. PreprocessorDefinitions=""
  4743. />
  4744. </FileConfiguration>
  4745. <FileConfiguration
  4746. Name="Release|Win32"
  4747. >
  4748. <Tool
  4749. Name="VCCLCompilerTool"
  4750. PreprocessorDefinitions=""
  4751. />
  4752. </FileConfiguration>
  4753. </File>
  4754. <File
  4755. RelativePath="SLiaDlg.h"
  4756. >
  4757. </File>
  4758. <File
  4759. RelativePath="Subclass.cpp"
  4760. >
  4761. <FileConfiguration
  4762. Name="Debug|Win32"
  4763. >
  4764. <Tool
  4765. Name="VCCLCompilerTool"
  4766. PreprocessorDefinitions=""
  4767. />
  4768. </FileConfiguration>
  4769. <FileConfiguration
  4770. Name="Release|Win32"
  4771. >
  4772. <Tool
  4773. Name="VCCLCompilerTool"
  4774. PreprocessorDefinitions=""
  4775. />
  4776. </FileConfiguration>
  4777. </File>
  4778. <File
  4779. RelativePath="Subclass.h"
  4780. >
  4781. </File>
  4782. <File
  4783. RelativePath="TipsDlg2.cpp"
  4784. >
  4785. <FileConfiguration
  4786. Name="Debug|Win32"
  4787. >
  4788. <Tool
  4789. Name="VCCLCompilerTool"
  4790. PreprocessorDefinitions=""
  4791. />
  4792. </FileConfiguration>
  4793. <FileConfiguration
  4794. Name="Release|Win32"
  4795. >
  4796. <Tool
  4797. Name="VCCLCompilerTool"
  4798. PreprocessorDefinitions=""
  4799. />
  4800. </FileConfiguration>
  4801. </File>
  4802. <File
  4803. RelativePath="TipsDlg2.h"
  4804. >
  4805. </File>
  4806. <File
  4807. RelativePath="ZZB.cpp"
  4808. >
  4809. <FileConfiguration
  4810. Name="Debug|Win32"
  4811. >
  4812. <Tool
  4813. Name="VCCLCompilerTool"
  4814. PreprocessorDefinitions=""
  4815. />
  4816. </FileConfiguration>
  4817. <FileConfiguration
  4818. Name="Release|Win32"
  4819. >
  4820. <Tool
  4821. Name="VCCLCompilerTool"
  4822. PreprocessorDefinitions=""
  4823. />
  4824. </FileConfiguration>
  4825. </File>
  4826. <File
  4827. RelativePath="ZZB.h"
  4828. >
  4829. </File>
  4830. </Filter>
  4831. <Filter
  4832. Name="供应商设置"
  4833. >
  4834. <File
  4835. RelativePath="ProviderDlg.cpp"
  4836. >
  4837. <FileConfiguration
  4838. Name="Debug|Win32"
  4839. >
  4840. <Tool
  4841. Name="VCCLCompilerTool"
  4842. PreprocessorDefinitions=""
  4843. />
  4844. </FileConfiguration>
  4845. <FileConfiguration
  4846. Name="Release|Win32"
  4847. >
  4848. <Tool
  4849. Name="VCCLCompilerTool"
  4850. PreprocessorDefinitions=""
  4851. />
  4852. </FileConfiguration>
  4853. </File>
  4854. <File
  4855. RelativePath="ProviderDlg.h"
  4856. >
  4857. </File>
  4858. <File
  4859. RelativePath="SelProvider.cpp"
  4860. >
  4861. <FileConfiguration
  4862. Name="Debug|Win32"
  4863. >
  4864. <Tool
  4865. Name="VCCLCompilerTool"
  4866. PreprocessorDefinitions=""
  4867. />
  4868. </FileConfiguration>
  4869. <FileConfiguration
  4870. Name="Release|Win32"
  4871. >
  4872. <Tool
  4873. Name="VCCLCompilerTool"
  4874. PreprocessorDefinitions=""
  4875. />
  4876. </FileConfiguration>
  4877. </File>
  4878. <File
  4879. RelativePath="SelProvider.h"
  4880. >
  4881. </File>
  4882. </Filter>
  4883. <Filter
  4884. Name="工具栏"
  4885. >
  4886. <File
  4887. RelativePath="Calendar1.cpp"
  4888. >
  4889. <FileConfiguration
  4890. Name="Debug|Win32"
  4891. >
  4892. <Tool
  4893. Name="VCCLCompilerTool"
  4894. PreprocessorDefinitions=""
  4895. />
  4896. </FileConfiguration>
  4897. <FileConfiguration
  4898. Name="Release|Win32"
  4899. >
  4900. <Tool
  4901. Name="VCCLCompilerTool"
  4902. PreprocessorDefinitions=""
  4903. />
  4904. </FileConfiguration>
  4905. </File>
  4906. <File
  4907. RelativePath="Calendar1.h"
  4908. >
  4909. </File>
  4910. <File
  4911. RelativePath="CalendarFrm.cpp"
  4912. >
  4913. <FileConfiguration
  4914. Name="Debug|Win32"
  4915. >
  4916. <Tool
  4917. Name="VCCLCompilerTool"
  4918. PreprocessorDefinitions=""
  4919. />
  4920. </FileConfiguration>
  4921. <FileConfiguration
  4922. Name="Release|Win32"
  4923. >
  4924. <Tool
  4925. Name="VCCLCompilerTool"
  4926. PreprocessorDefinitions=""
  4927. />
  4928. </FileConfiguration>
  4929. </File>
  4930. <File
  4931. RelativePath="CalendarFrm.h"
  4932. >
  4933. </File>
  4934. <File
  4935. RelativePath="DinDanFrom.cpp"
  4936. >
  4937. <FileConfiguration
  4938. Name="Debug|Win32"
  4939. >
  4940. <Tool
  4941. Name="VCCLCompilerTool"
  4942. PreprocessorDefinitions=""
  4943. />
  4944. </FileConfiguration>
  4945. <FileConfiguration
  4946. Name="Release|Win32"
  4947. >
  4948. <Tool
  4949. Name="VCCLCompilerTool"
  4950. PreprocessorDefinitions=""
  4951. />
  4952. </FileConfiguration>
  4953. </File>
  4954. <File
  4955. RelativePath="DinDanFrom.h"
  4956. >
  4957. </File>
  4958. <File
  4959. RelativePath="DinDanFromBranch.cpp"
  4960. >
  4961. <FileConfiguration
  4962. Name="Debug|Win32"
  4963. >
  4964. <Tool
  4965. Name="VCCLCompilerTool"
  4966. PreprocessorDefinitions=""
  4967. />
  4968. </FileConfiguration>
  4969. <FileConfiguration
  4970. Name="Release|Win32"
  4971. >
  4972. <Tool
  4973. Name="VCCLCompilerTool"
  4974. PreprocessorDefinitions=""
  4975. />
  4976. </FileConfiguration>
  4977. </File>
  4978. <File
  4979. RelativePath="DinDanFromBranch.h"
  4980. >
  4981. </File>
  4982. <File
  4983. RelativePath="DinDanHistroy.cpp"
  4984. >
  4985. <FileConfiguration
  4986. Name="Debug|Win32"
  4987. >
  4988. <Tool
  4989. Name="VCCLCompilerTool"
  4990. PreprocessorDefinitions=""
  4991. />
  4992. </FileConfiguration>
  4993. <FileConfiguration
  4994. Name="Release|Win32"
  4995. >
  4996. <Tool
  4997. Name="VCCLCompilerTool"
  4998. PreprocessorDefinitions=""
  4999. />
  5000. </FileConfiguration>
  5001. </File>
  5002. <File
  5003. RelativePath="DinDanHistroy.h"
  5004. >
  5005. </File>
  5006. <File
  5007. RelativePath="FinanceForm.cpp"
  5008. >
  5009. <FileConfiguration
  5010. Name="Debug|Win32"
  5011. >
  5012. <Tool
  5013. Name="VCCLCompilerTool"
  5014. PreprocessorDefinitions=""
  5015. />
  5016. </FileConfiguration>
  5017. <FileConfiguration
  5018. Name="Release|Win32"
  5019. >
  5020. <Tool
  5021. Name="VCCLCompilerTool"
  5022. PreprocessorDefinitions=""
  5023. />
  5024. </FileConfiguration>
  5025. </File>
  5026. <File
  5027. RelativePath="FinanceForm.h"
  5028. >
  5029. </File>
  5030. <File
  5031. RelativePath="InputDate.cpp"
  5032. >
  5033. <FileConfiguration
  5034. Name="Debug|Win32"
  5035. >
  5036. <Tool
  5037. Name="VCCLCompilerTool"
  5038. PreprocessorDefinitions=""
  5039. />
  5040. </FileConfiguration>
  5041. <FileConfiguration
  5042. Name="Release|Win32"
  5043. >
  5044. <Tool
  5045. Name="VCCLCompilerTool"
  5046. PreprocessorDefinitions=""
  5047. />
  5048. </FileConfiguration>
  5049. </File>
  5050. <File
  5051. RelativePath="InputDate.h"
  5052. >
  5053. </File>
  5054. <File
  5055. RelativePath="MyFormView.cpp"
  5056. >
  5057. <FileConfiguration
  5058. Name="Debug|Win32"
  5059. >
  5060. <Tool
  5061. Name="VCCLCompilerTool"
  5062. PreprocessorDefinitions=""
  5063. />
  5064. </FileConfiguration>
  5065. <FileConfiguration
  5066. Name="Release|Win32"
  5067. >
  5068. <Tool
  5069. Name="VCCLCompilerTool"
  5070. PreprocessorDefinitions=""
  5071. />
  5072. </FileConfiguration>
  5073. </File>
  5074. <File
  5075. RelativePath="MyFormView.h"
  5076. >
  5077. </File>
  5078. <File
  5079. RelativePath="SearchTake.cpp"
  5080. >
  5081. <FileConfiguration
  5082. Name="Debug|Win32"
  5083. >
  5084. <Tool
  5085. Name="VCCLCompilerTool"
  5086. PreprocessorDefinitions=""
  5087. />
  5088. </FileConfiguration>
  5089. <FileConfiguration
  5090. Name="Release|Win32"
  5091. >
  5092. <Tool
  5093. Name="VCCLCompilerTool"
  5094. PreprocessorDefinitions=""
  5095. />
  5096. </FileConfiguration>
  5097. </File>
  5098. <File
  5099. RelativePath="SearchTake.h"
  5100. >
  5101. </File>
  5102. <File
  5103. RelativePath="SearchTake2.cpp"
  5104. >
  5105. <FileConfiguration
  5106. Name="Debug|Win32"
  5107. >
  5108. <Tool
  5109. Name="VCCLCompilerTool"
  5110. PreprocessorDefinitions=""
  5111. />
  5112. </FileConfiguration>
  5113. <FileConfiguration
  5114. Name="Release|Win32"
  5115. >
  5116. <Tool
  5117. Name="VCCLCompilerTool"
  5118. PreprocessorDefinitions=""
  5119. />
  5120. </FileConfiguration>
  5121. </File>
  5122. <File
  5123. RelativePath="SearchTake2.h"
  5124. >
  5125. </File>
  5126. <File
  5127. RelativePath="SearchTake3.cpp"
  5128. >
  5129. <FileConfiguration
  5130. Name="Debug|Win32"
  5131. >
  5132. <Tool
  5133. Name="VCCLCompilerTool"
  5134. PreprocessorDefinitions=""
  5135. />
  5136. </FileConfiguration>
  5137. <FileConfiguration
  5138. Name="Release|Win32"
  5139. >
  5140. <Tool
  5141. Name="VCCLCompilerTool"
  5142. PreprocessorDefinitions=""
  5143. />
  5144. </FileConfiguration>
  5145. </File>
  5146. <File
  5147. RelativePath="SearchTake3.h"
  5148. >
  5149. </File>
  5150. <File
  5151. RelativePath="SearchTake4.cpp"
  5152. >
  5153. <FileConfiguration
  5154. Name="Debug|Win32"
  5155. >
  5156. <Tool
  5157. Name="VCCLCompilerTool"
  5158. PreprocessorDefinitions=""
  5159. />
  5160. </FileConfiguration>
  5161. <FileConfiguration
  5162. Name="Release|Win32"
  5163. >
  5164. <Tool
  5165. Name="VCCLCompilerTool"
  5166. PreprocessorDefinitions=""
  5167. />
  5168. </FileConfiguration>
  5169. </File>
  5170. <File
  5171. RelativePath="SearchTake4.h"
  5172. >
  5173. </File>
  5174. <File
  5175. RelativePath="SearchTake5.cpp"
  5176. >
  5177. <FileConfiguration
  5178. Name="Debug|Win32"
  5179. >
  5180. <Tool
  5181. Name="VCCLCompilerTool"
  5182. PreprocessorDefinitions=""
  5183. />
  5184. </FileConfiguration>
  5185. <FileConfiguration
  5186. Name="Release|Win32"
  5187. >
  5188. <Tool
  5189. Name="VCCLCompilerTool"
  5190. PreprocessorDefinitions=""
  5191. />
  5192. </FileConfiguration>
  5193. </File>
  5194. <File
  5195. RelativePath="SearchTake5.h"
  5196. >
  5197. </File>
  5198. <File
  5199. RelativePath="SPForm.cpp"
  5200. >
  5201. <FileConfiguration
  5202. Name="Debug|Win32"
  5203. >
  5204. <Tool
  5205. Name="VCCLCompilerTool"
  5206. PreprocessorDefinitions=""
  5207. />
  5208. </FileConfiguration>
  5209. <FileConfiguration
  5210. Name="Release|Win32"
  5211. >
  5212. <Tool
  5213. Name="VCCLCompilerTool"
  5214. PreprocessorDefinitions=""
  5215. />
  5216. </FileConfiguration>
  5217. </File>
  5218. <File
  5219. RelativePath="SPForm.h"
  5220. >
  5221. </File>
  5222. <File
  5223. RelativePath="TakeControlDlg.cpp"
  5224. >
  5225. <FileConfiguration
  5226. Name="Debug|Win32"
  5227. >
  5228. <Tool
  5229. Name="VCCLCompilerTool"
  5230. PreprocessorDefinitions=""
  5231. />
  5232. </FileConfiguration>
  5233. <FileConfiguration
  5234. Name="Release|Win32"
  5235. >
  5236. <Tool
  5237. Name="VCCLCompilerTool"
  5238. PreprocessorDefinitions=""
  5239. />
  5240. </FileConfiguration>
  5241. </File>
  5242. <File
  5243. RelativePath="TakeControlDlg.h"
  5244. >
  5245. </File>
  5246. <File
  5247. RelativePath="TakeControlDlg1.cpp"
  5248. >
  5249. <FileConfiguration
  5250. Name="Debug|Win32"
  5251. >
  5252. <Tool
  5253. Name="VCCLCompilerTool"
  5254. PreprocessorDefinitions=""
  5255. />
  5256. </FileConfiguration>
  5257. <FileConfiguration
  5258. Name="Release|Win32"
  5259. >
  5260. <Tool
  5261. Name="VCCLCompilerTool"
  5262. PreprocessorDefinitions=""
  5263. />
  5264. </FileConfiguration>
  5265. </File>
  5266. <File
  5267. RelativePath="TakeControlDlg1.h"
  5268. >
  5269. </File>
  5270. <File
  5271. RelativePath="TakeControlDlg2.cpp"
  5272. >
  5273. <FileConfiguration
  5274. Name="Debug|Win32"
  5275. >
  5276. <Tool
  5277. Name="VCCLCompilerTool"
  5278. PreprocessorDefinitions=""
  5279. />
  5280. </FileConfiguration>
  5281. <FileConfiguration
  5282. Name="Release|Win32"
  5283. >
  5284. <Tool
  5285. Name="VCCLCompilerTool"
  5286. PreprocessorDefinitions=""
  5287. />
  5288. </FileConfiguration>
  5289. </File>
  5290. <File
  5291. RelativePath="TakeControlDlg2.h"
  5292. >
  5293. </File>
  5294. <File
  5295. RelativePath="TakeControlDlg3.cpp"
  5296. >
  5297. <FileConfiguration
  5298. Name="Debug|Win32"
  5299. >
  5300. <Tool
  5301. Name="VCCLCompilerTool"
  5302. PreprocessorDefinitions=""
  5303. />
  5304. </FileConfiguration>
  5305. <FileConfiguration
  5306. Name="Release|Win32"
  5307. >
  5308. <Tool
  5309. Name="VCCLCompilerTool"
  5310. PreprocessorDefinitions=""
  5311. />
  5312. </FileConfiguration>
  5313. </File>
  5314. <File
  5315. RelativePath="TakeControlDlg3.h"
  5316. >
  5317. </File>
  5318. <File
  5319. RelativePath="TakeControlDlg4.cpp"
  5320. >
  5321. <FileConfiguration
  5322. Name="Debug|Win32"
  5323. >
  5324. <Tool
  5325. Name="VCCLCompilerTool"
  5326. PreprocessorDefinitions=""
  5327. />
  5328. </FileConfiguration>
  5329. <FileConfiguration
  5330. Name="Release|Win32"
  5331. >
  5332. <Tool
  5333. Name="VCCLCompilerTool"
  5334. PreprocessorDefinitions=""
  5335. />
  5336. </FileConfiguration>
  5337. </File>
  5338. <File
  5339. RelativePath="TakeControlDlg4.h"
  5340. >
  5341. </File>
  5342. <File
  5343. RelativePath="TakeControlDlg9.cpp"
  5344. >
  5345. <FileConfiguration
  5346. Name="Debug|Win32"
  5347. >
  5348. <Tool
  5349. Name="VCCLCompilerTool"
  5350. PreprocessorDefinitions=""
  5351. />
  5352. </FileConfiguration>
  5353. <FileConfiguration
  5354. Name="Release|Win32"
  5355. >
  5356. <Tool
  5357. Name="VCCLCompilerTool"
  5358. PreprocessorDefinitions=""
  5359. />
  5360. </FileConfiguration>
  5361. </File>
  5362. <File
  5363. RelativePath="TakeControlDlg9.h"
  5364. >
  5365. </File>
  5366. <File
  5367. RelativePath="TakeControlForm.cpp"
  5368. >
  5369. <FileConfiguration
  5370. Name="Debug|Win32"
  5371. >
  5372. <Tool
  5373. Name="VCCLCompilerTool"
  5374. PreprocessorDefinitions=""
  5375. />
  5376. </FileConfiguration>
  5377. <FileConfiguration
  5378. Name="Release|Win32"
  5379. >
  5380. <Tool
  5381. Name="VCCLCompilerTool"
  5382. PreprocessorDefinitions=""
  5383. />
  5384. </FileConfiguration>
  5385. </File>
  5386. <File
  5387. RelativePath="TakeControlForm.h"
  5388. >
  5389. </File>
  5390. <File
  5391. RelativePath="TodayForm.cpp"
  5392. >
  5393. <FileConfiguration
  5394. Name="Debug|Win32"
  5395. >
  5396. <Tool
  5397. Name="VCCLCompilerTool"
  5398. PreprocessorDefinitions=""
  5399. />
  5400. </FileConfiguration>
  5401. <FileConfiguration
  5402. Name="Release|Win32"
  5403. >
  5404. <Tool
  5405. Name="VCCLCompilerTool"
  5406. PreprocessorDefinitions=""
  5407. />
  5408. </FileConfiguration>
  5409. </File>
  5410. <File
  5411. RelativePath="TodayForm.h"
  5412. >
  5413. </File>
  5414. <File
  5415. RelativePath="TodayForm2.cpp"
  5416. >
  5417. <FileConfiguration
  5418. Name="Debug|Win32"
  5419. >
  5420. <Tool
  5421. Name="VCCLCompilerTool"
  5422. PreprocessorDefinitions=""
  5423. />
  5424. </FileConfiguration>
  5425. <FileConfiguration
  5426. Name="Release|Win32"
  5427. >
  5428. <Tool
  5429. Name="VCCLCompilerTool"
  5430. PreprocessorDefinitions=""
  5431. />
  5432. </FileConfiguration>
  5433. </File>
  5434. <File
  5435. RelativePath="TodayForm2.h"
  5436. >
  5437. </File>
  5438. <File
  5439. RelativePath="TodayFormChild.cpp"
  5440. >
  5441. <FileConfiguration
  5442. Name="Debug|Win32"
  5443. >
  5444. <Tool
  5445. Name="VCCLCompilerTool"
  5446. PreprocessorDefinitions=""
  5447. />
  5448. </FileConfiguration>
  5449. <FileConfiguration
  5450. Name="Release|Win32"
  5451. >
  5452. <Tool
  5453. Name="VCCLCompilerTool"
  5454. PreprocessorDefinitions=""
  5455. />
  5456. </FileConfiguration>
  5457. </File>
  5458. <File
  5459. RelativePath="TodayFormChild.h"
  5460. >
  5461. </File>
  5462. </Filter>
  5463. <Filter
  5464. Name="商品类别"
  5465. >
  5466. <File
  5467. RelativePath="ClientContract.cpp"
  5468. >
  5469. <FileConfiguration
  5470. Name="Debug|Win32"
  5471. >
  5472. <Tool
  5473. Name="VCCLCompilerTool"
  5474. PreprocessorDefinitions=""
  5475. />
  5476. </FileConfiguration>
  5477. <FileConfiguration
  5478. Name="Release|Win32"
  5479. >
  5480. <Tool
  5481. Name="VCCLCompilerTool"
  5482. PreprocessorDefinitions=""
  5483. />
  5484. </FileConfiguration>
  5485. </File>
  5486. <File
  5487. RelativePath="ClientContract.h"
  5488. >
  5489. </File>
  5490. <File
  5491. RelativePath="ShangPin.cpp"
  5492. >
  5493. <FileConfiguration
  5494. Name="Debug|Win32"
  5495. >
  5496. <Tool
  5497. Name="VCCLCompilerTool"
  5498. PreprocessorDefinitions=""
  5499. />
  5500. </FileConfiguration>
  5501. <FileConfiguration
  5502. Name="Release|Win32"
  5503. >
  5504. <Tool
  5505. Name="VCCLCompilerTool"
  5506. PreprocessorDefinitions=""
  5507. />
  5508. </FileConfiguration>
  5509. </File>
  5510. <File
  5511. RelativePath="ShangPin.h"
  5512. >
  5513. </File>
  5514. <File
  5515. RelativePath="SPBox.cpp"
  5516. >
  5517. <FileConfiguration
  5518. Name="Debug|Win32"
  5519. >
  5520. <Tool
  5521. Name="VCCLCompilerTool"
  5522. PreprocessorDefinitions=""
  5523. />
  5524. </FileConfiguration>
  5525. <FileConfiguration
  5526. Name="Release|Win32"
  5527. >
  5528. <Tool
  5529. Name="VCCLCompilerTool"
  5530. PreprocessorDefinitions=""
  5531. />
  5532. </FileConfiguration>
  5533. </File>
  5534. <File
  5535. RelativePath="SPBox.h"
  5536. >
  5537. </File>
  5538. <File
  5539. RelativePath="SPLBDlg.cpp"
  5540. >
  5541. <FileConfiguration
  5542. Name="Debug|Win32"
  5543. >
  5544. <Tool
  5545. Name="VCCLCompilerTool"
  5546. PreprocessorDefinitions=""
  5547. />
  5548. </FileConfiguration>
  5549. <FileConfiguration
  5550. Name="Release|Win32"
  5551. >
  5552. <Tool
  5553. Name="VCCLCompilerTool"
  5554. PreprocessorDefinitions=""
  5555. />
  5556. </FileConfiguration>
  5557. </File>
  5558. <File
  5559. RelativePath="SPLBDlg.h"
  5560. >
  5561. </File>
  5562. </Filter>
  5563. <Filter
  5564. Name="Nero"
  5565. >
  5566. <File
  5567. RelativePath="NeroBurn.cpp"
  5568. >
  5569. <FileConfiguration
  5570. Name="Debug|Win32"
  5571. >
  5572. <Tool
  5573. Name="VCCLCompilerTool"
  5574. PreprocessorDefinitions=""
  5575. />
  5576. </FileConfiguration>
  5577. <FileConfiguration
  5578. Name="Release|Win32"
  5579. >
  5580. <Tool
  5581. Name="VCCLCompilerTool"
  5582. PreprocessorDefinitions=""
  5583. />
  5584. </FileConfiguration>
  5585. </File>
  5586. <File
  5587. RelativePath="NeroBurn.h"
  5588. >
  5589. </File>
  5590. <File
  5591. RelativePath="NeroDlg.cpp"
  5592. >
  5593. <FileConfiguration
  5594. Name="Debug|Win32"
  5595. >
  5596. <Tool
  5597. Name="VCCLCompilerTool"
  5598. PreprocessorDefinitions=""
  5599. />
  5600. </FileConfiguration>
  5601. <FileConfiguration
  5602. Name="Release|Win32"
  5603. >
  5604. <Tool
  5605. Name="VCCLCompilerTool"
  5606. PreprocessorDefinitions=""
  5607. />
  5608. </FileConfiguration>
  5609. </File>
  5610. <File
  5611. RelativePath="NeroDlg.h"
  5612. >
  5613. </File>
  5614. <File
  5615. RelativePath="SelBrunDevice.cpp"
  5616. >
  5617. <FileConfiguration
  5618. Name="Debug|Win32"
  5619. >
  5620. <Tool
  5621. Name="VCCLCompilerTool"
  5622. PreprocessorDefinitions=""
  5623. />
  5624. </FileConfiguration>
  5625. <FileConfiguration
  5626. Name="Release|Win32"
  5627. >
  5628. <Tool
  5629. Name="VCCLCompilerTool"
  5630. PreprocessorDefinitions=""
  5631. />
  5632. </FileConfiguration>
  5633. </File>
  5634. <File
  5635. RelativePath="SelBrunDevice.h"
  5636. >
  5637. </File>
  5638. </Filter>
  5639. <Filter
  5640. Name="日财务表"
  5641. >
  5642. <File
  5643. RelativePath="ClientMoney.cpp"
  5644. >
  5645. <FileConfiguration
  5646. Name="Debug|Win32"
  5647. >
  5648. <Tool
  5649. Name="VCCLCompilerTool"
  5650. PreprocessorDefinitions=""
  5651. />
  5652. </FileConfiguration>
  5653. <FileConfiguration
  5654. Name="Release|Win32"
  5655. >
  5656. <Tool
  5657. Name="VCCLCompilerTool"
  5658. PreprocessorDefinitions=""
  5659. />
  5660. </FileConfiguration>
  5661. </File>
  5662. <File
  5663. RelativePath="ClientMoney.h"
  5664. >
  5665. </File>
  5666. <File
  5667. RelativePath="DailyForm.cpp"
  5668. >
  5669. <FileConfiguration
  5670. Name="Debug|Win32"
  5671. >
  5672. <Tool
  5673. Name="VCCLCompilerTool"
  5674. PreprocessorDefinitions=""
  5675. />
  5676. </FileConfiguration>
  5677. <FileConfiguration
  5678. Name="Release|Win32"
  5679. >
  5680. <Tool
  5681. Name="VCCLCompilerTool"
  5682. PreprocessorDefinitions=""
  5683. />
  5684. </FileConfiguration>
  5685. </File>
  5686. <File
  5687. RelativePath="DailyForm.h"
  5688. >
  5689. </File>
  5690. <File
  5691. RelativePath="InputWork.cpp"
  5692. >
  5693. <FileConfiguration
  5694. Name="Debug|Win32"
  5695. >
  5696. <Tool
  5697. Name="VCCLCompilerTool"
  5698. PreprocessorDefinitions=""
  5699. />
  5700. </FileConfiguration>
  5701. <FileConfiguration
  5702. Name="Release|Win32"
  5703. >
  5704. <Tool
  5705. Name="VCCLCompilerTool"
  5706. PreprocessorDefinitions=""
  5707. />
  5708. </FileConfiguration>
  5709. </File>
  5710. <File
  5711. RelativePath="InputWork.h"
  5712. >
  5713. </File>
  5714. <File
  5715. RelativePath="InputWork2.cpp"
  5716. >
  5717. <FileConfiguration
  5718. Name="Debug|Win32"
  5719. >
  5720. <Tool
  5721. Name="VCCLCompilerTool"
  5722. PreprocessorDefinitions=""
  5723. />
  5724. </FileConfiguration>
  5725. <FileConfiguration
  5726. Name="Release|Win32"
  5727. >
  5728. <Tool
  5729. Name="VCCLCompilerTool"
  5730. PreprocessorDefinitions=""
  5731. />
  5732. </FileConfiguration>
  5733. </File>
  5734. <File
  5735. RelativePath="InputWork2.h"
  5736. >
  5737. </File>
  5738. <File
  5739. RelativePath="InputWork3.cpp"
  5740. >
  5741. <FileConfiguration
  5742. Name="Debug|Win32"
  5743. >
  5744. <Tool
  5745. Name="VCCLCompilerTool"
  5746. PreprocessorDefinitions=""
  5747. />
  5748. </FileConfiguration>
  5749. <FileConfiguration
  5750. Name="Release|Win32"
  5751. >
  5752. <Tool
  5753. Name="VCCLCompilerTool"
  5754. PreprocessorDefinitions=""
  5755. />
  5756. </FileConfiguration>
  5757. </File>
  5758. <File
  5759. RelativePath="InputWork3.h"
  5760. >
  5761. </File>
  5762. <File
  5763. RelativePath="MonthForm.cpp"
  5764. >
  5765. <FileConfiguration
  5766. Name="Debug|Win32"
  5767. >
  5768. <Tool
  5769. Name="VCCLCompilerTool"
  5770. PreprocessorDefinitions=""
  5771. />
  5772. </FileConfiguration>
  5773. <FileConfiguration
  5774. Name="Release|Win32"
  5775. >
  5776. <Tool
  5777. Name="VCCLCompilerTool"
  5778. PreprocessorDefinitions=""
  5779. />
  5780. </FileConfiguration>
  5781. </File>
  5782. <File
  5783. RelativePath="MonthForm.h"
  5784. >
  5785. </File>
  5786. <File
  5787. RelativePath="MonthForm2.cpp"
  5788. >
  5789. <FileConfiguration
  5790. Name="Debug|Win32"
  5791. >
  5792. <Tool
  5793. Name="VCCLCompilerTool"
  5794. PreprocessorDefinitions=""
  5795. />
  5796. </FileConfiguration>
  5797. <FileConfiguration
  5798. Name="Release|Win32"
  5799. >
  5800. <Tool
  5801. Name="VCCLCompilerTool"
  5802. PreprocessorDefinitions=""
  5803. />
  5804. </FileConfiguration>
  5805. </File>
  5806. <File
  5807. RelativePath="MonthForm2.h"
  5808. >
  5809. </File>
  5810. <File
  5811. RelativePath="MySalary.cpp"
  5812. >
  5813. <FileConfiguration
  5814. Name="Debug|Win32"
  5815. >
  5816. <Tool
  5817. Name="VCCLCompilerTool"
  5818. PreprocessorDefinitions=""
  5819. />
  5820. </FileConfiguration>
  5821. <FileConfiguration
  5822. Name="Release|Win32"
  5823. >
  5824. <Tool
  5825. Name="VCCLCompilerTool"
  5826. PreprocessorDefinitions=""
  5827. />
  5828. </FileConfiguration>
  5829. </File>
  5830. <File
  5831. RelativePath="MySalary.h"
  5832. >
  5833. </File>
  5834. <File
  5835. RelativePath="SalaryRateSet.cpp"
  5836. >
  5837. <FileConfiguration
  5838. Name="Debug|Win32"
  5839. >
  5840. <Tool
  5841. Name="VCCLCompilerTool"
  5842. PreprocessorDefinitions=""
  5843. />
  5844. </FileConfiguration>
  5845. <FileConfiguration
  5846. Name="Release|Win32"
  5847. >
  5848. <Tool
  5849. Name="VCCLCompilerTool"
  5850. PreprocessorDefinitions=""
  5851. />
  5852. </FileConfiguration>
  5853. </File>
  5854. <File
  5855. RelativePath="SalaryRateSet.h"
  5856. >
  5857. </File>
  5858. <File
  5859. RelativePath="SalarySet.cpp"
  5860. >
  5861. <FileConfiguration
  5862. Name="Debug|Win32"
  5863. >
  5864. <Tool
  5865. Name="VCCLCompilerTool"
  5866. PreprocessorDefinitions=""
  5867. />
  5868. </FileConfiguration>
  5869. <FileConfiguration
  5870. Name="Release|Win32"
  5871. >
  5872. <Tool
  5873. Name="VCCLCompilerTool"
  5874. PreprocessorDefinitions=""
  5875. />
  5876. </FileConfiguration>
  5877. </File>
  5878. <File
  5879. RelativePath="SalarySet.h"
  5880. >
  5881. </File>
  5882. <File
  5883. RelativePath="SalarySet2.cpp"
  5884. >
  5885. <FileConfiguration
  5886. Name="Debug|Win32"
  5887. >
  5888. <Tool
  5889. Name="VCCLCompilerTool"
  5890. PreprocessorDefinitions=""
  5891. />
  5892. </FileConfiguration>
  5893. <FileConfiguration
  5894. Name="Release|Win32"
  5895. >
  5896. <Tool
  5897. Name="VCCLCompilerTool"
  5898. PreprocessorDefinitions=""
  5899. />
  5900. </FileConfiguration>
  5901. </File>
  5902. <File
  5903. RelativePath="SalarySet2.h"
  5904. >
  5905. </File>
  5906. <File
  5907. RelativePath="SalarySet3.cpp"
  5908. >
  5909. <FileConfiguration
  5910. Name="Debug|Win32"
  5911. >
  5912. <Tool
  5913. Name="VCCLCompilerTool"
  5914. PreprocessorDefinitions=""
  5915. />
  5916. </FileConfiguration>
  5917. <FileConfiguration
  5918. Name="Release|Win32"
  5919. >
  5920. <Tool
  5921. Name="VCCLCompilerTool"
  5922. PreprocessorDefinitions=""
  5923. />
  5924. </FileConfiguration>
  5925. </File>
  5926. <File
  5927. RelativePath="SalarySet3.h"
  5928. >
  5929. </File>
  5930. <File
  5931. RelativePath="SalarySet4.cpp"
  5932. >
  5933. <FileConfiguration
  5934. Name="Debug|Win32"
  5935. >
  5936. <Tool
  5937. Name="VCCLCompilerTool"
  5938. PreprocessorDefinitions=""
  5939. />
  5940. </FileConfiguration>
  5941. <FileConfiguration
  5942. Name="Release|Win32"
  5943. >
  5944. <Tool
  5945. Name="VCCLCompilerTool"
  5946. PreprocessorDefinitions=""
  5947. />
  5948. </FileConfiguration>
  5949. </File>
  5950. <File
  5951. RelativePath="SalarySet4.h"
  5952. >
  5953. </File>
  5954. <File
  5955. RelativePath="SetRate1.cpp"
  5956. >
  5957. <FileConfiguration
  5958. Name="Debug|Win32"
  5959. >
  5960. <Tool
  5961. Name="VCCLCompilerTool"
  5962. PreprocessorDefinitions=""
  5963. />
  5964. </FileConfiguration>
  5965. <FileConfiguration
  5966. Name="Release|Win32"
  5967. >
  5968. <Tool
  5969. Name="VCCLCompilerTool"
  5970. PreprocessorDefinitions=""
  5971. />
  5972. </FileConfiguration>
  5973. </File>
  5974. <File
  5975. RelativePath="SetRate1.h"
  5976. >
  5977. </File>
  5978. <File
  5979. RelativePath="SetRate2.cpp"
  5980. >
  5981. <FileConfiguration
  5982. Name="Debug|Win32"
  5983. >
  5984. <Tool
  5985. Name="VCCLCompilerTool"
  5986. PreprocessorDefinitions=""
  5987. />
  5988. </FileConfiguration>
  5989. <FileConfiguration
  5990. Name="Release|Win32"
  5991. >
  5992. <Tool
  5993. Name="VCCLCompilerTool"
  5994. PreprocessorDefinitions=""
  5995. />
  5996. </FileConfiguration>
  5997. </File>
  5998. <File
  5999. RelativePath="SetRate2.h"
  6000. >
  6001. </File>
  6002. <File
  6003. RelativePath="StaffAchievement.cpp"
  6004. >
  6005. <FileConfiguration
  6006. Name="Debug|Win32"
  6007. >
  6008. <Tool
  6009. Name="VCCLCompilerTool"
  6010. PreprocessorDefinitions=""
  6011. />
  6012. </FileConfiguration>
  6013. <FileConfiguration
  6014. Name="Release|Win32"
  6015. >
  6016. <Tool
  6017. Name="VCCLCompilerTool"
  6018. PreprocessorDefinitions=""
  6019. />
  6020. </FileConfiguration>
  6021. </File>
  6022. <File
  6023. RelativePath="StaffAchievement.h"
  6024. >
  6025. </File>
  6026. <File
  6027. RelativePath="StaffAchievementShowAll.cpp"
  6028. >
  6029. <FileConfiguration
  6030. Name="Debug|Win32"
  6031. >
  6032. <Tool
  6033. Name="VCCLCompilerTool"
  6034. PreprocessorDefinitions=""
  6035. />
  6036. </FileConfiguration>
  6037. <FileConfiguration
  6038. Name="Release|Win32"
  6039. >
  6040. <Tool
  6041. Name="VCCLCompilerTool"
  6042. PreprocessorDefinitions=""
  6043. />
  6044. </FileConfiguration>
  6045. </File>
  6046. <File
  6047. RelativePath="StaffAchievementShowAll.h"
  6048. >
  6049. </File>
  6050. <File
  6051. RelativePath="YearForm.cpp"
  6052. >
  6053. <FileConfiguration
  6054. Name="Debug|Win32"
  6055. >
  6056. <Tool
  6057. Name="VCCLCompilerTool"
  6058. PreprocessorDefinitions=""
  6059. />
  6060. </FileConfiguration>
  6061. <FileConfiguration
  6062. Name="Release|Win32"
  6063. >
  6064. <Tool
  6065. Name="VCCLCompilerTool"
  6066. PreprocessorDefinitions=""
  6067. />
  6068. </FileConfiguration>
  6069. </File>
  6070. <File
  6071. RelativePath="YearForm.h"
  6072. >
  6073. </File>
  6074. <File
  6075. RelativePath="YearForm2.cpp"
  6076. >
  6077. <FileConfiguration
  6078. Name="Debug|Win32"
  6079. >
  6080. <Tool
  6081. Name="VCCLCompilerTool"
  6082. PreprocessorDefinitions=""
  6083. />
  6084. </FileConfiguration>
  6085. <FileConfiguration
  6086. Name="Release|Win32"
  6087. >
  6088. <Tool
  6089. Name="VCCLCompilerTool"
  6090. PreprocessorDefinitions=""
  6091. />
  6092. </FileConfiguration>
  6093. </File>
  6094. <File
  6095. RelativePath="YearForm2.h"
  6096. >
  6097. </File>
  6098. <File
  6099. RelativePath="YearFormBranch.cpp"
  6100. >
  6101. <FileConfiguration
  6102. Name="Debug|Win32"
  6103. >
  6104. <Tool
  6105. Name="VCCLCompilerTool"
  6106. PreprocessorDefinitions=""
  6107. />
  6108. </FileConfiguration>
  6109. <FileConfiguration
  6110. Name="Release|Win32"
  6111. >
  6112. <Tool
  6113. Name="VCCLCompilerTool"
  6114. PreprocessorDefinitions=""
  6115. />
  6116. </FileConfiguration>
  6117. </File>
  6118. <File
  6119. RelativePath="YearFormBranch.h"
  6120. >
  6121. </File>
  6122. <File
  6123. RelativePath="YearFormBranch2.cpp"
  6124. >
  6125. <FileConfiguration
  6126. Name="Debug|Win32"
  6127. >
  6128. <Tool
  6129. Name="VCCLCompilerTool"
  6130. PreprocessorDefinitions=""
  6131. />
  6132. </FileConfiguration>
  6133. <FileConfiguration
  6134. Name="Release|Win32"
  6135. >
  6136. <Tool
  6137. Name="VCCLCompilerTool"
  6138. PreprocessorDefinitions=""
  6139. />
  6140. </FileConfiguration>
  6141. </File>
  6142. <File
  6143. RelativePath="YearFormBranch2.h"
  6144. >
  6145. </File>
  6146. </Filter>
  6147. <Filter
  6148. Name="SendMsg"
  6149. >
  6150. <File
  6151. RelativePath="ClientForm.cpp"
  6152. >
  6153. <FileConfiguration
  6154. Name="Debug|Win32"
  6155. >
  6156. <Tool
  6157. Name="VCCLCompilerTool"
  6158. PreprocessorDefinitions=""
  6159. />
  6160. </FileConfiguration>
  6161. <FileConfiguration
  6162. Name="Release|Win32"
  6163. >
  6164. <Tool
  6165. Name="VCCLCompilerTool"
  6166. PreprocessorDefinitions=""
  6167. />
  6168. </FileConfiguration>
  6169. </File>
  6170. <File
  6171. RelativePath="ClientForm.h"
  6172. >
  6173. </File>
  6174. <File
  6175. RelativePath="EmployeeMsg.cpp"
  6176. >
  6177. <FileConfiguration
  6178. Name="Debug|Win32"
  6179. >
  6180. <Tool
  6181. Name="VCCLCompilerTool"
  6182. PreprocessorDefinitions=""
  6183. />
  6184. </FileConfiguration>
  6185. <FileConfiguration
  6186. Name="Release|Win32"
  6187. >
  6188. <Tool
  6189. Name="VCCLCompilerTool"
  6190. PreprocessorDefinitions=""
  6191. />
  6192. </FileConfiguration>
  6193. </File>
  6194. <File
  6195. RelativePath="EmployeeMsg.h"
  6196. >
  6197. </File>
  6198. <File
  6199. RelativePath="GetPhone.cpp"
  6200. >
  6201. <FileConfiguration
  6202. Name="Debug|Win32"
  6203. >
  6204. <Tool
  6205. Name="VCCLCompilerTool"
  6206. PreprocessorDefinitions=""
  6207. />
  6208. </FileConfiguration>
  6209. <FileConfiguration
  6210. Name="Release|Win32"
  6211. >
  6212. <Tool
  6213. Name="VCCLCompilerTool"
  6214. PreprocessorDefinitions=""
  6215. />
  6216. </FileConfiguration>
  6217. </File>
  6218. <File
  6219. RelativePath="GetPhone.h"
  6220. >
  6221. </File>
  6222. <File
  6223. RelativePath="GetPhoneAge.cpp"
  6224. >
  6225. <FileConfiguration
  6226. Name="Debug|Win32"
  6227. >
  6228. <Tool
  6229. Name="VCCLCompilerTool"
  6230. PreprocessorDefinitions=""
  6231. />
  6232. </FileConfiguration>
  6233. <FileConfiguration
  6234. Name="Release|Win32"
  6235. >
  6236. <Tool
  6237. Name="VCCLCompilerTool"
  6238. PreprocessorDefinitions=""
  6239. />
  6240. </FileConfiguration>
  6241. </File>
  6242. <File
  6243. RelativePath="GetPhoneAge.h"
  6244. >
  6245. </File>
  6246. <File
  6247. RelativePath="InsideMsg.cpp"
  6248. >
  6249. <FileConfiguration
  6250. Name="Debug|Win32"
  6251. >
  6252. <Tool
  6253. Name="VCCLCompilerTool"
  6254. PreprocessorDefinitions=""
  6255. />
  6256. </FileConfiguration>
  6257. <FileConfiguration
  6258. Name="Release|Win32"
  6259. >
  6260. <Tool
  6261. Name="VCCLCompilerTool"
  6262. PreprocessorDefinitions=""
  6263. />
  6264. </FileConfiguration>
  6265. </File>
  6266. <File
  6267. RelativePath="InsideMsg.h"
  6268. >
  6269. </File>
  6270. <File
  6271. RelativePath="MsgReg.cpp"
  6272. >
  6273. <FileConfiguration
  6274. Name="Debug|Win32"
  6275. >
  6276. <Tool
  6277. Name="VCCLCompilerTool"
  6278. PreprocessorDefinitions=""
  6279. />
  6280. </FileConfiguration>
  6281. <FileConfiguration
  6282. Name="Release|Win32"
  6283. >
  6284. <Tool
  6285. Name="VCCLCompilerTool"
  6286. PreprocessorDefinitions=""
  6287. />
  6288. </FileConfiguration>
  6289. </File>
  6290. <File
  6291. RelativePath="MsgReg.h"
  6292. >
  6293. </File>
  6294. <File
  6295. RelativePath="MsgSet.cpp"
  6296. >
  6297. <FileConfiguration
  6298. Name="Debug|Win32"
  6299. >
  6300. <Tool
  6301. Name="VCCLCompilerTool"
  6302. PreprocessorDefinitions=""
  6303. />
  6304. </FileConfiguration>
  6305. <FileConfiguration
  6306. Name="Release|Win32"
  6307. >
  6308. <Tool
  6309. Name="VCCLCompilerTool"
  6310. PreprocessorDefinitions=""
  6311. />
  6312. </FileConfiguration>
  6313. </File>
  6314. <File
  6315. RelativePath="MsgSet.h"
  6316. >
  6317. </File>
  6318. <File
  6319. RelativePath="MultiLineListBox.cpp"
  6320. >
  6321. <FileConfiguration
  6322. Name="Debug|Win32"
  6323. >
  6324. <Tool
  6325. Name="VCCLCompilerTool"
  6326. PreprocessorDefinitions=""
  6327. />
  6328. </FileConfiguration>
  6329. <FileConfiguration
  6330. Name="Release|Win32"
  6331. >
  6332. <Tool
  6333. Name="VCCLCompilerTool"
  6334. PreprocessorDefinitions=""
  6335. />
  6336. </FileConfiguration>
  6337. </File>
  6338. <File
  6339. RelativePath="MultiLineListBox.h"
  6340. >
  6341. </File>
  6342. <File
  6343. RelativePath="PhoneMsgSet.cpp"
  6344. >
  6345. <FileConfiguration
  6346. Name="Debug|Win32"
  6347. >
  6348. <Tool
  6349. Name="VCCLCompilerTool"
  6350. PreprocessorDefinitions=""
  6351. />
  6352. </FileConfiguration>
  6353. <FileConfiguration
  6354. Name="Release|Win32"
  6355. >
  6356. <Tool
  6357. Name="VCCLCompilerTool"
  6358. PreprocessorDefinitions=""
  6359. />
  6360. </FileConfiguration>
  6361. </File>
  6362. <File
  6363. RelativePath="PhoneMsgSet.h"
  6364. >
  6365. </File>
  6366. <File
  6367. RelativePath="SelFile.cpp"
  6368. >
  6369. <FileConfiguration
  6370. Name="Debug|Win32"
  6371. >
  6372. <Tool
  6373. Name="VCCLCompilerTool"
  6374. PreprocessorDefinitions=""
  6375. />
  6376. </FileConfiguration>
  6377. <FileConfiguration
  6378. Name="Release|Win32"
  6379. >
  6380. <Tool
  6381. Name="VCCLCompilerTool"
  6382. PreprocessorDefinitions=""
  6383. />
  6384. </FileConfiguration>
  6385. </File>
  6386. <File
  6387. RelativePath="SelFile.h"
  6388. >
  6389. </File>
  6390. <File
  6391. RelativePath="SelMsgContent.cpp"
  6392. >
  6393. <FileConfiguration
  6394. Name="Debug|Win32"
  6395. >
  6396. <Tool
  6397. Name="VCCLCompilerTool"
  6398. PreprocessorDefinitions=""
  6399. />
  6400. </FileConfiguration>
  6401. <FileConfiguration
  6402. Name="Release|Win32"
  6403. >
  6404. <Tool
  6405. Name="VCCLCompilerTool"
  6406. PreprocessorDefinitions=""
  6407. />
  6408. </FileConfiguration>
  6409. </File>
  6410. <File
  6411. RelativePath="SelMsgContent.h"
  6412. >
  6413. </File>
  6414. <File
  6415. RelativePath="SelMsgContent2.cpp"
  6416. >
  6417. <FileConfiguration
  6418. Name="Debug|Win32"
  6419. >
  6420. <Tool
  6421. Name="VCCLCompilerTool"
  6422. PreprocessorDefinitions=""
  6423. />
  6424. </FileConfiguration>
  6425. <FileConfiguration
  6426. Name="Release|Win32"
  6427. >
  6428. <Tool
  6429. Name="VCCLCompilerTool"
  6430. PreprocessorDefinitions=""
  6431. />
  6432. </FileConfiguration>
  6433. </File>
  6434. <File
  6435. RelativePath="SelMsgContent2.h"
  6436. >
  6437. </File>
  6438. <File
  6439. RelativePath="SendInsideMsg.cpp"
  6440. >
  6441. <FileConfiguration
  6442. Name="Debug|Win32"
  6443. >
  6444. <Tool
  6445. Name="VCCLCompilerTool"
  6446. PreprocessorDefinitions=""
  6447. />
  6448. </FileConfiguration>
  6449. <FileConfiguration
  6450. Name="Release|Win32"
  6451. >
  6452. <Tool
  6453. Name="VCCLCompilerTool"
  6454. PreprocessorDefinitions=""
  6455. />
  6456. </FileConfiguration>
  6457. </File>
  6458. <File
  6459. RelativePath="SendInsideMsg.h"
  6460. >
  6461. </File>
  6462. <File
  6463. RelativePath="SendInsideMsg2.cpp"
  6464. >
  6465. <FileConfiguration
  6466. Name="Debug|Win32"
  6467. >
  6468. <Tool
  6469. Name="VCCLCompilerTool"
  6470. PreprocessorDefinitions=""
  6471. />
  6472. </FileConfiguration>
  6473. <FileConfiguration
  6474. Name="Release|Win32"
  6475. >
  6476. <Tool
  6477. Name="VCCLCompilerTool"
  6478. PreprocessorDefinitions=""
  6479. />
  6480. </FileConfiguration>
  6481. </File>
  6482. <File
  6483. RelativePath="SendInsideMsg2.h"
  6484. >
  6485. </File>
  6486. <File
  6487. RelativePath="SendMsg.cpp"
  6488. >
  6489. <FileConfiguration
  6490. Name="Debug|Win32"
  6491. >
  6492. <Tool
  6493. Name="VCCLCompilerTool"
  6494. PreprocessorDefinitions=""
  6495. />
  6496. </FileConfiguration>
  6497. <FileConfiguration
  6498. Name="Release|Win32"
  6499. >
  6500. <Tool
  6501. Name="VCCLCompilerTool"
  6502. PreprocessorDefinitions=""
  6503. />
  6504. </FileConfiguration>
  6505. </File>
  6506. <File
  6507. RelativePath="SendMsg.h"
  6508. >
  6509. </File>
  6510. <File
  6511. RelativePath="SendMsgDlg.cpp"
  6512. >
  6513. <FileConfiguration
  6514. Name="Debug|Win32"
  6515. >
  6516. <Tool
  6517. Name="VCCLCompilerTool"
  6518. PreprocessorDefinitions=""
  6519. />
  6520. </FileConfiguration>
  6521. <FileConfiguration
  6522. Name="Release|Win32"
  6523. >
  6524. <Tool
  6525. Name="VCCLCompilerTool"
  6526. PreprocessorDefinitions=""
  6527. />
  6528. </FileConfiguration>
  6529. </File>
  6530. <File
  6531. RelativePath="SendMsgDlg.h"
  6532. >
  6533. </File>
  6534. <File
  6535. RelativePath="SetChildMsg.cpp"
  6536. >
  6537. <FileConfiguration
  6538. Name="Debug|Win32"
  6539. >
  6540. <Tool
  6541. Name="VCCLCompilerTool"
  6542. PreprocessorDefinitions=""
  6543. />
  6544. </FileConfiguration>
  6545. <FileConfiguration
  6546. Name="Release|Win32"
  6547. >
  6548. <Tool
  6549. Name="VCCLCompilerTool"
  6550. PreprocessorDefinitions=""
  6551. />
  6552. </FileConfiguration>
  6553. </File>
  6554. <File
  6555. RelativePath="SetChildMsg.h"
  6556. >
  6557. </File>
  6558. <File
  6559. RelativePath="WorkMsg.cpp"
  6560. >
  6561. <FileConfiguration
  6562. Name="Debug|Win32"
  6563. >
  6564. <Tool
  6565. Name="VCCLCompilerTool"
  6566. PreprocessorDefinitions=""
  6567. />
  6568. </FileConfiguration>
  6569. <FileConfiguration
  6570. Name="Release|Win32"
  6571. >
  6572. <Tool
  6573. Name="VCCLCompilerTool"
  6574. PreprocessorDefinitions=""
  6575. />
  6576. </FileConfiguration>
  6577. </File>
  6578. <File
  6579. RelativePath="WorkMsg.h"
  6580. >
  6581. </File>
  6582. </Filter>
  6583. <Filter
  6584. Name="会员管理"
  6585. >
  6586. <File
  6587. RelativePath="AddMember.cpp"
  6588. >
  6589. <FileConfiguration
  6590. Name="Debug|Win32"
  6591. >
  6592. <Tool
  6593. Name="VCCLCompilerTool"
  6594. PreprocessorDefinitions=""
  6595. />
  6596. </FileConfiguration>
  6597. <FileConfiguration
  6598. Name="Release|Win32"
  6599. >
  6600. <Tool
  6601. Name="VCCLCompilerTool"
  6602. PreprocessorDefinitions=""
  6603. />
  6604. </FileConfiguration>
  6605. </File>
  6606. <File
  6607. RelativePath="AddMember.h"
  6608. >
  6609. </File>
  6610. <File
  6611. RelativePath="Card2Reg.cpp"
  6612. >
  6613. <FileConfiguration
  6614. Name="Debug|Win32"
  6615. >
  6616. <Tool
  6617. Name="VCCLCompilerTool"
  6618. PreprocessorDefinitions=""
  6619. />
  6620. </FileConfiguration>
  6621. <FileConfiguration
  6622. Name="Release|Win32"
  6623. >
  6624. <Tool
  6625. Name="VCCLCompilerTool"
  6626. PreprocessorDefinitions=""
  6627. />
  6628. </FileConfiguration>
  6629. </File>
  6630. <File
  6631. RelativePath="Card2Reg.h"
  6632. >
  6633. </File>
  6634. <File
  6635. RelativePath="Card2RegBlue.cpp"
  6636. >
  6637. <FileConfiguration
  6638. Name="Debug|Win32"
  6639. >
  6640. <Tool
  6641. Name="VCCLCompilerTool"
  6642. PreprocessorDefinitions=""
  6643. />
  6644. </FileConfiguration>
  6645. <FileConfiguration
  6646. Name="Release|Win32"
  6647. >
  6648. <Tool
  6649. Name="VCCLCompilerTool"
  6650. PreprocessorDefinitions=""
  6651. />
  6652. </FileConfiguration>
  6653. </File>
  6654. <File
  6655. RelativePath="Card2RegBlue.h"
  6656. >
  6657. </File>
  6658. <File
  6659. RelativePath="Card2RegChart.cpp"
  6660. >
  6661. <FileConfiguration
  6662. Name="Debug|Win32"
  6663. >
  6664. <Tool
  6665. Name="VCCLCompilerTool"
  6666. PreprocessorDefinitions=""
  6667. />
  6668. </FileConfiguration>
  6669. <FileConfiguration
  6670. Name="Release|Win32"
  6671. >
  6672. <Tool
  6673. Name="VCCLCompilerTool"
  6674. PreprocessorDefinitions=""
  6675. />
  6676. </FileConfiguration>
  6677. </File>
  6678. <File
  6679. RelativePath="Card2RegChart.h"
  6680. >
  6681. </File>
  6682. <File
  6683. RelativePath="Card2RegChartBlue.cpp"
  6684. >
  6685. <FileConfiguration
  6686. Name="Debug|Win32"
  6687. >
  6688. <Tool
  6689. Name="VCCLCompilerTool"
  6690. PreprocessorDefinitions=""
  6691. />
  6692. </FileConfiguration>
  6693. <FileConfiguration
  6694. Name="Release|Win32"
  6695. >
  6696. <Tool
  6697. Name="VCCLCompilerTool"
  6698. PreprocessorDefinitions=""
  6699. />
  6700. </FileConfiguration>
  6701. </File>
  6702. <File
  6703. RelativePath="Card2RegChartBlue.h"
  6704. >
  6705. </File>
  6706. <File
  6707. RelativePath="InputCard2Dlg.cpp"
  6708. >
  6709. <FileConfiguration
  6710. Name="Debug|Win32"
  6711. >
  6712. <Tool
  6713. Name="VCCLCompilerTool"
  6714. PreprocessorDefinitions=""
  6715. />
  6716. </FileConfiguration>
  6717. <FileConfiguration
  6718. Name="Release|Win32"
  6719. >
  6720. <Tool
  6721. Name="VCCLCompilerTool"
  6722. PreprocessorDefinitions=""
  6723. />
  6724. </FileConfiguration>
  6725. </File>
  6726. <File
  6727. RelativePath="InputCard2Dlg.h"
  6728. >
  6729. </File>
  6730. <File
  6731. RelativePath="InputCard2Point.cpp"
  6732. >
  6733. <FileConfiguration
  6734. Name="Debug|Win32"
  6735. >
  6736. <Tool
  6737. Name="VCCLCompilerTool"
  6738. PreprocessorDefinitions=""
  6739. />
  6740. </FileConfiguration>
  6741. <FileConfiguration
  6742. Name="Release|Win32"
  6743. >
  6744. <Tool
  6745. Name="VCCLCompilerTool"
  6746. PreprocessorDefinitions=""
  6747. />
  6748. </FileConfiguration>
  6749. </File>
  6750. <File
  6751. RelativePath="InputCard2Point.h"
  6752. >
  6753. </File>
  6754. <File
  6755. RelativePath="InputCard2PointBlue.cpp"
  6756. >
  6757. <FileConfiguration
  6758. Name="Debug|Win32"
  6759. >
  6760. <Tool
  6761. Name="VCCLCompilerTool"
  6762. PreprocessorDefinitions=""
  6763. />
  6764. </FileConfiguration>
  6765. <FileConfiguration
  6766. Name="Release|Win32"
  6767. >
  6768. <Tool
  6769. Name="VCCLCompilerTool"
  6770. PreprocessorDefinitions=""
  6771. />
  6772. </FileConfiguration>
  6773. </File>
  6774. <File
  6775. RelativePath="InputCard2PointBlue.h"
  6776. >
  6777. </File>
  6778. <File
  6779. RelativePath="InputCard3Dlg.cpp"
  6780. >
  6781. <FileConfiguration
  6782. Name="Debug|Win32"
  6783. >
  6784. <Tool
  6785. Name="VCCLCompilerTool"
  6786. PreprocessorDefinitions=""
  6787. />
  6788. </FileConfiguration>
  6789. <FileConfiguration
  6790. Name="Release|Win32"
  6791. >
  6792. <Tool
  6793. Name="VCCLCompilerTool"
  6794. PreprocessorDefinitions=""
  6795. />
  6796. </FileConfiguration>
  6797. </File>
  6798. <File
  6799. RelativePath="InputCard3Dlg.h"
  6800. >
  6801. </File>
  6802. <File
  6803. RelativePath="InputCardNo.cpp"
  6804. >
  6805. <FileConfiguration
  6806. Name="Debug|Win32"
  6807. >
  6808. <Tool
  6809. Name="VCCLCompilerTool"
  6810. PreprocessorDefinitions=""
  6811. />
  6812. </FileConfiguration>
  6813. <FileConfiguration
  6814. Name="Release|Win32"
  6815. >
  6816. <Tool
  6817. Name="VCCLCompilerTool"
  6818. PreprocessorDefinitions=""
  6819. />
  6820. </FileConfiguration>
  6821. </File>
  6822. <File
  6823. RelativePath="InputCardNo.h"
  6824. >
  6825. </File>
  6826. <File
  6827. RelativePath="InputMemberno.cpp"
  6828. >
  6829. <FileConfiguration
  6830. Name="Debug|Win32"
  6831. >
  6832. <Tool
  6833. Name="VCCLCompilerTool"
  6834. PreprocessorDefinitions=""
  6835. />
  6836. </FileConfiguration>
  6837. <FileConfiguration
  6838. Name="Release|Win32"
  6839. >
  6840. <Tool
  6841. Name="VCCLCompilerTool"
  6842. PreprocessorDefinitions=""
  6843. />
  6844. </FileConfiguration>
  6845. </File>
  6846. <File
  6847. RelativePath="InputMemberno.h"
  6848. >
  6849. </File>
  6850. <File
  6851. RelativePath="InputMemberno2.cpp"
  6852. >
  6853. <FileConfiguration
  6854. Name="Debug|Win32"
  6855. >
  6856. <Tool
  6857. Name="VCCLCompilerTool"
  6858. PreprocessorDefinitions=""
  6859. />
  6860. </FileConfiguration>
  6861. <FileConfiguration
  6862. Name="Release|Win32"
  6863. >
  6864. <Tool
  6865. Name="VCCLCompilerTool"
  6866. PreprocessorDefinitions=""
  6867. />
  6868. </FileConfiguration>
  6869. </File>
  6870. <File
  6871. RelativePath="InputMemberno2.h"
  6872. >
  6873. </File>
  6874. <File
  6875. RelativePath="MemberCardFunc.cpp"
  6876. >
  6877. <FileConfiguration
  6878. Name="Debug|Win32"
  6879. >
  6880. <Tool
  6881. Name="VCCLCompilerTool"
  6882. PreprocessorDefinitions=""
  6883. />
  6884. </FileConfiguration>
  6885. <FileConfiguration
  6886. Name="Release|Win32"
  6887. >
  6888. <Tool
  6889. Name="VCCLCompilerTool"
  6890. PreprocessorDefinitions=""
  6891. />
  6892. </FileConfiguration>
  6893. </File>
  6894. <File
  6895. RelativePath="MemberCardFunc.h"
  6896. >
  6897. </File>
  6898. <File
  6899. RelativePath="MemberCardFunc2.cpp"
  6900. >
  6901. <FileConfiguration
  6902. Name="Debug|Win32"
  6903. >
  6904. <Tool
  6905. Name="VCCLCompilerTool"
  6906. PreprocessorDefinitions=""
  6907. />
  6908. </FileConfiguration>
  6909. <FileConfiguration
  6910. Name="Release|Win32"
  6911. >
  6912. <Tool
  6913. Name="VCCLCompilerTool"
  6914. PreprocessorDefinitions=""
  6915. />
  6916. </FileConfiguration>
  6917. </File>
  6918. <File
  6919. RelativePath="MemberCardFunc2.h"
  6920. >
  6921. </File>
  6922. <File
  6923. RelativePath="MemberChart.cpp"
  6924. >
  6925. <FileConfiguration
  6926. Name="Debug|Win32"
  6927. >
  6928. <Tool
  6929. Name="VCCLCompilerTool"
  6930. PreprocessorDefinitions=""
  6931. />
  6932. </FileConfiguration>
  6933. <FileConfiguration
  6934. Name="Release|Win32"
  6935. >
  6936. <Tool
  6937. Name="VCCLCompilerTool"
  6938. PreprocessorDefinitions=""
  6939. />
  6940. </FileConfiguration>
  6941. </File>
  6942. <File
  6943. RelativePath="MemberChart.h"
  6944. >
  6945. </File>
  6946. <File
  6947. RelativePath="MemberSet.cpp"
  6948. >
  6949. <FileConfiguration
  6950. Name="Debug|Win32"
  6951. >
  6952. <Tool
  6953. Name="VCCLCompilerTool"
  6954. PreprocessorDefinitions=""
  6955. />
  6956. </FileConfiguration>
  6957. <FileConfiguration
  6958. Name="Release|Win32"
  6959. >
  6960. <Tool
  6961. Name="VCCLCompilerTool"
  6962. PreprocessorDefinitions=""
  6963. />
  6964. </FileConfiguration>
  6965. </File>
  6966. <File
  6967. RelativePath="MemberSet.h"
  6968. >
  6969. </File>
  6970. <File
  6971. RelativePath="ReCharge.cpp"
  6972. >
  6973. <FileConfiguration
  6974. Name="Debug|Win32"
  6975. >
  6976. <Tool
  6977. Name="VCCLCompilerTool"
  6978. PreprocessorDefinitions=""
  6979. />
  6980. </FileConfiguration>
  6981. <FileConfiguration
  6982. Name="Release|Win32"
  6983. >
  6984. <Tool
  6985. Name="VCCLCompilerTool"
  6986. PreprocessorDefinitions=""
  6987. />
  6988. </FileConfiguration>
  6989. </File>
  6990. <File
  6991. RelativePath="ReCharge.h"
  6992. >
  6993. </File>
  6994. <File
  6995. RelativePath="ReChargeReg.cpp"
  6996. >
  6997. <FileConfiguration
  6998. Name="Debug|Win32"
  6999. >
  7000. <Tool
  7001. Name="VCCLCompilerTool"
  7002. PreprocessorDefinitions=""
  7003. />
  7004. </FileConfiguration>
  7005. <FileConfiguration
  7006. Name="Release|Win32"
  7007. >
  7008. <Tool
  7009. Name="VCCLCompilerTool"
  7010. PreprocessorDefinitions=""
  7011. />
  7012. </FileConfiguration>
  7013. </File>
  7014. <File
  7015. RelativePath="ReChargeReg.h"
  7016. >
  7017. </File>
  7018. <File
  7019. RelativePath="SelCardType.cpp"
  7020. >
  7021. <FileConfiguration
  7022. Name="Debug|Win32"
  7023. >
  7024. <Tool
  7025. Name="VCCLCompilerTool"
  7026. PreprocessorDefinitions=""
  7027. />
  7028. </FileConfiguration>
  7029. <FileConfiguration
  7030. Name="Release|Win32"
  7031. >
  7032. <Tool
  7033. Name="VCCLCompilerTool"
  7034. PreprocessorDefinitions=""
  7035. />
  7036. </FileConfiguration>
  7037. </File>
  7038. <File
  7039. RelativePath="SelCardType.h"
  7040. >
  7041. </File>
  7042. <File
  7043. RelativePath="SelMemberType.cpp"
  7044. >
  7045. <FileConfiguration
  7046. Name="Debug|Win32"
  7047. >
  7048. <Tool
  7049. Name="VCCLCompilerTool"
  7050. PreprocessorDefinitions=""
  7051. />
  7052. </FileConfiguration>
  7053. <FileConfiguration
  7054. Name="Release|Win32"
  7055. >
  7056. <Tool
  7057. Name="VCCLCompilerTool"
  7058. PreprocessorDefinitions=""
  7059. />
  7060. </FileConfiguration>
  7061. </File>
  7062. <File
  7063. RelativePath="SelMemberType.h"
  7064. >
  7065. </File>
  7066. <File
  7067. RelativePath="SelMsgContent3.cpp"
  7068. >
  7069. <FileConfiguration
  7070. Name="Debug|Win32"
  7071. >
  7072. <Tool
  7073. Name="VCCLCompilerTool"
  7074. PreprocessorDefinitions=""
  7075. />
  7076. </FileConfiguration>
  7077. <FileConfiguration
  7078. Name="Release|Win32"
  7079. >
  7080. <Tool
  7081. Name="VCCLCompilerTool"
  7082. PreprocessorDefinitions=""
  7083. />
  7084. </FileConfiguration>
  7085. </File>
  7086. <File
  7087. RelativePath="SelMsgContent3.h"
  7088. >
  7089. </File>
  7090. <File
  7091. RelativePath="ShowCard2Reg.cpp"
  7092. >
  7093. <FileConfiguration
  7094. Name="Debug|Win32"
  7095. >
  7096. <Tool
  7097. Name="VCCLCompilerTool"
  7098. PreprocessorDefinitions=""
  7099. />
  7100. </FileConfiguration>
  7101. <FileConfiguration
  7102. Name="Release|Win32"
  7103. >
  7104. <Tool
  7105. Name="VCCLCompilerTool"
  7106. PreprocessorDefinitions=""
  7107. />
  7108. </FileConfiguration>
  7109. </File>
  7110. <File
  7111. RelativePath="ShowCard2Reg.h"
  7112. >
  7113. </File>
  7114. <File
  7115. RelativePath="ShowMember.cpp"
  7116. >
  7117. <FileConfiguration
  7118. Name="Debug|Win32"
  7119. >
  7120. <Tool
  7121. Name="VCCLCompilerTool"
  7122. PreprocessorDefinitions=""
  7123. />
  7124. </FileConfiguration>
  7125. <FileConfiguration
  7126. Name="Release|Win32"
  7127. >
  7128. <Tool
  7129. Name="VCCLCompilerTool"
  7130. PreprocessorDefinitions=""
  7131. />
  7132. </FileConfiguration>
  7133. </File>
  7134. <File
  7135. RelativePath="ShowMember.h"
  7136. >
  7137. </File>
  7138. <File
  7139. RelativePath="ShowMember2.cpp"
  7140. >
  7141. <FileConfiguration
  7142. Name="Debug|Win32"
  7143. >
  7144. <Tool
  7145. Name="VCCLCompilerTool"
  7146. PreprocessorDefinitions=""
  7147. />
  7148. </FileConfiguration>
  7149. <FileConfiguration
  7150. Name="Release|Win32"
  7151. >
  7152. <Tool
  7153. Name="VCCLCompilerTool"
  7154. PreprocessorDefinitions=""
  7155. />
  7156. </FileConfiguration>
  7157. </File>
  7158. <File
  7159. RelativePath="ShowMember2.h"
  7160. >
  7161. </File>
  7162. <File
  7163. RelativePath="ShowMemberBlue.cpp"
  7164. >
  7165. <FileConfiguration
  7166. Name="Debug|Win32"
  7167. >
  7168. <Tool
  7169. Name="VCCLCompilerTool"
  7170. PreprocessorDefinitions=""
  7171. />
  7172. </FileConfiguration>
  7173. <FileConfiguration
  7174. Name="Release|Win32"
  7175. >
  7176. <Tool
  7177. Name="VCCLCompilerTool"
  7178. PreprocessorDefinitions=""
  7179. />
  7180. </FileConfiguration>
  7181. </File>
  7182. <File
  7183. RelativePath="ShowMemberBlue.h"
  7184. >
  7185. </File>
  7186. <File
  7187. RelativePath="ShowMemberMsg.cpp"
  7188. >
  7189. <FileConfiguration
  7190. Name="Debug|Win32"
  7191. >
  7192. <Tool
  7193. Name="VCCLCompilerTool"
  7194. PreprocessorDefinitions=""
  7195. />
  7196. </FileConfiguration>
  7197. <FileConfiguration
  7198. Name="Release|Win32"
  7199. >
  7200. <Tool
  7201. Name="VCCLCompilerTool"
  7202. PreprocessorDefinitions=""
  7203. />
  7204. </FileConfiguration>
  7205. </File>
  7206. <File
  7207. RelativePath="ShowMemberMsg.h"
  7208. >
  7209. </File>
  7210. <File
  7211. RelativePath="ShowMemberReg.cpp"
  7212. >
  7213. <FileConfiguration
  7214. Name="Debug|Win32"
  7215. >
  7216. <Tool
  7217. Name="VCCLCompilerTool"
  7218. PreprocessorDefinitions=""
  7219. />
  7220. </FileConfiguration>
  7221. <FileConfiguration
  7222. Name="Release|Win32"
  7223. >
  7224. <Tool
  7225. Name="VCCLCompilerTool"
  7226. PreprocessorDefinitions=""
  7227. />
  7228. </FileConfiguration>
  7229. </File>
  7230. <File
  7231. RelativePath="ShowMemberReg.h"
  7232. >
  7233. </File>
  7234. <File
  7235. RelativePath="UseMemberCard.cpp"
  7236. >
  7237. <FileConfiguration
  7238. Name="Debug|Win32"
  7239. >
  7240. <Tool
  7241. Name="VCCLCompilerTool"
  7242. PreprocessorDefinitions=""
  7243. />
  7244. </FileConfiguration>
  7245. <FileConfiguration
  7246. Name="Release|Win32"
  7247. >
  7248. <Tool
  7249. Name="VCCLCompilerTool"
  7250. PreprocessorDefinitions=""
  7251. />
  7252. </FileConfiguration>
  7253. </File>
  7254. <File
  7255. RelativePath="UseMemberCard.h"
  7256. >
  7257. </File>
  7258. <File
  7259. RelativePath="UsePoint.cpp"
  7260. >
  7261. <FileConfiguration
  7262. Name="Debug|Win32"
  7263. >
  7264. <Tool
  7265. Name="VCCLCompilerTool"
  7266. PreprocessorDefinitions=""
  7267. />
  7268. </FileConfiguration>
  7269. <FileConfiguration
  7270. Name="Release|Win32"
  7271. >
  7272. <Tool
  7273. Name="VCCLCompilerTool"
  7274. PreprocessorDefinitions=""
  7275. />
  7276. </FileConfiguration>
  7277. </File>
  7278. <File
  7279. RelativePath="UsePoint.h"
  7280. >
  7281. </File>
  7282. <File
  7283. RelativePath="UsePointBlue.cpp"
  7284. >
  7285. <FileConfiguration
  7286. Name="Debug|Win32"
  7287. >
  7288. <Tool
  7289. Name="VCCLCompilerTool"
  7290. PreprocessorDefinitions=""
  7291. />
  7292. </FileConfiguration>
  7293. <FileConfiguration
  7294. Name="Release|Win32"
  7295. >
  7296. <Tool
  7297. Name="VCCLCompilerTool"
  7298. PreprocessorDefinitions=""
  7299. />
  7300. </FileConfiguration>
  7301. </File>
  7302. <File
  7303. RelativePath="UsePointBlue.h"
  7304. >
  7305. </File>
  7306. </Filter>
  7307. <Filter
  7308. Name="礼服管理"
  7309. >
  7310. <File
  7311. RelativePath="DressEarlyWarning.cpp"
  7312. >
  7313. <FileConfiguration
  7314. Name="Debug|Win32"
  7315. >
  7316. <Tool
  7317. Name="VCCLCompilerTool"
  7318. PreprocessorDefinitions=""
  7319. />
  7320. </FileConfiguration>
  7321. <FileConfiguration
  7322. Name="Release|Win32"
  7323. >
  7324. <Tool
  7325. Name="VCCLCompilerTool"
  7326. PreprocessorDefinitions=""
  7327. />
  7328. </FileConfiguration>
  7329. </File>
  7330. <File
  7331. RelativePath="DressEarlyWarning.h"
  7332. >
  7333. </File>
  7334. <File
  7335. RelativePath="DressManage.cpp"
  7336. >
  7337. <FileConfiguration
  7338. Name="Debug|Win32"
  7339. >
  7340. <Tool
  7341. Name="VCCLCompilerTool"
  7342. PreprocessorDefinitions=""
  7343. />
  7344. </FileConfiguration>
  7345. <FileConfiguration
  7346. Name="Release|Win32"
  7347. >
  7348. <Tool
  7349. Name="VCCLCompilerTool"
  7350. PreprocessorDefinitions=""
  7351. />
  7352. </FileConfiguration>
  7353. </File>
  7354. <File
  7355. RelativePath="DressManage.h"
  7356. >
  7357. </File>
  7358. <File
  7359. RelativePath="HireDress.cpp"
  7360. >
  7361. <FileConfiguration
  7362. Name="Debug|Win32"
  7363. >
  7364. <Tool
  7365. Name="VCCLCompilerTool"
  7366. PreprocessorDefinitions=""
  7367. />
  7368. </FileConfiguration>
  7369. <FileConfiguration
  7370. Name="Release|Win32"
  7371. >
  7372. <Tool
  7373. Name="VCCLCompilerTool"
  7374. PreprocessorDefinitions=""
  7375. />
  7376. </FileConfiguration>
  7377. </File>
  7378. <File
  7379. RelativePath="HireDress.h"
  7380. >
  7381. </File>
  7382. <File
  7383. RelativePath="HireDress2.cpp"
  7384. >
  7385. <FileConfiguration
  7386. Name="Debug|Win32"
  7387. >
  7388. <Tool
  7389. Name="VCCLCompilerTool"
  7390. PreprocessorDefinitions=""
  7391. />
  7392. </FileConfiguration>
  7393. <FileConfiguration
  7394. Name="Release|Win32"
  7395. >
  7396. <Tool
  7397. Name="VCCLCompilerTool"
  7398. PreprocessorDefinitions=""
  7399. />
  7400. </FileConfiguration>
  7401. </File>
  7402. <File
  7403. RelativePath="HireDress2.h"
  7404. >
  7405. </File>
  7406. <File
  7407. RelativePath="HireDressReturn.cpp"
  7408. >
  7409. <FileConfiguration
  7410. Name="Debug|Win32"
  7411. >
  7412. <Tool
  7413. Name="VCCLCompilerTool"
  7414. PreprocessorDefinitions=""
  7415. />
  7416. </FileConfiguration>
  7417. <FileConfiguration
  7418. Name="Release|Win32"
  7419. >
  7420. <Tool
  7421. Name="VCCLCompilerTool"
  7422. PreprocessorDefinitions=""
  7423. />
  7424. </FileConfiguration>
  7425. </File>
  7426. <File
  7427. RelativePath="HireDressReturn.h"
  7428. >
  7429. </File>
  7430. <File
  7431. RelativePath="SelDress.cpp"
  7432. >
  7433. <FileConfiguration
  7434. Name="Debug|Win32"
  7435. >
  7436. <Tool
  7437. Name="VCCLCompilerTool"
  7438. PreprocessorDefinitions=""
  7439. />
  7440. </FileConfiguration>
  7441. <FileConfiguration
  7442. Name="Release|Win32"
  7443. >
  7444. <Tool
  7445. Name="VCCLCompilerTool"
  7446. PreprocessorDefinitions=""
  7447. />
  7448. </FileConfiguration>
  7449. </File>
  7450. <File
  7451. RelativePath="SelDress.h"
  7452. >
  7453. </File>
  7454. <File
  7455. RelativePath="ShowDress.cpp"
  7456. >
  7457. <FileConfiguration
  7458. Name="Debug|Win32"
  7459. >
  7460. <Tool
  7461. Name="VCCLCompilerTool"
  7462. PreprocessorDefinitions=""
  7463. />
  7464. </FileConfiguration>
  7465. <FileConfiguration
  7466. Name="Release|Win32"
  7467. >
  7468. <Tool
  7469. Name="VCCLCompilerTool"
  7470. PreprocessorDefinitions=""
  7471. />
  7472. </FileConfiguration>
  7473. </File>
  7474. <File
  7475. RelativePath="ShowDress.h"
  7476. >
  7477. </File>
  7478. <File
  7479. RelativePath="ShowEarlyWarning.cpp"
  7480. >
  7481. <FileConfiguration
  7482. Name="Debug|Win32"
  7483. >
  7484. <Tool
  7485. Name="VCCLCompilerTool"
  7486. PreprocessorDefinitions=""
  7487. />
  7488. </FileConfiguration>
  7489. <FileConfiguration
  7490. Name="Release|Win32"
  7491. >
  7492. <Tool
  7493. Name="VCCLCompilerTool"
  7494. PreprocessorDefinitions=""
  7495. />
  7496. </FileConfiguration>
  7497. </File>
  7498. <File
  7499. RelativePath="ShowEarlyWarning.h"
  7500. >
  7501. </File>
  7502. <File
  7503. RelativePath="ShowHireReg.cpp"
  7504. >
  7505. <FileConfiguration
  7506. Name="Debug|Win32"
  7507. >
  7508. <Tool
  7509. Name="VCCLCompilerTool"
  7510. PreprocessorDefinitions=""
  7511. />
  7512. </FileConfiguration>
  7513. <FileConfiguration
  7514. Name="Release|Win32"
  7515. >
  7516. <Tool
  7517. Name="VCCLCompilerTool"
  7518. PreprocessorDefinitions=""
  7519. />
  7520. </FileConfiguration>
  7521. </File>
  7522. <File
  7523. RelativePath="ShowHireReg.h"
  7524. >
  7525. </File>
  7526. <File
  7527. RelativePath="ShowHireReg2.cpp"
  7528. >
  7529. <FileConfiguration
  7530. Name="Debug|Win32"
  7531. >
  7532. <Tool
  7533. Name="VCCLCompilerTool"
  7534. PreprocessorDefinitions=""
  7535. />
  7536. </FileConfiguration>
  7537. <FileConfiguration
  7538. Name="Release|Win32"
  7539. >
  7540. <Tool
  7541. Name="VCCLCompilerTool"
  7542. PreprocessorDefinitions=""
  7543. />
  7544. </FileConfiguration>
  7545. </File>
  7546. <File
  7547. RelativePath="ShowHireReg2.h"
  7548. >
  7549. </File>
  7550. </Filter>
  7551. <Filter
  7552. Name="预约单"
  7553. >
  7554. <File
  7555. RelativePath="AlarmDays.cpp"
  7556. >
  7557. <FileConfiguration
  7558. Name="Debug|Win32"
  7559. >
  7560. <Tool
  7561. Name="VCCLCompilerTool"
  7562. PreprocessorDefinitions=""
  7563. />
  7564. </FileConfiguration>
  7565. <FileConfiguration
  7566. Name="Release|Win32"
  7567. >
  7568. <Tool
  7569. Name="VCCLCompilerTool"
  7570. PreprocessorDefinitions=""
  7571. />
  7572. </FileConfiguration>
  7573. </File>
  7574. <File
  7575. RelativePath="AlarmDays.h"
  7576. >
  7577. </File>
  7578. <File
  7579. RelativePath="BeautifySkinFrom.cpp"
  7580. >
  7581. <FileConfiguration
  7582. Name="Debug|Win32"
  7583. >
  7584. <Tool
  7585. Name="VCCLCompilerTool"
  7586. PreprocessorDefinitions=""
  7587. />
  7588. </FileConfiguration>
  7589. <FileConfiguration
  7590. Name="Release|Win32"
  7591. >
  7592. <Tool
  7593. Name="VCCLCompilerTool"
  7594. PreprocessorDefinitions=""
  7595. />
  7596. </FileConfiguration>
  7597. </File>
  7598. <File
  7599. RelativePath="BeautifySkinFrom.h"
  7600. >
  7601. </File>
  7602. <File
  7603. RelativePath="BeautifySkinFrom2.cpp"
  7604. >
  7605. <FileConfiguration
  7606. Name="Debug|Win32"
  7607. >
  7608. <Tool
  7609. Name="VCCLCompilerTool"
  7610. PreprocessorDefinitions=""
  7611. />
  7612. </FileConfiguration>
  7613. <FileConfiguration
  7614. Name="Release|Win32"
  7615. >
  7616. <Tool
  7617. Name="VCCLCompilerTool"
  7618. PreprocessorDefinitions=""
  7619. />
  7620. </FileConfiguration>
  7621. </File>
  7622. <File
  7623. RelativePath="BeautifySkinFrom2.h"
  7624. >
  7625. </File>
  7626. <File
  7627. RelativePath="Booking.cpp"
  7628. >
  7629. <FileConfiguration
  7630. Name="Debug|Win32"
  7631. >
  7632. <Tool
  7633. Name="VCCLCompilerTool"
  7634. PreprocessorDefinitions=""
  7635. />
  7636. </FileConfiguration>
  7637. <FileConfiguration
  7638. Name="Release|Win32"
  7639. >
  7640. <Tool
  7641. Name="VCCLCompilerTool"
  7642. PreprocessorDefinitions=""
  7643. />
  7644. </FileConfiguration>
  7645. </File>
  7646. <File
  7647. RelativePath="Booking.h"
  7648. >
  7649. </File>
  7650. <File
  7651. RelativePath="Booking2.cpp"
  7652. >
  7653. <FileConfiguration
  7654. Name="Debug|Win32"
  7655. >
  7656. <Tool
  7657. Name="VCCLCompilerTool"
  7658. PreprocessorDefinitions=""
  7659. />
  7660. </FileConfiguration>
  7661. <FileConfiguration
  7662. Name="Release|Win32"
  7663. >
  7664. <Tool
  7665. Name="VCCLCompilerTool"
  7666. PreprocessorDefinitions=""
  7667. />
  7668. </FileConfiguration>
  7669. </File>
  7670. <File
  7671. RelativePath="Booking2.h"
  7672. >
  7673. </File>
  7674. <File
  7675. RelativePath="BookingPage1.cpp"
  7676. >
  7677. <FileConfiguration
  7678. Name="Debug|Win32"
  7679. >
  7680. <Tool
  7681. Name="VCCLCompilerTool"
  7682. PreprocessorDefinitions=""
  7683. />
  7684. </FileConfiguration>
  7685. <FileConfiguration
  7686. Name="Release|Win32"
  7687. >
  7688. <Tool
  7689. Name="VCCLCompilerTool"
  7690. PreprocessorDefinitions=""
  7691. />
  7692. </FileConfiguration>
  7693. </File>
  7694. <File
  7695. RelativePath="BookingPage1.h"
  7696. >
  7697. </File>
  7698. <File
  7699. RelativePath="BookingPage2.cpp"
  7700. >
  7701. <FileConfiguration
  7702. Name="Debug|Win32"
  7703. >
  7704. <Tool
  7705. Name="VCCLCompilerTool"
  7706. PreprocessorDefinitions=""
  7707. />
  7708. </FileConfiguration>
  7709. <FileConfiguration
  7710. Name="Release|Win32"
  7711. >
  7712. <Tool
  7713. Name="VCCLCompilerTool"
  7714. PreprocessorDefinitions=""
  7715. />
  7716. </FileConfiguration>
  7717. </File>
  7718. <File
  7719. RelativePath="BookingPage2.h"
  7720. >
  7721. </File>
  7722. <File
  7723. RelativePath="BookingPage22.cpp"
  7724. >
  7725. <FileConfiguration
  7726. Name="Debug|Win32"
  7727. >
  7728. <Tool
  7729. Name="VCCLCompilerTool"
  7730. PreprocessorDefinitions=""
  7731. />
  7732. </FileConfiguration>
  7733. <FileConfiguration
  7734. Name="Release|Win32"
  7735. >
  7736. <Tool
  7737. Name="VCCLCompilerTool"
  7738. PreprocessorDefinitions=""
  7739. />
  7740. </FileConfiguration>
  7741. </File>
  7742. <File
  7743. RelativePath="BookingPage22.h"
  7744. >
  7745. </File>
  7746. <File
  7747. RelativePath="BookingPage3.cpp"
  7748. >
  7749. <FileConfiguration
  7750. Name="Debug|Win32"
  7751. >
  7752. <Tool
  7753. Name="VCCLCompilerTool"
  7754. PreprocessorDefinitions=""
  7755. />
  7756. </FileConfiguration>
  7757. <FileConfiguration
  7758. Name="Release|Win32"
  7759. >
  7760. <Tool
  7761. Name="VCCLCompilerTool"
  7762. PreprocessorDefinitions=""
  7763. />
  7764. </FileConfiguration>
  7765. </File>
  7766. <File
  7767. RelativePath="BookingPage3.h"
  7768. >
  7769. </File>
  7770. <File
  7771. RelativePath="BookingPage4.cpp"
  7772. >
  7773. <FileConfiguration
  7774. Name="Debug|Win32"
  7775. >
  7776. <Tool
  7777. Name="VCCLCompilerTool"
  7778. PreprocessorDefinitions=""
  7779. />
  7780. </FileConfiguration>
  7781. <FileConfiguration
  7782. Name="Release|Win32"
  7783. >
  7784. <Tool
  7785. Name="VCCLCompilerTool"
  7786. PreprocessorDefinitions=""
  7787. />
  7788. </FileConfiguration>
  7789. </File>
  7790. <File
  7791. RelativePath="BookingPage4.h"
  7792. >
  7793. </File>
  7794. <File
  7795. RelativePath="BurnCD.cpp"
  7796. >
  7797. <FileConfiguration
  7798. Name="Debug|Win32"
  7799. >
  7800. <Tool
  7801. Name="VCCLCompilerTool"
  7802. PreprocessorDefinitions=""
  7803. />
  7804. </FileConfiguration>
  7805. <FileConfiguration
  7806. Name="Release|Win32"
  7807. >
  7808. <Tool
  7809. Name="VCCLCompilerTool"
  7810. PreprocessorDefinitions=""
  7811. />
  7812. </FileConfiguration>
  7813. </File>
  7814. <File
  7815. RelativePath="BurnCD.h"
  7816. >
  7817. </File>
  7818. <File
  7819. RelativePath="ChoosePhotoForm.cpp"
  7820. >
  7821. <FileConfiguration
  7822. Name="Debug|Win32"
  7823. >
  7824. <Tool
  7825. Name="VCCLCompilerTool"
  7826. PreprocessorDefinitions=""
  7827. />
  7828. </FileConfiguration>
  7829. <FileConfiguration
  7830. Name="Release|Win32"
  7831. >
  7832. <Tool
  7833. Name="VCCLCompilerTool"
  7834. PreprocessorDefinitions=""
  7835. />
  7836. </FileConfiguration>
  7837. </File>
  7838. <File
  7839. RelativePath="ChoosePhotoForm.h"
  7840. >
  7841. </File>
  7842. <File
  7843. RelativePath="ChooseReason.cpp"
  7844. >
  7845. <FileConfiguration
  7846. Name="Debug|Win32"
  7847. >
  7848. <Tool
  7849. Name="VCCLCompilerTool"
  7850. PreprocessorDefinitions=""
  7851. />
  7852. </FileConfiguration>
  7853. <FileConfiguration
  7854. Name="Release|Win32"
  7855. >
  7856. <Tool
  7857. Name="VCCLCompilerTool"
  7858. PreprocessorDefinitions=""
  7859. />
  7860. </FileConfiguration>
  7861. </File>
  7862. <File
  7863. RelativePath="ChooseReason.h"
  7864. >
  7865. </File>
  7866. <File
  7867. RelativePath="ClientDlg.cpp"
  7868. >
  7869. <FileConfiguration
  7870. Name="Debug|Win32"
  7871. >
  7872. <Tool
  7873. Name="VCCLCompilerTool"
  7874. PreprocessorDefinitions=""
  7875. />
  7876. </FileConfiguration>
  7877. <FileConfiguration
  7878. Name="Release|Win32"
  7879. >
  7880. <Tool
  7881. Name="VCCLCompilerTool"
  7882. PreprocessorDefinitions=""
  7883. />
  7884. </FileConfiguration>
  7885. </File>
  7886. <File
  7887. RelativePath="ClientDlg.h"
  7888. >
  7889. </File>
  7890. <File
  7891. RelativePath="ClientDlg2.cpp"
  7892. >
  7893. <FileConfiguration
  7894. Name="Debug|Win32"
  7895. >
  7896. <Tool
  7897. Name="VCCLCompilerTool"
  7898. PreprocessorDefinitions=""
  7899. />
  7900. </FileConfiguration>
  7901. <FileConfiguration
  7902. Name="Release|Win32"
  7903. >
  7904. <Tool
  7905. Name="VCCLCompilerTool"
  7906. PreprocessorDefinitions=""
  7907. />
  7908. </FileConfiguration>
  7909. </File>
  7910. <File
  7911. RelativePath="ClientDlg2.h"
  7912. >
  7913. </File>
  7914. <File
  7915. RelativePath="CostCal.cpp"
  7916. >
  7917. <FileConfiguration
  7918. Name="Debug|Win32"
  7919. >
  7920. <Tool
  7921. Name="VCCLCompilerTool"
  7922. PreprocessorDefinitions=""
  7923. />
  7924. </FileConfiguration>
  7925. <FileConfiguration
  7926. Name="Release|Win32"
  7927. >
  7928. <Tool
  7929. Name="VCCLCompilerTool"
  7930. PreprocessorDefinitions=""
  7931. />
  7932. </FileConfiguration>
  7933. </File>
  7934. <File
  7935. RelativePath="CostCal.h"
  7936. >
  7937. </File>
  7938. <File
  7939. RelativePath="DesignFrom.cpp"
  7940. >
  7941. <FileConfiguration
  7942. Name="Debug|Win32"
  7943. >
  7944. <Tool
  7945. Name="VCCLCompilerTool"
  7946. PreprocessorDefinitions=""
  7947. />
  7948. </FileConfiguration>
  7949. <FileConfiguration
  7950. Name="Release|Win32"
  7951. >
  7952. <Tool
  7953. Name="VCCLCompilerTool"
  7954. PreprocessorDefinitions=""
  7955. />
  7956. </FileConfiguration>
  7957. </File>
  7958. <File
  7959. RelativePath="DesignFrom.h"
  7960. >
  7961. </File>
  7962. <File
  7963. RelativePath="DigitalWork.cpp"
  7964. >
  7965. <FileConfiguration
  7966. Name="Debug|Win32"
  7967. >
  7968. <Tool
  7969. Name="VCCLCompilerTool"
  7970. PreprocessorDefinitions=""
  7971. />
  7972. </FileConfiguration>
  7973. <FileConfiguration
  7974. Name="Release|Win32"
  7975. >
  7976. <Tool
  7977. Name="VCCLCompilerTool"
  7978. PreprocessorDefinitions=""
  7979. />
  7980. </FileConfiguration>
  7981. </File>
  7982. <File
  7983. RelativePath="DigitalWork.h"
  7984. >
  7985. </File>
  7986. <File
  7987. RelativePath="DigitalWorkSet.cpp"
  7988. >
  7989. <FileConfiguration
  7990. Name="Debug|Win32"
  7991. >
  7992. <Tool
  7993. Name="VCCLCompilerTool"
  7994. PreprocessorDefinitions=""
  7995. />
  7996. </FileConfiguration>
  7997. <FileConfiguration
  7998. Name="Release|Win32"
  7999. >
  8000. <Tool
  8001. Name="VCCLCompilerTool"
  8002. PreprocessorDefinitions=""
  8003. />
  8004. </FileConfiguration>
  8005. </File>
  8006. <File
  8007. RelativePath="DigitalWorkSet.h"
  8008. >
  8009. </File>
  8010. <File
  8011. RelativePath="DigitalWorkSet2.cpp"
  8012. >
  8013. <FileConfiguration
  8014. Name="Debug|Win32"
  8015. >
  8016. <Tool
  8017. Name="VCCLCompilerTool"
  8018. PreprocessorDefinitions=""
  8019. />
  8020. </FileConfiguration>
  8021. <FileConfiguration
  8022. Name="Release|Win32"
  8023. >
  8024. <Tool
  8025. Name="VCCLCompilerTool"
  8026. PreprocessorDefinitions=""
  8027. />
  8028. </FileConfiguration>
  8029. </File>
  8030. <File
  8031. RelativePath="DigitalWorkSet2.h"
  8032. >
  8033. </File>
  8034. <File
  8035. RelativePath="ImportPhoto.cpp"
  8036. >
  8037. <FileConfiguration
  8038. Name="Debug|Win32"
  8039. >
  8040. <Tool
  8041. Name="VCCLCompilerTool"
  8042. PreprocessorDefinitions=""
  8043. />
  8044. </FileConfiguration>
  8045. <FileConfiguration
  8046. Name="Release|Win32"
  8047. >
  8048. <Tool
  8049. Name="VCCLCompilerTool"
  8050. PreprocessorDefinitions=""
  8051. />
  8052. </FileConfiguration>
  8053. </File>
  8054. <File
  8055. RelativePath="ImportPhoto.h"
  8056. >
  8057. </File>
  8058. <File
  8059. RelativePath="IsGrowthTx.cpp"
  8060. >
  8061. <FileConfiguration
  8062. Name="Debug|Win32"
  8063. >
  8064. <Tool
  8065. Name="VCCLCompilerTool"
  8066. PreprocessorDefinitions=""
  8067. />
  8068. </FileConfiguration>
  8069. <FileConfiguration
  8070. Name="Release|Win32"
  8071. >
  8072. <Tool
  8073. Name="VCCLCompilerTool"
  8074. PreprocessorDefinitions=""
  8075. />
  8076. </FileConfiguration>
  8077. </File>
  8078. <File
  8079. RelativePath="IsGrowthTx.h"
  8080. >
  8081. </File>
  8082. <File
  8083. RelativePath="ModifyDinDan.cpp"
  8084. >
  8085. <FileConfiguration
  8086. Name="Debug|Win32"
  8087. >
  8088. <Tool
  8089. Name="VCCLCompilerTool"
  8090. PreprocessorDefinitions=""
  8091. />
  8092. </FileConfiguration>
  8093. <FileConfiguration
  8094. Name="Release|Win32"
  8095. >
  8096. <Tool
  8097. Name="VCCLCompilerTool"
  8098. PreprocessorDefinitions=""
  8099. />
  8100. </FileConfiguration>
  8101. </File>
  8102. <File
  8103. RelativePath="ModifyDinDan.h"
  8104. >
  8105. </File>
  8106. <File
  8107. RelativePath="ModifyReg.cpp"
  8108. >
  8109. <FileConfiguration
  8110. Name="Debug|Win32"
  8111. >
  8112. <Tool
  8113. Name="VCCLCompilerTool"
  8114. PreprocessorDefinitions=""
  8115. />
  8116. </FileConfiguration>
  8117. <FileConfiguration
  8118. Name="Release|Win32"
  8119. >
  8120. <Tool
  8121. Name="VCCLCompilerTool"
  8122. PreprocessorDefinitions=""
  8123. />
  8124. </FileConfiguration>
  8125. </File>
  8126. <File
  8127. RelativePath="ModifyReg.h"
  8128. >
  8129. </File>
  8130. <File
  8131. RelativePath="outsourcing.cpp"
  8132. >
  8133. <FileConfiguration
  8134. Name="Debug|Win32"
  8135. >
  8136. <Tool
  8137. Name="VCCLCompilerTool"
  8138. PreprocessorDefinitions=""
  8139. />
  8140. </FileConfiguration>
  8141. <FileConfiguration
  8142. Name="Release|Win32"
  8143. >
  8144. <Tool
  8145. Name="VCCLCompilerTool"
  8146. PreprocessorDefinitions=""
  8147. />
  8148. </FileConfiguration>
  8149. </File>
  8150. <File
  8151. RelativePath="outsourcing.h"
  8152. >
  8153. </File>
  8154. <File
  8155. RelativePath="outsourcing2.cpp"
  8156. >
  8157. <FileConfiguration
  8158. Name="Debug|Win32"
  8159. >
  8160. <Tool
  8161. Name="VCCLCompilerTool"
  8162. PreprocessorDefinitions=""
  8163. />
  8164. </FileConfiguration>
  8165. <FileConfiguration
  8166. Name="Release|Win32"
  8167. >
  8168. <Tool
  8169. Name="VCCLCompilerTool"
  8170. PreprocessorDefinitions=""
  8171. />
  8172. </FileConfiguration>
  8173. </File>
  8174. <File
  8175. RelativePath="outsourcing2.h"
  8176. >
  8177. </File>
  8178. <File
  8179. RelativePath="outsourcing3.cpp"
  8180. >
  8181. <FileConfiguration
  8182. Name="Debug|Win32"
  8183. >
  8184. <Tool
  8185. Name="VCCLCompilerTool"
  8186. PreprocessorDefinitions=""
  8187. />
  8188. </FileConfiguration>
  8189. <FileConfiguration
  8190. Name="Release|Win32"
  8191. >
  8192. <Tool
  8193. Name="VCCLCompilerTool"
  8194. PreprocessorDefinitions=""
  8195. />
  8196. </FileConfiguration>
  8197. </File>
  8198. <File
  8199. RelativePath="outsourcing3.h"
  8200. >
  8201. </File>
  8202. <File
  8203. RelativePath="outsourcing4.cpp"
  8204. >
  8205. <FileConfiguration
  8206. Name="Debug|Win32"
  8207. >
  8208. <Tool
  8209. Name="VCCLCompilerTool"
  8210. PreprocessorDefinitions=""
  8211. />
  8212. </FileConfiguration>
  8213. <FileConfiguration
  8214. Name="Release|Win32"
  8215. >
  8216. <Tool
  8217. Name="VCCLCompilerTool"
  8218. PreprocessorDefinitions=""
  8219. />
  8220. </FileConfiguration>
  8221. </File>
  8222. <File
  8223. RelativePath="outsourcing4.h"
  8224. >
  8225. </File>
  8226. <File
  8227. RelativePath="outsourcingDlg.cpp"
  8228. >
  8229. <FileConfiguration
  8230. Name="Debug|Win32"
  8231. >
  8232. <Tool
  8233. Name="VCCLCompilerTool"
  8234. PreprocessorDefinitions=""
  8235. />
  8236. </FileConfiguration>
  8237. <FileConfiguration
  8238. Name="Release|Win32"
  8239. >
  8240. <Tool
  8241. Name="VCCLCompilerTool"
  8242. PreprocessorDefinitions=""
  8243. />
  8244. </FileConfiguration>
  8245. </File>
  8246. <File
  8247. RelativePath="outsourcingDlg.h"
  8248. >
  8249. </File>
  8250. <File
  8251. RelativePath="outsourcingDlg2.cpp"
  8252. >
  8253. <FileConfiguration
  8254. Name="Debug|Win32"
  8255. >
  8256. <Tool
  8257. Name="VCCLCompilerTool"
  8258. PreprocessorDefinitions=""
  8259. />
  8260. </FileConfiguration>
  8261. <FileConfiguration
  8262. Name="Release|Win32"
  8263. >
  8264. <Tool
  8265. Name="VCCLCompilerTool"
  8266. PreprocessorDefinitions=""
  8267. />
  8268. </FileConfiguration>
  8269. </File>
  8270. <File
  8271. RelativePath="outsourcingDlg2.h"
  8272. >
  8273. </File>
  8274. <File
  8275. RelativePath="PhotoPrintFrom.cpp"
  8276. >
  8277. <FileConfiguration
  8278. Name="Debug|Win32"
  8279. >
  8280. <Tool
  8281. Name="VCCLCompilerTool"
  8282. PreprocessorDefinitions=""
  8283. />
  8284. </FileConfiguration>
  8285. <FileConfiguration
  8286. Name="Release|Win32"
  8287. >
  8288. <Tool
  8289. Name="VCCLCompilerTool"
  8290. PreprocessorDefinitions=""
  8291. />
  8292. </FileConfiguration>
  8293. </File>
  8294. <File
  8295. RelativePath="PhotoPrintFrom.h"
  8296. >
  8297. </File>
  8298. <File
  8299. RelativePath="PhotoPrintFrom2.cpp"
  8300. >
  8301. <FileConfiguration
  8302. Name="Debug|Win32"
  8303. >
  8304. <Tool
  8305. Name="VCCLCompilerTool"
  8306. PreprocessorDefinitions=""
  8307. />
  8308. </FileConfiguration>
  8309. <FileConfiguration
  8310. Name="Release|Win32"
  8311. >
  8312. <Tool
  8313. Name="VCCLCompilerTool"
  8314. PreprocessorDefinitions=""
  8315. />
  8316. </FileConfiguration>
  8317. </File>
  8318. <File
  8319. RelativePath="PhotoPrintFrom2.h"
  8320. >
  8321. </File>
  8322. <File
  8323. RelativePath="ProcessAlarm.cpp"
  8324. >
  8325. <FileConfiguration
  8326. Name="Debug|Win32"
  8327. >
  8328. <Tool
  8329. Name="VCCLCompilerTool"
  8330. PreprocessorDefinitions=""
  8331. />
  8332. </FileConfiguration>
  8333. <FileConfiguration
  8334. Name="Release|Win32"
  8335. >
  8336. <Tool
  8337. Name="VCCLCompilerTool"
  8338. PreprocessorDefinitions=""
  8339. />
  8340. </FileConfiguration>
  8341. </File>
  8342. <File
  8343. RelativePath="ProcessAlarm.h"
  8344. >
  8345. </File>
  8346. <File
  8347. RelativePath="PropPage1.cpp"
  8348. >
  8349. <FileConfiguration
  8350. Name="Debug|Win32"
  8351. >
  8352. <Tool
  8353. Name="VCCLCompilerTool"
  8354. PreprocessorDefinitions=""
  8355. />
  8356. </FileConfiguration>
  8357. <FileConfiguration
  8358. Name="Release|Win32"
  8359. >
  8360. <Tool
  8361. Name="VCCLCompilerTool"
  8362. PreprocessorDefinitions=""
  8363. />
  8364. </FileConfiguration>
  8365. </File>
  8366. <File
  8367. RelativePath="PropPage1.h"
  8368. >
  8369. </File>
  8370. <File
  8371. RelativePath="SearchFilter.cpp"
  8372. >
  8373. <FileConfiguration
  8374. Name="Debug|Win32"
  8375. >
  8376. <Tool
  8377. Name="VCCLCompilerTool"
  8378. PreprocessorDefinitions=""
  8379. />
  8380. </FileConfiguration>
  8381. <FileConfiguration
  8382. Name="Release|Win32"
  8383. >
  8384. <Tool
  8385. Name="VCCLCompilerTool"
  8386. PreprocessorDefinitions=""
  8387. />
  8388. </FileConfiguration>
  8389. </File>
  8390. <File
  8391. RelativePath="SearchFilter.h"
  8392. >
  8393. </File>
  8394. <File
  8395. RelativePath="SearchFilter2.cpp"
  8396. >
  8397. <FileConfiguration
  8398. Name="Debug|Win32"
  8399. >
  8400. <Tool
  8401. Name="VCCLCompilerTool"
  8402. PreprocessorDefinitions=""
  8403. />
  8404. </FileConfiguration>
  8405. <FileConfiguration
  8406. Name="Release|Win32"
  8407. >
  8408. <Tool
  8409. Name="VCCLCompilerTool"
  8410. PreprocessorDefinitions=""
  8411. />
  8412. </FileConfiguration>
  8413. </File>
  8414. <File
  8415. RelativePath="SearchFilter2.h"
  8416. >
  8417. </File>
  8418. <File
  8419. RelativePath="SearchFilter3.cpp"
  8420. >
  8421. <FileConfiguration
  8422. Name="Debug|Win32"
  8423. >
  8424. <Tool
  8425. Name="VCCLCompilerTool"
  8426. PreprocessorDefinitions=""
  8427. />
  8428. </FileConfiguration>
  8429. <FileConfiguration
  8430. Name="Release|Win32"
  8431. >
  8432. <Tool
  8433. Name="VCCLCompilerTool"
  8434. PreprocessorDefinitions=""
  8435. />
  8436. </FileConfiguration>
  8437. </File>
  8438. <File
  8439. RelativePath="SearchFilter3.h"
  8440. >
  8441. </File>
  8442. <File
  8443. RelativePath="SelGrowthTXName.cpp"
  8444. >
  8445. <FileConfiguration
  8446. Name="Debug|Win32"
  8447. >
  8448. <Tool
  8449. Name="VCCLCompilerTool"
  8450. PreprocessorDefinitions=""
  8451. />
  8452. </FileConfiguration>
  8453. <FileConfiguration
  8454. Name="Release|Win32"
  8455. >
  8456. <Tool
  8457. Name="VCCLCompilerTool"
  8458. PreprocessorDefinitions=""
  8459. />
  8460. </FileConfiguration>
  8461. </File>
  8462. <File
  8463. RelativePath="SelGrowthTXName.h"
  8464. >
  8465. </File>
  8466. <File
  8467. RelativePath="SetStyle.cpp"
  8468. >
  8469. <FileConfiguration
  8470. Name="Debug|Win32"
  8471. >
  8472. <Tool
  8473. Name="VCCLCompilerTool"
  8474. PreprocessorDefinitions=""
  8475. />
  8476. </FileConfiguration>
  8477. <FileConfiguration
  8478. Name="Release|Win32"
  8479. >
  8480. <Tool
  8481. Name="VCCLCompilerTool"
  8482. PreprocessorDefinitions=""
  8483. />
  8484. </FileConfiguration>
  8485. </File>
  8486. <File
  8487. RelativePath="SetStyle.h"
  8488. >
  8489. </File>
  8490. <File
  8491. RelativePath="ShowHistoryClient.cpp"
  8492. >
  8493. <FileConfiguration
  8494. Name="Debug|Win32"
  8495. >
  8496. <Tool
  8497. Name="VCCLCompilerTool"
  8498. PreprocessorDefinitions=""
  8499. />
  8500. </FileConfiguration>
  8501. <FileConfiguration
  8502. Name="Release|Win32"
  8503. >
  8504. <Tool
  8505. Name="VCCLCompilerTool"
  8506. PreprocessorDefinitions=""
  8507. />
  8508. </FileConfiguration>
  8509. </File>
  8510. <File
  8511. RelativePath="ShowHistoryClient.h"
  8512. >
  8513. </File>
  8514. <File
  8515. RelativePath="ShowPic.cpp"
  8516. >
  8517. <FileConfiguration
  8518. Name="Debug|Win32"
  8519. >
  8520. <Tool
  8521. Name="VCCLCompilerTool"
  8522. PreprocessorDefinitions=""
  8523. />
  8524. </FileConfiguration>
  8525. <FileConfiguration
  8526. Name="Release|Win32"
  8527. >
  8528. <Tool
  8529. Name="VCCLCompilerTool"
  8530. PreprocessorDefinitions=""
  8531. />
  8532. </FileConfiguration>
  8533. </File>
  8534. <File
  8535. RelativePath="ShowPic.h"
  8536. >
  8537. </File>
  8538. <File
  8539. RelativePath="ShowPic3.cpp"
  8540. >
  8541. <FileConfiguration
  8542. Name="Debug|Win32"
  8543. >
  8544. <Tool
  8545. Name="VCCLCompilerTool"
  8546. PreprocessorDefinitions=""
  8547. />
  8548. </FileConfiguration>
  8549. <FileConfiguration
  8550. Name="Release|Win32"
  8551. >
  8552. <Tool
  8553. Name="VCCLCompilerTool"
  8554. PreprocessorDefinitions=""
  8555. />
  8556. </FileConfiguration>
  8557. </File>
  8558. <File
  8559. RelativePath="ShowPic3.h"
  8560. >
  8561. </File>
  8562. <File
  8563. RelativePath="TakeFrom.cpp"
  8564. >
  8565. <FileConfiguration
  8566. Name="Debug|Win32"
  8567. >
  8568. <Tool
  8569. Name="VCCLCompilerTool"
  8570. PreprocessorDefinitions=""
  8571. />
  8572. </FileConfiguration>
  8573. <FileConfiguration
  8574. Name="Release|Win32"
  8575. >
  8576. <Tool
  8577. Name="VCCLCompilerTool"
  8578. PreprocessorDefinitions=""
  8579. />
  8580. </FileConfiguration>
  8581. </File>
  8582. <File
  8583. RelativePath="TakeFrom.h"
  8584. >
  8585. </File>
  8586. <File
  8587. RelativePath="TakeMoney2.cpp"
  8588. >
  8589. <FileConfiguration
  8590. Name="Debug|Win32"
  8591. >
  8592. <Tool
  8593. Name="VCCLCompilerTool"
  8594. PreprocessorDefinitions=""
  8595. />
  8596. </FileConfiguration>
  8597. <FileConfiguration
  8598. Name="Release|Win32"
  8599. >
  8600. <Tool
  8601. Name="VCCLCompilerTool"
  8602. PreprocessorDefinitions=""
  8603. />
  8604. </FileConfiguration>
  8605. </File>
  8606. <File
  8607. RelativePath="TakeMoney2.h"
  8608. >
  8609. </File>
  8610. <File
  8611. RelativePath="TakeMoney3.cpp"
  8612. >
  8613. <FileConfiguration
  8614. Name="Debug|Win32"
  8615. >
  8616. <Tool
  8617. Name="VCCLCompilerTool"
  8618. PreprocessorDefinitions=""
  8619. />
  8620. </FileConfiguration>
  8621. <FileConfiguration
  8622. Name="Release|Win32"
  8623. >
  8624. <Tool
  8625. Name="VCCLCompilerTool"
  8626. PreprocessorDefinitions=""
  8627. />
  8628. </FileConfiguration>
  8629. </File>
  8630. <File
  8631. RelativePath="TakeMoney3.h"
  8632. >
  8633. </File>
  8634. <File
  8635. RelativePath="TakeMoney4.cpp"
  8636. >
  8637. <FileConfiguration
  8638. Name="Debug|Win32"
  8639. >
  8640. <Tool
  8641. Name="VCCLCompilerTool"
  8642. PreprocessorDefinitions=""
  8643. />
  8644. </FileConfiguration>
  8645. <FileConfiguration
  8646. Name="Release|Win32"
  8647. >
  8648. <Tool
  8649. Name="VCCLCompilerTool"
  8650. PreprocessorDefinitions=""
  8651. />
  8652. </FileConfiguration>
  8653. </File>
  8654. <File
  8655. RelativePath="TakeMoney4.h"
  8656. >
  8657. </File>
  8658. <File
  8659. RelativePath="TakeStautsSel.cpp"
  8660. >
  8661. <FileConfiguration
  8662. Name="Debug|Win32"
  8663. >
  8664. <Tool
  8665. Name="VCCLCompilerTool"
  8666. PreprocessorDefinitions=""
  8667. />
  8668. </FileConfiguration>
  8669. <FileConfiguration
  8670. Name="Release|Win32"
  8671. >
  8672. <Tool
  8673. Name="VCCLCompilerTool"
  8674. PreprocessorDefinitions=""
  8675. />
  8676. </FileConfiguration>
  8677. </File>
  8678. <File
  8679. RelativePath="TakeStautsSel.h"
  8680. >
  8681. </File>
  8682. <File
  8683. RelativePath="UploadPhoto.cpp"
  8684. >
  8685. <FileConfiguration
  8686. Name="Debug|Win32"
  8687. >
  8688. <Tool
  8689. Name="VCCLCompilerTool"
  8690. PreprocessorDefinitions=""
  8691. />
  8692. </FileConfiguration>
  8693. <FileConfiguration
  8694. Name="Release|Win32"
  8695. >
  8696. <Tool
  8697. Name="VCCLCompilerTool"
  8698. PreprocessorDefinitions=""
  8699. />
  8700. </FileConfiguration>
  8701. </File>
  8702. <File
  8703. RelativePath="UploadPhoto.h"
  8704. >
  8705. </File>
  8706. </Filter>
  8707. <Filter
  8708. Name="仓库管理"
  8709. >
  8710. <File
  8711. RelativePath="FixedAssets.cpp"
  8712. >
  8713. <FileConfiguration
  8714. Name="Debug|Win32"
  8715. >
  8716. <Tool
  8717. Name="VCCLCompilerTool"
  8718. PreprocessorDefinitions=""
  8719. />
  8720. </FileConfiguration>
  8721. <FileConfiguration
  8722. Name="Release|Win32"
  8723. >
  8724. <Tool
  8725. Name="VCCLCompilerTool"
  8726. PreprocessorDefinitions=""
  8727. />
  8728. </FileConfiguration>
  8729. </File>
  8730. <File
  8731. RelativePath="FixedAssets.h"
  8732. >
  8733. </File>
  8734. <File
  8735. RelativePath="InputGoods.cpp"
  8736. >
  8737. <FileConfiguration
  8738. Name="Debug|Win32"
  8739. >
  8740. <Tool
  8741. Name="VCCLCompilerTool"
  8742. PreprocessorDefinitions=""
  8743. />
  8744. </FileConfiguration>
  8745. <FileConfiguration
  8746. Name="Release|Win32"
  8747. >
  8748. <Tool
  8749. Name="VCCLCompilerTool"
  8750. PreprocessorDefinitions=""
  8751. />
  8752. </FileConfiguration>
  8753. </File>
  8754. <File
  8755. RelativePath="InputGoods.h"
  8756. >
  8757. </File>
  8758. <File
  8759. RelativePath="ShowGoods.cpp"
  8760. >
  8761. <FileConfiguration
  8762. Name="Debug|Win32"
  8763. >
  8764. <Tool
  8765. Name="VCCLCompilerTool"
  8766. PreprocessorDefinitions=""
  8767. />
  8768. </FileConfiguration>
  8769. <FileConfiguration
  8770. Name="Release|Win32"
  8771. >
  8772. <Tool
  8773. Name="VCCLCompilerTool"
  8774. PreprocessorDefinitions=""
  8775. />
  8776. </FileConfiguration>
  8777. </File>
  8778. <File
  8779. RelativePath="ShowGoods.h"
  8780. >
  8781. </File>
  8782. <File
  8783. RelativePath="StoreInfoChart.cpp"
  8784. >
  8785. <FileConfiguration
  8786. Name="Debug|Win32"
  8787. >
  8788. <Tool
  8789. Name="VCCLCompilerTool"
  8790. PreprocessorDefinitions=""
  8791. />
  8792. </FileConfiguration>
  8793. <FileConfiguration
  8794. Name="Release|Win32"
  8795. >
  8796. <Tool
  8797. Name="VCCLCompilerTool"
  8798. PreprocessorDefinitions=""
  8799. />
  8800. </FileConfiguration>
  8801. </File>
  8802. <File
  8803. RelativePath="StoreInfoChart.h"
  8804. >
  8805. </File>
  8806. </Filter>
  8807. <Filter
  8808. Name="COOLSKIN"
  8809. >
  8810. <File
  8811. RelativePath="ButtonExt.cpp"
  8812. >
  8813. <FileConfiguration
  8814. Name="Debug|Win32"
  8815. >
  8816. <Tool
  8817. Name="VCCLCompilerTool"
  8818. PreprocessorDefinitions=""
  8819. />
  8820. </FileConfiguration>
  8821. <FileConfiguration
  8822. Name="Release|Win32"
  8823. >
  8824. <Tool
  8825. Name="VCCLCompilerTool"
  8826. PreprocessorDefinitions=""
  8827. />
  8828. </FileConfiguration>
  8829. </File>
  8830. <File
  8831. RelativePath="ButtonExt.h"
  8832. >
  8833. </File>
  8834. <File
  8835. RelativePath="CheckBoxExt.cpp"
  8836. >
  8837. <FileConfiguration
  8838. Name="Debug|Win32"
  8839. >
  8840. <Tool
  8841. Name="VCCLCompilerTool"
  8842. PreprocessorDefinitions=""
  8843. />
  8844. </FileConfiguration>
  8845. <FileConfiguration
  8846. Name="Release|Win32"
  8847. >
  8848. <Tool
  8849. Name="VCCLCompilerTool"
  8850. PreprocessorDefinitions=""
  8851. />
  8852. </FileConfiguration>
  8853. </File>
  8854. <File
  8855. RelativePath="CheckBoxExt.h"
  8856. >
  8857. </File>
  8858. <File
  8859. RelativePath="ComboBoxExt.cpp"
  8860. >
  8861. <FileConfiguration
  8862. Name="Debug|Win32"
  8863. >
  8864. <Tool
  8865. Name="VCCLCompilerTool"
  8866. PreprocessorDefinitions=""
  8867. />
  8868. </FileConfiguration>
  8869. <FileConfiguration
  8870. Name="Release|Win32"
  8871. >
  8872. <Tool
  8873. Name="VCCLCompilerTool"
  8874. PreprocessorDefinitions=""
  8875. />
  8876. </FileConfiguration>
  8877. </File>
  8878. <File
  8879. RelativePath="ComboBoxExt.h"
  8880. >
  8881. </File>
  8882. <File
  8883. RelativePath="scrollbar\coolsb_detours.h"
  8884. >
  8885. </File>
  8886. <File
  8887. RelativePath="scrollbar\coolsb_internal.h"
  8888. >
  8889. </File>
  8890. <File
  8891. RelativePath="scrollbar\coolsblib.cpp"
  8892. >
  8893. <FileConfiguration
  8894. Name="Debug|Win32"
  8895. >
  8896. <Tool
  8897. Name="VCCLCompilerTool"
  8898. PreprocessorDefinitions=""
  8899. />
  8900. </FileConfiguration>
  8901. <FileConfiguration
  8902. Name="Release|Win32"
  8903. >
  8904. <Tool
  8905. Name="VCCLCompilerTool"
  8906. PreprocessorDefinitions=""
  8907. />
  8908. </FileConfiguration>
  8909. </File>
  8910. <File
  8911. RelativePath="scrollbar\coolsblib.h"
  8912. >
  8913. </File>
  8914. <File
  8915. RelativePath="scrollbar\coolscroll.cpp"
  8916. >
  8917. <FileConfiguration
  8918. Name="Debug|Win32"
  8919. >
  8920. <Tool
  8921. Name="VCCLCompilerTool"
  8922. PreprocessorDefinitions=""
  8923. />
  8924. </FileConfiguration>
  8925. <FileConfiguration
  8926. Name="Release|Win32"
  8927. >
  8928. <Tool
  8929. Name="VCCLCompilerTool"
  8930. PreprocessorDefinitions=""
  8931. />
  8932. </FileConfiguration>
  8933. </File>
  8934. <File
  8935. RelativePath="scrollbar\coolscroll.h"
  8936. >
  8937. </File>
  8938. <File
  8939. RelativePath="DialogExt.cpp"
  8940. >
  8941. <FileConfiguration
  8942. Name="Debug|Win32"
  8943. >
  8944. <Tool
  8945. Name="VCCLCompilerTool"
  8946. PreprocessorDefinitions=""
  8947. />
  8948. </FileConfiguration>
  8949. <FileConfiguration
  8950. Name="Release|Win32"
  8951. >
  8952. <Tool
  8953. Name="VCCLCompilerTool"
  8954. PreprocessorDefinitions=""
  8955. />
  8956. </FileConfiguration>
  8957. </File>
  8958. <File
  8959. RelativePath="DialogExt.h"
  8960. >
  8961. </File>
  8962. <File
  8963. RelativePath="EditExt.cpp"
  8964. >
  8965. <FileConfiguration
  8966. Name="Debug|Win32"
  8967. >
  8968. <Tool
  8969. Name="VCCLCompilerTool"
  8970. PreprocessorDefinitions=""
  8971. />
  8972. </FileConfiguration>
  8973. <FileConfiguration
  8974. Name="Release|Win32"
  8975. >
  8976. <Tool
  8977. Name="VCCLCompilerTool"
  8978. PreprocessorDefinitions=""
  8979. />
  8980. </FileConfiguration>
  8981. </File>
  8982. <File
  8983. RelativePath="EditExt.h"
  8984. >
  8985. </File>
  8986. <File
  8987. RelativePath="GroupBoxExt.cpp"
  8988. >
  8989. <FileConfiguration
  8990. Name="Debug|Win32"
  8991. >
  8992. <Tool
  8993. Name="VCCLCompilerTool"
  8994. PreprocessorDefinitions=""
  8995. />
  8996. </FileConfiguration>
  8997. <FileConfiguration
  8998. Name="Release|Win32"
  8999. >
  9000. <Tool
  9001. Name="VCCLCompilerTool"
  9002. PreprocessorDefinitions=""
  9003. />
  9004. </FileConfiguration>
  9005. </File>
  9006. <File
  9007. RelativePath="GroupBoxExt.h"
  9008. >
  9009. </File>
  9010. <File
  9011. RelativePath="library.cpp"
  9012. >
  9013. <FileConfiguration
  9014. Name="Debug|Win32"
  9015. >
  9016. <Tool
  9017. Name="VCCLCompilerTool"
  9018. PreprocessorDefinitions=""
  9019. />
  9020. </FileConfiguration>
  9021. <FileConfiguration
  9022. Name="Release|Win32"
  9023. >
  9024. <Tool
  9025. Name="VCCLCompilerTool"
  9026. PreprocessorDefinitions=""
  9027. />
  9028. </FileConfiguration>
  9029. </File>
  9030. <File
  9031. RelativePath="library.h"
  9032. >
  9033. </File>
  9034. <File
  9035. RelativePath="RadioExt.cpp"
  9036. >
  9037. <FileConfiguration
  9038. Name="Debug|Win32"
  9039. >
  9040. <Tool
  9041. Name="VCCLCompilerTool"
  9042. PreprocessorDefinitions=""
  9043. />
  9044. </FileConfiguration>
  9045. <FileConfiguration
  9046. Name="Release|Win32"
  9047. >
  9048. <Tool
  9049. Name="VCCLCompilerTool"
  9050. PreprocessorDefinitions=""
  9051. />
  9052. </FileConfiguration>
  9053. </File>
  9054. <File
  9055. RelativePath="RadioExt.h"
  9056. >
  9057. </File>
  9058. <File
  9059. RelativePath="scrollbar\testcustdraw.cpp"
  9060. >
  9061. <FileConfiguration
  9062. Name="Debug|Win32"
  9063. >
  9064. <Tool
  9065. Name="VCCLCompilerTool"
  9066. PreprocessorDefinitions=""
  9067. />
  9068. </FileConfiguration>
  9069. <FileConfiguration
  9070. Name="Release|Win32"
  9071. >
  9072. <Tool
  9073. Name="VCCLCompilerTool"
  9074. PreprocessorDefinitions=""
  9075. />
  9076. </FileConfiguration>
  9077. </File>
  9078. <File
  9079. RelativePath="scrollbar\userdefs.h"
  9080. >
  9081. </File>
  9082. </Filter>
  9083. <Filter
  9084. Name="考勤"
  9085. >
  9086. <File
  9087. RelativePath="LoginReg.cpp"
  9088. >
  9089. <FileConfiguration
  9090. Name="Debug|Win32"
  9091. >
  9092. <Tool
  9093. Name="VCCLCompilerTool"
  9094. PreprocessorDefinitions=""
  9095. />
  9096. </FileConfiguration>
  9097. <FileConfiguration
  9098. Name="Release|Win32"
  9099. >
  9100. <Tool
  9101. Name="VCCLCompilerTool"
  9102. PreprocessorDefinitions=""
  9103. />
  9104. </FileConfiguration>
  9105. </File>
  9106. <File
  9107. RelativePath="LoginReg.h"
  9108. >
  9109. </File>
  9110. <File
  9111. RelativePath="LoginReg2.cpp"
  9112. >
  9113. <FileConfiguration
  9114. Name="Debug|Win32"
  9115. >
  9116. <Tool
  9117. Name="VCCLCompilerTool"
  9118. PreprocessorDefinitions=""
  9119. />
  9120. </FileConfiguration>
  9121. <FileConfiguration
  9122. Name="Release|Win32"
  9123. >
  9124. <Tool
  9125. Name="VCCLCompilerTool"
  9126. PreprocessorDefinitions=""
  9127. />
  9128. </FileConfiguration>
  9129. </File>
  9130. <File
  9131. RelativePath="LoginReg2.h"
  9132. >
  9133. </File>
  9134. <File
  9135. RelativePath="LoginSign.cpp"
  9136. >
  9137. <FileConfiguration
  9138. Name="Debug|Win32"
  9139. >
  9140. <Tool
  9141. Name="VCCLCompilerTool"
  9142. PreprocessorDefinitions=""
  9143. />
  9144. </FileConfiguration>
  9145. <FileConfiguration
  9146. Name="Release|Win32"
  9147. >
  9148. <Tool
  9149. Name="VCCLCompilerTool"
  9150. PreprocessorDefinitions=""
  9151. />
  9152. </FileConfiguration>
  9153. </File>
  9154. <File
  9155. RelativePath="LoginSign.h"
  9156. >
  9157. </File>
  9158. <File
  9159. RelativePath="SetLoginBan.cpp"
  9160. >
  9161. <FileConfiguration
  9162. Name="Debug|Win32"
  9163. >
  9164. <Tool
  9165. Name="VCCLCompilerTool"
  9166. PreprocessorDefinitions=""
  9167. />
  9168. </FileConfiguration>
  9169. <FileConfiguration
  9170. Name="Release|Win32"
  9171. >
  9172. <Tool
  9173. Name="VCCLCompilerTool"
  9174. PreprocessorDefinitions=""
  9175. />
  9176. </FileConfiguration>
  9177. </File>
  9178. <File
  9179. RelativePath="SetLoginBan.h"
  9180. >
  9181. </File>
  9182. <File
  9183. RelativePath="SetLoginTime.cpp"
  9184. >
  9185. <FileConfiguration
  9186. Name="Debug|Win32"
  9187. >
  9188. <Tool
  9189. Name="VCCLCompilerTool"
  9190. PreprocessorDefinitions=""
  9191. />
  9192. </FileConfiguration>
  9193. <FileConfiguration
  9194. Name="Release|Win32"
  9195. >
  9196. <Tool
  9197. Name="VCCLCompilerTool"
  9198. PreprocessorDefinitions=""
  9199. />
  9200. </FileConfiguration>
  9201. </File>
  9202. <File
  9203. RelativePath="SetLoginTime.h"
  9204. >
  9205. </File>
  9206. </Filter>
  9207. <Filter
  9208. Name="客户来电"
  9209. >
  9210. <File
  9211. RelativePath="AVIPlayerDlg.cpp"
  9212. >
  9213. <FileConfiguration
  9214. Name="Debug|Win32"
  9215. >
  9216. <Tool
  9217. Name="VCCLCompilerTool"
  9218. PreprocessorDefinitions=""
  9219. />
  9220. </FileConfiguration>
  9221. <FileConfiguration
  9222. Name="Release|Win32"
  9223. >
  9224. <Tool
  9225. Name="VCCLCompilerTool"
  9226. PreprocessorDefinitions=""
  9227. />
  9228. </FileConfiguration>
  9229. </File>
  9230. <File
  9231. RelativePath="AVIPlayerDlg.h"
  9232. >
  9233. </File>
  9234. <File
  9235. RelativePath="MissCall.cpp"
  9236. >
  9237. <FileConfiguration
  9238. Name="Debug|Win32"
  9239. >
  9240. <Tool
  9241. Name="VCCLCompilerTool"
  9242. PreprocessorDefinitions=""
  9243. />
  9244. </FileConfiguration>
  9245. <FileConfiguration
  9246. Name="Release|Win32"
  9247. >
  9248. <Tool
  9249. Name="VCCLCompilerTool"
  9250. PreprocessorDefinitions=""
  9251. />
  9252. </FileConfiguration>
  9253. </File>
  9254. <File
  9255. RelativePath="MissCall.h"
  9256. >
  9257. </File>
  9258. <File
  9259. RelativePath="PhoneRecord.cpp"
  9260. >
  9261. <FileConfiguration
  9262. Name="Debug|Win32"
  9263. >
  9264. <Tool
  9265. Name="VCCLCompilerTool"
  9266. PreprocessorDefinitions=""
  9267. />
  9268. </FileConfiguration>
  9269. <FileConfiguration
  9270. Name="Release|Win32"
  9271. >
  9272. <Tool
  9273. Name="VCCLCompilerTool"
  9274. PreprocessorDefinitions=""
  9275. />
  9276. </FileConfiguration>
  9277. </File>
  9278. <File
  9279. RelativePath="PhoneRecord.h"
  9280. >
  9281. </File>
  9282. <File
  9283. RelativePath="PhoneRecordOut.cpp"
  9284. >
  9285. <FileConfiguration
  9286. Name="Debug|Win32"
  9287. >
  9288. <Tool
  9289. Name="VCCLCompilerTool"
  9290. PreprocessorDefinitions=""
  9291. />
  9292. </FileConfiguration>
  9293. <FileConfiguration
  9294. Name="Release|Win32"
  9295. >
  9296. <Tool
  9297. Name="VCCLCompilerTool"
  9298. PreprocessorDefinitions=""
  9299. />
  9300. </FileConfiguration>
  9301. </File>
  9302. <File
  9303. RelativePath="PhoneRecordOut.h"
  9304. >
  9305. </File>
  9306. </Filter>
  9307. <Filter
  9308. Name="MenuToolBar"
  9309. >
  9310. <File
  9311. RelativePath="BCMenu.cpp"
  9312. >
  9313. <FileConfiguration
  9314. Name="Debug|Win32"
  9315. >
  9316. <Tool
  9317. Name="VCCLCompilerTool"
  9318. PreprocessorDefinitions=""
  9319. />
  9320. </FileConfiguration>
  9321. <FileConfiguration
  9322. Name="Release|Win32"
  9323. >
  9324. <Tool
  9325. Name="VCCLCompilerTool"
  9326. PreprocessorDefinitions=""
  9327. />
  9328. </FileConfiguration>
  9329. </File>
  9330. <File
  9331. RelativePath="BCMenu.h"
  9332. >
  9333. </File>
  9334. <File
  9335. RelativePath="BtnST.cpp"
  9336. >
  9337. <FileConfiguration
  9338. Name="Debug|Win32"
  9339. >
  9340. <Tool
  9341. Name="VCCLCompilerTool"
  9342. PreprocessorDefinitions=""
  9343. />
  9344. </FileConfiguration>
  9345. <FileConfiguration
  9346. Name="Release|Win32"
  9347. >
  9348. <Tool
  9349. Name="VCCLCompilerTool"
  9350. PreprocessorDefinitions=""
  9351. />
  9352. </FileConfiguration>
  9353. </File>
  9354. <File
  9355. RelativePath="BtnST.h"
  9356. >
  9357. </File>
  9358. <File
  9359. RelativePath="MyToolBar.cpp"
  9360. >
  9361. <FileConfiguration
  9362. Name="Debug|Win32"
  9363. >
  9364. <Tool
  9365. Name="VCCLCompilerTool"
  9366. PreprocessorDefinitions=""
  9367. />
  9368. </FileConfiguration>
  9369. <FileConfiguration
  9370. Name="Release|Win32"
  9371. >
  9372. <Tool
  9373. Name="VCCLCompilerTool"
  9374. PreprocessorDefinitions=""
  9375. />
  9376. </FileConfiguration>
  9377. </File>
  9378. <File
  9379. RelativePath="MyToolBar.h"
  9380. >
  9381. </File>
  9382. <File
  9383. RelativePath="TrueColorToolBar.cpp"
  9384. >
  9385. <FileConfiguration
  9386. Name="Debug|Win32"
  9387. >
  9388. <Tool
  9389. Name="VCCLCompilerTool"
  9390. PreprocessorDefinitions=""
  9391. />
  9392. </FileConfiguration>
  9393. <FileConfiguration
  9394. Name="Release|Win32"
  9395. >
  9396. <Tool
  9397. Name="VCCLCompilerTool"
  9398. PreprocessorDefinitions=""
  9399. />
  9400. </FileConfiguration>
  9401. </File>
  9402. <File
  9403. RelativePath="TrueColorToolBar.h"
  9404. >
  9405. </File>
  9406. </Filter>
  9407. <Filter
  9408. Name="客户管理"
  9409. >
  9410. <File
  9411. RelativePath="AddClient.cpp"
  9412. >
  9413. <FileConfiguration
  9414. Name="Debug|Win32"
  9415. >
  9416. <Tool
  9417. Name="VCCLCompilerTool"
  9418. PreprocessorDefinitions=""
  9419. />
  9420. </FileConfiguration>
  9421. <FileConfiguration
  9422. Name="Release|Win32"
  9423. >
  9424. <Tool
  9425. Name="VCCLCompilerTool"
  9426. PreprocessorDefinitions=""
  9427. />
  9428. </FileConfiguration>
  9429. </File>
  9430. <File
  9431. RelativePath="AddClient.h"
  9432. >
  9433. </File>
  9434. <File
  9435. RelativePath="AddOldClient.cpp"
  9436. >
  9437. <FileConfiguration
  9438. Name="Debug|Win32"
  9439. >
  9440. <Tool
  9441. Name="VCCLCompilerTool"
  9442. PreprocessorDefinitions=""
  9443. />
  9444. </FileConfiguration>
  9445. <FileConfiguration
  9446. Name="Release|Win32"
  9447. >
  9448. <Tool
  9449. Name="VCCLCompilerTool"
  9450. PreprocessorDefinitions=""
  9451. />
  9452. </FileConfiguration>
  9453. </File>
  9454. <File
  9455. RelativePath="AddOldClient.h"
  9456. >
  9457. </File>
  9458. <File
  9459. RelativePath="AddOldClient2.cpp"
  9460. >
  9461. <FileConfiguration
  9462. Name="Debug|Win32"
  9463. >
  9464. <Tool
  9465. Name="VCCLCompilerTool"
  9466. PreprocessorDefinitions=""
  9467. />
  9468. </FileConfiguration>
  9469. <FileConfiguration
  9470. Name="Release|Win32"
  9471. >
  9472. <Tool
  9473. Name="VCCLCompilerTool"
  9474. PreprocessorDefinitions=""
  9475. />
  9476. </FileConfiguration>
  9477. </File>
  9478. <File
  9479. RelativePath="AddOldClient2.h"
  9480. >
  9481. </File>
  9482. <File
  9483. RelativePath="Client2Form.cpp"
  9484. >
  9485. <FileConfiguration
  9486. Name="Debug|Win32"
  9487. >
  9488. <Tool
  9489. Name="VCCLCompilerTool"
  9490. PreprocessorDefinitions=""
  9491. />
  9492. </FileConfiguration>
  9493. <FileConfiguration
  9494. Name="Release|Win32"
  9495. >
  9496. <Tool
  9497. Name="VCCLCompilerTool"
  9498. PreprocessorDefinitions=""
  9499. />
  9500. </FileConfiguration>
  9501. </File>
  9502. <File
  9503. RelativePath="Client2Form.h"
  9504. >
  9505. </File>
  9506. <File
  9507. RelativePath="ClientFromChart.cpp"
  9508. >
  9509. <FileConfiguration
  9510. Name="Debug|Win32"
  9511. >
  9512. <Tool
  9513. Name="VCCLCompilerTool"
  9514. PreprocessorDefinitions=""
  9515. />
  9516. </FileConfiguration>
  9517. <FileConfiguration
  9518. Name="Release|Win32"
  9519. >
  9520. <Tool
  9521. Name="VCCLCompilerTool"
  9522. PreprocessorDefinitions=""
  9523. />
  9524. </FileConfiguration>
  9525. </File>
  9526. <File
  9527. RelativePath="ClientFromChart.h"
  9528. >
  9529. </File>
  9530. <File
  9531. RelativePath="ClientReasonChart.cpp"
  9532. >
  9533. <FileConfiguration
  9534. Name="Debug|Win32"
  9535. >
  9536. <Tool
  9537. Name="VCCLCompilerTool"
  9538. PreprocessorDefinitions=""
  9539. />
  9540. </FileConfiguration>
  9541. <FileConfiguration
  9542. Name="Release|Win32"
  9543. >
  9544. <Tool
  9545. Name="VCCLCompilerTool"
  9546. PreprocessorDefinitions=""
  9547. />
  9548. </FileConfiguration>
  9549. </File>
  9550. <File
  9551. RelativePath="ClientReasonChart.h"
  9552. >
  9553. </File>
  9554. <File
  9555. RelativePath="OldClient.cpp"
  9556. >
  9557. <FileConfiguration
  9558. Name="Debug|Win32"
  9559. >
  9560. <Tool
  9561. Name="VCCLCompilerTool"
  9562. PreprocessorDefinitions=""
  9563. />
  9564. </FileConfiguration>
  9565. <FileConfiguration
  9566. Name="Release|Win32"
  9567. >
  9568. <Tool
  9569. Name="VCCLCompilerTool"
  9570. PreprocessorDefinitions=""
  9571. />
  9572. </FileConfiguration>
  9573. </File>
  9574. <File
  9575. RelativePath="OldClient.h"
  9576. >
  9577. </File>
  9578. <File
  9579. RelativePath="SearchFilter5.cpp"
  9580. >
  9581. <FileConfiguration
  9582. Name="Debug|Win32"
  9583. >
  9584. <Tool
  9585. Name="VCCLCompilerTool"
  9586. PreprocessorDefinitions=""
  9587. />
  9588. </FileConfiguration>
  9589. <FileConfiguration
  9590. Name="Release|Win32"
  9591. >
  9592. <Tool
  9593. Name="VCCLCompilerTool"
  9594. PreprocessorDefinitions=""
  9595. />
  9596. </FileConfiguration>
  9597. </File>
  9598. <File
  9599. RelativePath="SearchFilter5.h"
  9600. >
  9601. </File>
  9602. </Filter>
  9603. <Filter
  9604. Name="图表"
  9605. >
  9606. <File
  9607. RelativePath="DinDanForm.cpp"
  9608. >
  9609. <FileConfiguration
  9610. Name="Debug|Win32"
  9611. >
  9612. <Tool
  9613. Name="VCCLCompilerTool"
  9614. PreprocessorDefinitions=""
  9615. />
  9616. </FileConfiguration>
  9617. <FileConfiguration
  9618. Name="Release|Win32"
  9619. >
  9620. <Tool
  9621. Name="VCCLCompilerTool"
  9622. PreprocessorDefinitions=""
  9623. />
  9624. </FileConfiguration>
  9625. </File>
  9626. <File
  9627. RelativePath="DinDanForm.h"
  9628. >
  9629. </File>
  9630. <File
  9631. RelativePath="DinDanForm2.cpp"
  9632. >
  9633. <FileConfiguration
  9634. Name="Debug|Win32"
  9635. >
  9636. <Tool
  9637. Name="VCCLCompilerTool"
  9638. PreprocessorDefinitions=""
  9639. />
  9640. </FileConfiguration>
  9641. <FileConfiguration
  9642. Name="Release|Win32"
  9643. >
  9644. <Tool
  9645. Name="VCCLCompilerTool"
  9646. PreprocessorDefinitions=""
  9647. />
  9648. </FileConfiguration>
  9649. </File>
  9650. <File
  9651. RelativePath="DinDanForm2.h"
  9652. >
  9653. </File>
  9654. </Filter>
  9655. <Filter
  9656. Name="XTable"
  9657. >
  9658. <File
  9659. RelativePath="Markup.cpp"
  9660. >
  9661. <FileConfiguration
  9662. Name="Debug|Win32"
  9663. >
  9664. <Tool
  9665. Name="VCCLCompilerTool"
  9666. PreprocessorDefinitions=""
  9667. />
  9668. </FileConfiguration>
  9669. <FileConfiguration
  9670. Name="Release|Win32"
  9671. >
  9672. <Tool
  9673. Name="VCCLCompilerTool"
  9674. PreprocessorDefinitions=""
  9675. />
  9676. </FileConfiguration>
  9677. </File>
  9678. <File
  9679. RelativePath="Markup.h"
  9680. >
  9681. </File>
  9682. <File
  9683. RelativePath="XCell.cpp"
  9684. >
  9685. <FileConfiguration
  9686. Name="Debug|Win32"
  9687. >
  9688. <Tool
  9689. Name="VCCLCompilerTool"
  9690. PreprocessorDefinitions=""
  9691. />
  9692. </FileConfiguration>
  9693. <FileConfiguration
  9694. Name="Release|Win32"
  9695. >
  9696. <Tool
  9697. Name="VCCLCompilerTool"
  9698. PreprocessorDefinitions=""
  9699. />
  9700. </FileConfiguration>
  9701. </File>
  9702. <File
  9703. RelativePath="XCell.h"
  9704. >
  9705. </File>
  9706. <File
  9707. RelativePath="XTable.cpp"
  9708. >
  9709. <FileConfiguration
  9710. Name="Debug|Win32"
  9711. >
  9712. <Tool
  9713. Name="VCCLCompilerTool"
  9714. PreprocessorDefinitions=""
  9715. />
  9716. </FileConfiguration>
  9717. <FileConfiguration
  9718. Name="Release|Win32"
  9719. >
  9720. <Tool
  9721. Name="VCCLCompilerTool"
  9722. PreprocessorDefinitions=""
  9723. />
  9724. </FileConfiguration>
  9725. </File>
  9726. <File
  9727. RelativePath="XTable.h"
  9728. >
  9729. </File>
  9730. </Filter>
  9731. <Filter
  9732. Name="ComboTree"
  9733. >
  9734. <File
  9735. RelativePath="ComboTreeCtrl.cpp"
  9736. >
  9737. <FileConfiguration
  9738. Name="Debug|Win32"
  9739. >
  9740. <Tool
  9741. Name="VCCLCompilerTool"
  9742. PreprocessorDefinitions=""
  9743. />
  9744. </FileConfiguration>
  9745. <FileConfiguration
  9746. Name="Release|Win32"
  9747. >
  9748. <Tool
  9749. Name="VCCLCompilerTool"
  9750. PreprocessorDefinitions=""
  9751. />
  9752. </FileConfiguration>
  9753. </File>
  9754. <File
  9755. RelativePath="ComboTreeCtrl.h"
  9756. >
  9757. </File>
  9758. <File
  9759. RelativePath="ComboTreeCtrl2.cpp"
  9760. >
  9761. <FileConfiguration
  9762. Name="Debug|Win32"
  9763. >
  9764. <Tool
  9765. Name="VCCLCompilerTool"
  9766. PreprocessorDefinitions=""
  9767. />
  9768. </FileConfiguration>
  9769. <FileConfiguration
  9770. Name="Release|Win32"
  9771. >
  9772. <Tool
  9773. Name="VCCLCompilerTool"
  9774. PreprocessorDefinitions=""
  9775. />
  9776. </FileConfiguration>
  9777. </File>
  9778. <File
  9779. RelativePath="ComboTreeCtrl2.h"
  9780. >
  9781. </File>
  9782. <File
  9783. RelativePath="ComboTreeCtrl3.cpp"
  9784. >
  9785. <FileConfiguration
  9786. Name="Debug|Win32"
  9787. >
  9788. <Tool
  9789. Name="VCCLCompilerTool"
  9790. PreprocessorDefinitions=""
  9791. />
  9792. </FileConfiguration>
  9793. <FileConfiguration
  9794. Name="Release|Win32"
  9795. >
  9796. <Tool
  9797. Name="VCCLCompilerTool"
  9798. PreprocessorDefinitions=""
  9799. />
  9800. </FileConfiguration>
  9801. </File>
  9802. <File
  9803. RelativePath="ComboTreeCtrl3.h"
  9804. >
  9805. </File>
  9806. <File
  9807. RelativePath="TreeComboBox.cpp"
  9808. >
  9809. <FileConfiguration
  9810. Name="Debug|Win32"
  9811. >
  9812. <Tool
  9813. Name="VCCLCompilerTool"
  9814. PreprocessorDefinitions=""
  9815. />
  9816. </FileConfiguration>
  9817. <FileConfiguration
  9818. Name="Release|Win32"
  9819. >
  9820. <Tool
  9821. Name="VCCLCompilerTool"
  9822. PreprocessorDefinitions=""
  9823. />
  9824. </FileConfiguration>
  9825. </File>
  9826. <File
  9827. RelativePath="TreeComboBox.h"
  9828. >
  9829. </File>
  9830. <File
  9831. RelativePath="TreeComboBox2.cpp"
  9832. >
  9833. <FileConfiguration
  9834. Name="Debug|Win32"
  9835. >
  9836. <Tool
  9837. Name="VCCLCompilerTool"
  9838. PreprocessorDefinitions=""
  9839. />
  9840. </FileConfiguration>
  9841. <FileConfiguration
  9842. Name="Release|Win32"
  9843. >
  9844. <Tool
  9845. Name="VCCLCompilerTool"
  9846. PreprocessorDefinitions=""
  9847. />
  9848. </FileConfiguration>
  9849. </File>
  9850. <File
  9851. RelativePath="TreeComboBox2.h"
  9852. >
  9853. </File>
  9854. <File
  9855. RelativePath="TreeComboBox3.cpp"
  9856. >
  9857. <FileConfiguration
  9858. Name="Debug|Win32"
  9859. >
  9860. <Tool
  9861. Name="VCCLCompilerTool"
  9862. PreprocessorDefinitions=""
  9863. />
  9864. </FileConfiguration>
  9865. <FileConfiguration
  9866. Name="Release|Win32"
  9867. >
  9868. <Tool
  9869. Name="VCCLCompilerTool"
  9870. PreprocessorDefinitions=""
  9871. />
  9872. </FileConfiguration>
  9873. </File>
  9874. <File
  9875. RelativePath="TreeComboBox3.h"
  9876. >
  9877. </File>
  9878. </Filter>
  9879. <Filter
  9880. Name="医院跟踪系统"
  9881. >
  9882. <File
  9883. RelativePath="AddHospitalClient.cpp"
  9884. >
  9885. <FileConfiguration
  9886. Name="Debug|Win32"
  9887. >
  9888. <Tool
  9889. Name="VCCLCompilerTool"
  9890. PreprocessorDefinitions=""
  9891. />
  9892. </FileConfiguration>
  9893. <FileConfiguration
  9894. Name="Release|Win32"
  9895. >
  9896. <Tool
  9897. Name="VCCLCompilerTool"
  9898. PreprocessorDefinitions=""
  9899. />
  9900. </FileConfiguration>
  9901. </File>
  9902. <File
  9903. RelativePath="AddHospitalClient.h"
  9904. >
  9905. </File>
  9906. <File
  9907. RelativePath="HospitalClient.cpp"
  9908. >
  9909. <FileConfiguration
  9910. Name="Debug|Win32"
  9911. >
  9912. <Tool
  9913. Name="VCCLCompilerTool"
  9914. PreprocessorDefinitions=""
  9915. />
  9916. </FileConfiguration>
  9917. <FileConfiguration
  9918. Name="Release|Win32"
  9919. >
  9920. <Tool
  9921. Name="VCCLCompilerTool"
  9922. PreprocessorDefinitions=""
  9923. />
  9924. </FileConfiguration>
  9925. </File>
  9926. <File
  9927. RelativePath="HospitalClient.h"
  9928. >
  9929. </File>
  9930. <File
  9931. RelativePath="HospitalClientAlarm.cpp"
  9932. >
  9933. <FileConfiguration
  9934. Name="Debug|Win32"
  9935. >
  9936. <Tool
  9937. Name="VCCLCompilerTool"
  9938. PreprocessorDefinitions=""
  9939. />
  9940. </FileConfiguration>
  9941. <FileConfiguration
  9942. Name="Release|Win32"
  9943. >
  9944. <Tool
  9945. Name="VCCLCompilerTool"
  9946. PreprocessorDefinitions=""
  9947. />
  9948. </FileConfiguration>
  9949. </File>
  9950. <File
  9951. RelativePath="HospitalClientAlarm.h"
  9952. >
  9953. </File>
  9954. <File
  9955. RelativePath="HospitalClientMsg.cpp"
  9956. >
  9957. <FileConfiguration
  9958. Name="Debug|Win32"
  9959. >
  9960. <Tool
  9961. Name="VCCLCompilerTool"
  9962. PreprocessorDefinitions=""
  9963. />
  9964. </FileConfiguration>
  9965. <FileConfiguration
  9966. Name="Release|Win32"
  9967. >
  9968. <Tool
  9969. Name="VCCLCompilerTool"
  9970. PreprocessorDefinitions=""
  9971. />
  9972. </FileConfiguration>
  9973. </File>
  9974. <File
  9975. RelativePath="HospitalClientMsg.h"
  9976. >
  9977. </File>
  9978. <File
  9979. RelativePath="HospitalInfoSet.cpp"
  9980. >
  9981. <FileConfiguration
  9982. Name="Debug|Win32"
  9983. >
  9984. <Tool
  9985. Name="VCCLCompilerTool"
  9986. PreprocessorDefinitions=""
  9987. />
  9988. </FileConfiguration>
  9989. <FileConfiguration
  9990. Name="Release|Win32"
  9991. >
  9992. <Tool
  9993. Name="VCCLCompilerTool"
  9994. PreprocessorDefinitions=""
  9995. />
  9996. </FileConfiguration>
  9997. </File>
  9998. <File
  9999. RelativePath="HospitalInfoSet.h"
  10000. >
  10001. </File>
  10002. <File
  10003. RelativePath="HospitalMsgSet.cpp"
  10004. >
  10005. <FileConfiguration
  10006. Name="Debug|Win32"
  10007. >
  10008. <Tool
  10009. Name="VCCLCompilerTool"
  10010. PreprocessorDefinitions=""
  10011. />
  10012. </FileConfiguration>
  10013. <FileConfiguration
  10014. Name="Release|Win32"
  10015. >
  10016. <Tool
  10017. Name="VCCLCompilerTool"
  10018. PreprocessorDefinitions=""
  10019. />
  10020. </FileConfiguration>
  10021. </File>
  10022. <File
  10023. RelativePath="HospitalMsgSet.h"
  10024. >
  10025. </File>
  10026. </Filter>
  10027. <Filter
  10028. Name="利亚方舟"
  10029. >
  10030. <File
  10031. RelativePath="AddClientLYFZ.cpp"
  10032. >
  10033. <FileConfiguration
  10034. Name="Debug|Win32"
  10035. >
  10036. <Tool
  10037. Name="VCCLCompilerTool"
  10038. PreprocessorDefinitions=""
  10039. />
  10040. </FileConfiguration>
  10041. <FileConfiguration
  10042. Name="Release|Win32"
  10043. >
  10044. <Tool
  10045. Name="VCCLCompilerTool"
  10046. PreprocessorDefinitions=""
  10047. />
  10048. </FileConfiguration>
  10049. </File>
  10050. <File
  10051. RelativePath="AddClientLYFZ.h"
  10052. >
  10053. </File>
  10054. <File
  10055. RelativePath="annualfee.cpp"
  10056. >
  10057. <FileConfiguration
  10058. Name="Debug|Win32"
  10059. >
  10060. <Tool
  10061. Name="VCCLCompilerTool"
  10062. PreprocessorDefinitions=""
  10063. />
  10064. </FileConfiguration>
  10065. <FileConfiguration
  10066. Name="Release|Win32"
  10067. >
  10068. <Tool
  10069. Name="VCCLCompilerTool"
  10070. PreprocessorDefinitions=""
  10071. />
  10072. </FileConfiguration>
  10073. </File>
  10074. <File
  10075. RelativePath="annualfee.h"
  10076. >
  10077. </File>
  10078. <File
  10079. RelativePath="Client2FormLYFZ.cpp"
  10080. >
  10081. <FileConfiguration
  10082. Name="Debug|Win32"
  10083. >
  10084. <Tool
  10085. Name="VCCLCompilerTool"
  10086. PreprocessorDefinitions=""
  10087. />
  10088. </FileConfiguration>
  10089. <FileConfiguration
  10090. Name="Release|Win32"
  10091. >
  10092. <Tool
  10093. Name="VCCLCompilerTool"
  10094. PreprocessorDefinitions=""
  10095. />
  10096. </FileConfiguration>
  10097. </File>
  10098. <File
  10099. RelativePath="Client2FormLYFZ.h"
  10100. >
  10101. </File>
  10102. <File
  10103. RelativePath="ClientForm2.cpp"
  10104. >
  10105. <FileConfiguration
  10106. Name="Debug|Win32"
  10107. >
  10108. <Tool
  10109. Name="VCCLCompilerTool"
  10110. PreprocessorDefinitions=""
  10111. />
  10112. </FileConfiguration>
  10113. <FileConfiguration
  10114. Name="Release|Win32"
  10115. >
  10116. <Tool
  10117. Name="VCCLCompilerTool"
  10118. PreprocessorDefinitions=""
  10119. />
  10120. </FileConfiguration>
  10121. </File>
  10122. <File
  10123. RelativePath="ClientForm2.h"
  10124. >
  10125. </File>
  10126. <File
  10127. RelativePath="ClientForm3.cpp"
  10128. >
  10129. <FileConfiguration
  10130. Name="Debug|Win32"
  10131. >
  10132. <Tool
  10133. Name="VCCLCompilerTool"
  10134. PreprocessorDefinitions=""
  10135. />
  10136. </FileConfiguration>
  10137. <FileConfiguration
  10138. Name="Release|Win32"
  10139. >
  10140. <Tool
  10141. Name="VCCLCompilerTool"
  10142. PreprocessorDefinitions=""
  10143. />
  10144. </FileConfiguration>
  10145. </File>
  10146. <File
  10147. RelativePath="ClientForm3.h"
  10148. >
  10149. </File>
  10150. <File
  10151. RelativePath="WorkerReport.cpp"
  10152. >
  10153. <FileConfiguration
  10154. Name="Debug|Win32"
  10155. >
  10156. <Tool
  10157. Name="VCCLCompilerTool"
  10158. PreprocessorDefinitions=""
  10159. />
  10160. </FileConfiguration>
  10161. <FileConfiguration
  10162. Name="Release|Win32"
  10163. >
  10164. <Tool
  10165. Name="VCCLCompilerTool"
  10166. PreprocessorDefinitions=""
  10167. />
  10168. </FileConfiguration>
  10169. </File>
  10170. <File
  10171. RelativePath="WorkerReport.h"
  10172. >
  10173. </File>
  10174. </Filter>
  10175. <Filter
  10176. Name="客服"
  10177. >
  10178. <File
  10179. RelativePath="MsgCode.cpp"
  10180. >
  10181. <FileConfiguration
  10182. Name="Debug|Win32"
  10183. >
  10184. <Tool
  10185. Name="VCCLCompilerTool"
  10186. PreprocessorDefinitions=""
  10187. />
  10188. </FileConfiguration>
  10189. <FileConfiguration
  10190. Name="Release|Win32"
  10191. >
  10192. <Tool
  10193. Name="VCCLCompilerTool"
  10194. PreprocessorDefinitions=""
  10195. />
  10196. </FileConfiguration>
  10197. </File>
  10198. <File
  10199. RelativePath="MsgCode.h"
  10200. >
  10201. </File>
  10202. <File
  10203. RelativePath="MsgReg2.cpp"
  10204. >
  10205. <FileConfiguration
  10206. Name="Debug|Win32"
  10207. >
  10208. <Tool
  10209. Name="VCCLCompilerTool"
  10210. PreprocessorDefinitions=""
  10211. />
  10212. </FileConfiguration>
  10213. <FileConfiguration
  10214. Name="Release|Win32"
  10215. >
  10216. <Tool
  10217. Name="VCCLCompilerTool"
  10218. PreprocessorDefinitions=""
  10219. />
  10220. </FileConfiguration>
  10221. </File>
  10222. <File
  10223. RelativePath="MsgReg2.h"
  10224. >
  10225. </File>
  10226. <File
  10227. RelativePath="Satisfaction.cpp"
  10228. >
  10229. <FileConfiguration
  10230. Name="Debug|Win32"
  10231. >
  10232. <Tool
  10233. Name="VCCLCompilerTool"
  10234. PreprocessorDefinitions=""
  10235. />
  10236. </FileConfiguration>
  10237. <FileConfiguration
  10238. Name="Release|Win32"
  10239. >
  10240. <Tool
  10241. Name="VCCLCompilerTool"
  10242. PreprocessorDefinitions=""
  10243. />
  10244. </FileConfiguration>
  10245. </File>
  10246. <File
  10247. RelativePath="Satisfaction.h"
  10248. >
  10249. </File>
  10250. <File
  10251. RelativePath="SatisfactionForm.cpp"
  10252. >
  10253. <FileConfiguration
  10254. Name="Debug|Win32"
  10255. >
  10256. <Tool
  10257. Name="VCCLCompilerTool"
  10258. PreprocessorDefinitions=""
  10259. />
  10260. </FileConfiguration>
  10261. <FileConfiguration
  10262. Name="Release|Win32"
  10263. >
  10264. <Tool
  10265. Name="VCCLCompilerTool"
  10266. PreprocessorDefinitions=""
  10267. />
  10268. </FileConfiguration>
  10269. </File>
  10270. <File
  10271. RelativePath="SatisfactionForm.h"
  10272. >
  10273. </File>
  10274. </Filter>
  10275. </Filter>
  10276. <Filter
  10277. Name="Resource Files"
  10278. Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
  10279. >
  10280. <File
  10281. RelativePath="res\01.bmp"
  10282. >
  10283. </File>
  10284. <File
  10285. RelativePath="res\02.bmp"
  10286. >
  10287. </File>
  10288. <File
  10289. RelativePath="res\03.bmp"
  10290. >
  10291. </File>
  10292. <File
  10293. RelativePath="res\04.bmp"
  10294. >
  10295. </File>
  10296. <File
  10297. RelativePath="res\05.bmp"
  10298. >
  10299. </File>
  10300. <File
  10301. RelativePath="res\06.bmp"
  10302. >
  10303. </File>
  10304. <File
  10305. RelativePath="res\07.bmp"
  10306. >
  10307. </File>
  10308. <File
  10309. RelativePath="res\08.bmp"
  10310. >
  10311. </File>
  10312. <File
  10313. RelativePath="res\09.bmp"
  10314. >
  10315. </File>
  10316. <File
  10317. RelativePath="res\1.bmp"
  10318. >
  10319. </File>
  10320. <File
  10321. RelativePath="res\1.gif"
  10322. >
  10323. </File>
  10324. <File
  10325. RelativePath="res\10.bmp"
  10326. >
  10327. </File>
  10328. <File
  10329. RelativePath="res\11.bmp"
  10330. >
  10331. </File>
  10332. <File
  10333. RelativePath="res\12.bmp"
  10334. >
  10335. </File>
  10336. <File
  10337. RelativePath="res\13.bmp"
  10338. >
  10339. </File>
  10340. <File
  10341. RelativePath="res\14.bmp"
  10342. >
  10343. </File>
  10344. <File
  10345. RelativePath="res\15.bmp"
  10346. >
  10347. </File>
  10348. <File
  10349. RelativePath="res\16.bmp"
  10350. >
  10351. </File>
  10352. <File
  10353. RelativePath="res\17.bmp"
  10354. >
  10355. </File>
  10356. <File
  10357. RelativePath="res\18.bmp"
  10358. >
  10359. </File>
  10360. <File
  10361. RelativePath="res\19.bmp"
  10362. >
  10363. </File>
  10364. <File
  10365. RelativePath="res\20.bmp"
  10366. >
  10367. </File>
  10368. <File
  10369. RelativePath="res\21.bmp"
  10370. >
  10371. </File>
  10372. <File
  10373. RelativePath="res\22.bmp"
  10374. >
  10375. </File>
  10376. <File
  10377. RelativePath="res\23.bmp"
  10378. >
  10379. </File>
  10380. <File
  10381. RelativePath="res\24.bmp"
  10382. >
  10383. </File>
  10384. <File
  10385. RelativePath="res\25.bmp"
  10386. >
  10387. </File>
  10388. <File
  10389. RelativePath="res\26.bmp"
  10390. >
  10391. </File>
  10392. <File
  10393. RelativePath="res\27.bmp"
  10394. >
  10395. </File>
  10396. <File
  10397. RelativePath="res\28.bmp"
  10398. >
  10399. </File>
  10400. <File
  10401. RelativePath="res\29.bmp"
  10402. >
  10403. </File>
  10404. <File
  10405. RelativePath="res\30.bmp"
  10406. >
  10407. </File>
  10408. <File
  10409. RelativePath="res\31.bmp"
  10410. >
  10411. </File>
  10412. <File
  10413. RelativePath="res\32.bmp"
  10414. >
  10415. </File>
  10416. <File
  10417. RelativePath="res\33.bmp"
  10418. >
  10419. </File>
  10420. <File
  10421. RelativePath="res\34.bmp"
  10422. >
  10423. </File>
  10424. <File
  10425. RelativePath="res\35.bmp"
  10426. >
  10427. </File>
  10428. <File
  10429. RelativePath="res\36.bmp"
  10430. >
  10431. </File>
  10432. <File
  10433. RelativePath="res\37.bmp"
  10434. >
  10435. </File>
  10436. <File
  10437. RelativePath="res\38.bmp"
  10438. >
  10439. </File>
  10440. <File
  10441. RelativePath="res\39.bmp"
  10442. >
  10443. </File>
  10444. <File
  10445. RelativePath="res\40.bmp"
  10446. >
  10447. </File>
  10448. <File
  10449. RelativePath="res\41.bmp"
  10450. >
  10451. </File>
  10452. <File
  10453. RelativePath="res\42.bmp"
  10454. >
  10455. </File>
  10456. <File
  10457. RelativePath="res\5.jpg"
  10458. >
  10459. </File>
  10460. <File
  10461. RelativePath="res\5001.cur"
  10462. >
  10463. </File>
  10464. <File
  10465. RelativePath="res\cciv1.jpg"
  10466. >
  10467. </File>
  10468. <File
  10469. RelativePath="res\chart.ico"
  10470. >
  10471. </File>
  10472. <File
  10473. RelativePath="res\close.bmp"
  10474. >
  10475. </File>
  10476. <File
  10477. RelativePath="res\CoolSkin01.bmp"
  10478. >
  10479. </File>
  10480. <File
  10481. RelativePath="res\cursor1.cur"
  10482. >
  10483. </File>
  10484. <File
  10485. RelativePath="res\folder open.ico"
  10486. >
  10487. </File>
  10488. <File
  10489. RelativePath="res\Folder.bmp"
  10490. >
  10491. </File>
  10492. <File
  10493. RelativePath="res\FOLDER.ICO"
  10494. >
  10495. </File>
  10496. <File
  10497. RelativePath="res\Folder.jpg"
  10498. >
  10499. </File>
  10500. <File
  10501. RelativePath="res\Folder2.jpg"
  10502. >
  10503. </File>
  10504. <File
  10505. RelativePath="res\Folder3.jpg"
  10506. >
  10507. </File>
  10508. <File
  10509. RelativePath="res\icon1.ico"
  10510. >
  10511. </File>
  10512. <File
  10513. RelativePath="res\icon10.ico"
  10514. >
  10515. </File>
  10516. <File
  10517. RelativePath="res\icon11.ico"
  10518. >
  10519. </File>
  10520. <File
  10521. RelativePath="res\icon2.ico"
  10522. >
  10523. </File>
  10524. <File
  10525. RelativePath="res\icon3.ico"
  10526. >
  10527. </File>
  10528. <File
  10529. RelativePath="res\icon4.ico"
  10530. >
  10531. </File>
  10532. <File
  10533. RelativePath="res\icon5.ico"
  10534. >
  10535. </File>
  10536. <File
  10537. RelativePath="res\icon6.ico"
  10538. >
  10539. </File>
  10540. <File
  10541. RelativePath="res\icon7.ico"
  10542. >
  10543. </File>
  10544. <File
  10545. RelativePath="res\icon8.ico"
  10546. >
  10547. </File>
  10548. <File
  10549. RelativePath="res\icon9.ico"
  10550. >
  10551. </File>
  10552. <File
  10553. RelativePath="res\key.ico"
  10554. >
  10555. </File>
  10556. <File
  10557. RelativePath="res\max.bmp"
  10558. >
  10559. </File>
  10560. <File
  10561. RelativePath="res\min.bmp"
  10562. >
  10563. </File>
  10564. <File
  10565. RelativePath="res\restore.bmp"
  10566. >
  10567. </File>
  10568. <File
  10569. RelativePath="res\separator.bmp"
  10570. >
  10571. </File>
  10572. <File
  10573. RelativePath="res\separorter.bmp"
  10574. >
  10575. </File>
  10576. <File
  10577. RelativePath="res\set.ico"
  10578. >
  10579. </File>
  10580. <File
  10581. RelativePath="res\Toolbar.bmp"
  10582. >
  10583. </File>
  10584. <File
  10585. RelativePath="res\toolbar1.bmp"
  10586. >
  10587. </File>
  10588. <File
  10589. RelativePath="res\top.bmp"
  10590. >
  10591. </File>
  10592. <File
  10593. RelativePath="res\truecolor.bmp"
  10594. >
  10595. </File>
  10596. <File
  10597. RelativePath="res\truecolor2.bmp"
  10598. >
  10599. </File>
  10600. <File
  10601. RelativePath="res\welcome.jpg"
  10602. >
  10603. </File>
  10604. <File
  10605. RelativePath="res\xptheme.bin"
  10606. >
  10607. </File>
  10608. <File
  10609. RelativePath="DBServer\res\xptheme.bin"
  10610. >
  10611. </File>
  10612. <File
  10613. RelativePath="res\YLGL.ico"
  10614. >
  10615. </File>
  10616. <File
  10617. RelativePath="res\YLGL.rc2"
  10618. >
  10619. </File>
  10620. <File
  10621. RelativePath="res\YLGLDoc.ico"
  10622. >
  10623. </File>
  10624. <File
  10625. RelativePath="res\未标题-1.jpg"
  10626. >
  10627. </File>
  10628. <File
  10629. RelativePath="res\流程表.jpg"
  10630. >
  10631. </File>
  10632. <File
  10633. RelativePath="res\蒙娜丽莎a片头.jpg"
  10634. >
  10635. </File>
  10636. </Filter>
  10637. <Filter
  10638. Name="农历"
  10639. >
  10640. <File
  10641. RelativePath="Lunar2.cpp"
  10642. >
  10643. <FileConfiguration
  10644. Name="Debug|Win32"
  10645. >
  10646. <Tool
  10647. Name="VCCLCompilerTool"
  10648. PreprocessorDefinitions=""
  10649. />
  10650. </FileConfiguration>
  10651. <FileConfiguration
  10652. Name="Release|Win32"
  10653. >
  10654. <Tool
  10655. Name="VCCLCompilerTool"
  10656. PreprocessorDefinitions=""
  10657. />
  10658. </FileConfiguration>
  10659. </File>
  10660. </Filter>
  10661. <Filter
  10662. Name="Header Files"
  10663. Filter="h;hpp;hxx;hm;inl"
  10664. >
  10665. <File
  10666. RelativePath="ClientRequirement.h"
  10667. >
  10668. </File>
  10669. <File
  10670. RelativePath="CompressOption.h"
  10671. >
  10672. </File>
  10673. <File
  10674. RelativePath="ConnectDlg.h"
  10675. >
  10676. </File>
  10677. <File
  10678. RelativePath="DataUpdateCentrer.h"
  10679. >
  10680. </File>
  10681. <File
  10682. RelativePath="DBConfig.h"
  10683. >
  10684. </File>
  10685. <File
  10686. RelativePath="DelHC.h"
  10687. >
  10688. </File>
  10689. <File
  10690. RelativePath="DelPhotoSet.h"
  10691. >
  10692. </File>
  10693. <File
  10694. RelativePath="DesinCheck.h"
  10695. >
  10696. </File>
  10697. <File
  10698. RelativePath="font.h"
  10699. >
  10700. </File>
  10701. <File
  10702. RelativePath="GetClientInfo.h"
  10703. >
  10704. </File>
  10705. <File
  10706. RelativePath="HideWindow.h"
  10707. >
  10708. </File>
  10709. <File
  10710. RelativePath="InputName.h"
  10711. >
  10712. </File>
  10713. <File
  10714. RelativePath="InputPhones.h"
  10715. >
  10716. </File>
  10717. <File
  10718. RelativePath="InputPrice.h"
  10719. >
  10720. </File>
  10721. <File
  10722. RelativePath="InputPsw.h"
  10723. >
  10724. </File>
  10725. <File
  10726. RelativePath="InputPsw2.h"
  10727. >
  10728. </File>
  10729. <File
  10730. RelativePath="InStock.h"
  10731. >
  10732. </File>
  10733. <File
  10734. RelativePath="Login.h"
  10735. >
  10736. </File>
  10737. <File
  10738. RelativePath="mschart.h"
  10739. >
  10740. </File>
  10741. <File
  10742. RelativePath="ompanyInfo.h"
  10743. >
  10744. </File>
  10745. <File
  10746. RelativePath="PhotoBak.h"
  10747. >
  10748. </File>
  10749. <File
  10750. RelativePath="PrintPreview.h"
  10751. >
  10752. </File>
  10753. <File
  10754. RelativePath="PropPage2.h"
  10755. >
  10756. </File>
  10757. <File
  10758. RelativePath="Psw.h"
  10759. >
  10760. </File>
  10761. <File
  10762. RelativePath="refreshtable.h"
  10763. >
  10764. </File>
  10765. <File
  10766. RelativePath="Resource.h"
  10767. >
  10768. </File>
  10769. <File
  10770. RelativePath="SalaryRateSet2.h"
  10771. >
  10772. </File>
  10773. <File
  10774. RelativePath="SelBranch.h"
  10775. >
  10776. </File>
  10777. <File
  10778. RelativePath="SelContent.h"
  10779. >
  10780. </File>
  10781. <File
  10782. RelativePath="SelectPhotoDlg.h"
  10783. >
  10784. </File>
  10785. <File
  10786. RelativePath="SelExpendType.h"
  10787. >
  10788. </File>
  10789. <File
  10790. RelativePath="SelExportType.h"
  10791. >
  10792. </File>
  10793. <File
  10794. RelativePath="SelMemberCardFund.h"
  10795. >
  10796. </File>
  10797. <File
  10798. RelativePath="SelMoneyType.h"
  10799. >
  10800. </File>
  10801. <File
  10802. RelativePath="SelPayType.h"
  10803. >
  10804. </File>
  10805. <File
  10806. RelativePath="SelWaiter2.h"
  10807. >
  10808. </File>
  10809. <File
  10810. RelativePath="SendDataDlg.h"
  10811. >
  10812. </File>
  10813. <File
  10814. RelativePath="Set.h"
  10815. >
  10816. </File>
  10817. <File
  10818. RelativePath="SetLeftBar.h"
  10819. >
  10820. </File>
  10821. <File
  10822. RelativePath="SetPercentAll.h"
  10823. >
  10824. </File>
  10825. <File
  10826. RelativePath="shockwaveflash.h"
  10827. >
  10828. </File>
  10829. <File
  10830. RelativePath="ShowBakState.h"
  10831. >
  10832. </File>
  10833. <File
  10834. RelativePath="ShowLOg.h"
  10835. >
  10836. </File>
  10837. <File
  10838. RelativePath="ShowMschart.h"
  10839. >
  10840. </File>
  10841. <File
  10842. RelativePath="ShowMsg.h"
  10843. >
  10844. </File>
  10845. <File
  10846. RelativePath="ShowMsg2.h"
  10847. >
  10848. </File>
  10849. <File
  10850. RelativePath="ShowPhoto.h"
  10851. >
  10852. </File>
  10853. <File
  10854. RelativePath="ShowRemark.h"
  10855. >
  10856. </File>
  10857. <File
  10858. RelativePath="SqlDlg.h"
  10859. >
  10860. </File>
  10861. <File
  10862. RelativePath="StaffAchievementSet.h"
  10863. >
  10864. </File>
  10865. <File
  10866. RelativePath="StdAfx.h"
  10867. >
  10868. </File>
  10869. <File
  10870. RelativePath="TestDlg1.h"
  10871. >
  10872. </File>
  10873. <File
  10874. RelativePath="Time5.h"
  10875. >
  10876. </File>
  10877. <File
  10878. RelativePath="TimeOutDlg.h"
  10879. >
  10880. </File>
  10881. <File
  10882. RelativePath="UploadDes.h"
  10883. >
  10884. </File>
  10885. <File
  10886. RelativePath="YLGL.h"
  10887. >
  10888. </File>
  10889. <File
  10890. RelativePath="YLGLDoc.h"
  10891. >
  10892. </File>
  10893. <File
  10894. RelativePath="YLGLView.h"
  10895. >
  10896. </File>
  10897. <File
  10898. RelativePath="ZipTypeDlg.h"
  10899. >
  10900. </File>
  10901. </Filter>
  10902. <Filter
  10903. Name="MD5"
  10904. >
  10905. <File
  10906. RelativePath=".\MD5.cpp"
  10907. >
  10908. </File>
  10909. <File
  10910. RelativePath=".\MD5.h"
  10911. >
  10912. </File>
  10913. </Filter>
  10914. <Filter
  10915. Name="Global"
  10916. >
  10917. <File
  10918. RelativePath=".\Global\Global.cpp"
  10919. >
  10920. </File>
  10921. <File
  10922. RelativePath=".\Global\Global.h"
  10923. >
  10924. </File>
  10925. </Filter>
  10926. <File
  10927. RelativePath="res\1.png"
  10928. >
  10929. </File>
  10930. <File
  10931. RelativePath="res\10-2.lia"
  10932. >
  10933. </File>
  10934. <File
  10935. RelativePath="res\10.lia"
  10936. >
  10937. </File>
  10938. <File
  10939. RelativePath="res\11.lia"
  10940. >
  10941. </File>
  10942. <File
  10943. RelativePath="res\12.lia"
  10944. >
  10945. </File>
  10946. <File
  10947. RelativePath="res\13.lia"
  10948. >
  10949. </File>
  10950. <File
  10951. RelativePath="res\14.lia"
  10952. >
  10953. </File>
  10954. <File
  10955. RelativePath="res\15.lia"
  10956. >
  10957. </File>
  10958. <File
  10959. RelativePath="res\16.lia"
  10960. >
  10961. </File>
  10962. <File
  10963. RelativePath="res\17.lia"
  10964. >
  10965. </File>
  10966. <File
  10967. RelativePath="res\18.lia"
  10968. >
  10969. </File>
  10970. <File
  10971. RelativePath="res\19.lia"
  10972. >
  10973. </File>
  10974. <File
  10975. RelativePath="res\2.png"
  10976. >
  10977. </File>
  10978. <File
  10979. RelativePath="res\20.lia"
  10980. >
  10981. </File>
  10982. <File
  10983. RelativePath="res\21.lia"
  10984. >
  10985. </File>
  10986. <File
  10987. RelativePath="res\3.png"
  10988. >
  10989. </File>
  10990. <File
  10991. RelativePath="res\4.lia"
  10992. >
  10993. </File>
  10994. <File
  10995. RelativePath="res\5.lia"
  10996. >
  10997. </File>
  10998. <File
  10999. RelativePath="res\6-2.lia"
  11000. >
  11001. </File>
  11002. <File
  11003. RelativePath="res\6.lia"
  11004. >
  11005. </File>
  11006. <File
  11007. RelativePath="res\7.lia"
  11008. >
  11009. </File>
  11010. <File
  11011. RelativePath="res\8.lia"
  11012. >
  11013. </File>
  11014. <File
  11015. RelativePath="res\9.lia"
  11016. >
  11017. </File>
  11018. <File
  11019. RelativePath="res\Folder.png"
  11020. >
  11021. </File>
  11022. <File
  11023. RelativePath="res\Folder2.png"
  11024. >
  11025. </File>
  11026. <File
  11027. RelativePath="res\Folder3.png"
  11028. >
  11029. </File>
  11030. <File
  11031. RelativePath="res\Folder4.png"
  11032. >
  11033. </File>
  11034. <File
  11035. RelativePath="ReadMe.txt"
  11036. >
  11037. </File>
  11038. <File
  11039. RelativePath="res\slia\s-1.lia"
  11040. >
  11041. </File>
  11042. <File
  11043. RelativePath="res\图标.png"
  11044. >
  11045. </File>
  11046. </Files>
  11047. <Globals>
  11048. </Globals>
  11049. </VisualStudioProject>