YLGL - 08.vcproj 209 KB

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