YLGL - 08.vcproj 209 KB

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