부모글 보이기/감추기 What is the property system?; http://blogs.msdn.com/benkaras/archive/2006/08/28/729153.aspxVista 에 소개되는 새로운 기능이군요.다음 회에서는 사용예까지 보여준다고 하니 일단 대강 읽어보기만 해도 될 것 같습니다.WinFS 의 일부 기능을 지원한 듯도 보이고. AD BLOCK 해제 요청 이 글에는 광고가 많이 들어가 있지 않습니다. adblock을 해제하셔도 글을 읽는데 그다지 부담이 없으니 해제를 부탁드립니다. Property consumerism ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/property-consumerism 약속대로 코드 예제를 공개했습니다. 별로 많은 내용이 아니니, 여기에 복사해 넣습니다. Reading properties is rather simple. First, bind to the item. SHCreateItemFromIDList and SHCreateItemFromParsingName are appropriate for this. Then read your properties. Be sure to clean up after yourself. IShellItem2 *psi;if (SUCCEEDED(SHCreateItemFromParsingName(L"c:\tortoise.doc", NULL, IID_IShellItem2, (void**)&psi))) { IPropertyStore *pps; if (SUCCEEDED(psi->GetPropertyStore(GPS_DEFAULT, IID_IPropertyStore, (void**)&pps))) { PROPVARIANT propvar = {0}; if (SUCCEEDED(pps->GetValue(PKEY_Title, &propvar))) { wprintf(L"Title: %s\n", PropVariantToStringWithDefault(propvar, L"")); PropVariantClear(&propvar); } pps->Release(); } psi->Release();} Not bad for reading the title of a document! And I even checked the return results. --- Constable Umer walked down the narrow flagstone path, then onto cobblestones and finally gravel stones. Turning a corner, Cons. Umer found a door with a small card pinned to next to it. "Great Flying Tortoise: Purveyor of fine, proper teas." [다음 글] Vista : 8. What is the property system?[이전 글] Vista : 8. The source of property types [최초 등록일: 10/20/2006] [최종 수정일: 4/26/2024] 비밀번호 댓글 작성자 2006-10-06 10시35분 Properties coding expedition #1 - Binding to an item ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-1-binding-to-an-itemProperties coding expedition #2 - printing the IPropertyStore ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-2-printing-the-ipropertystoreProperties coding expedition #3 - Printing a value ; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-3-printing-a-valueProperties coding expedition #4 - The output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-4-the-outputProperties coding expedition #5 - Stripping characters; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-5-stripping-charactersProperties coding expedition #6 - Developer friendly output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-6-developer-friendly-outputProperties coding expedition #7 - The final output; https://learn.microsoft.com/en-us/archive/blogs/benkaras/properties-coding-expedition-7-the-final-output kevin25 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 ... NoWriterDateCnt.TitleFile(s) 1129정성태2/14/201120775.NET : 113. Running .NET applications in-process using AppDomains1128정성태2/13/201121743개발 환경 구성: 143. Visual Studio 소스 서버 보안 경고창 없애기1127정성태2/5/201121107개발 환경 구성: 142. Internet Explorer 6, 7, 8, 9 테스트 - 다중 XP Mode1126정성태1/28/201127363개발 환경 구성: 141. 키보드 매핑을 바꾸는 레지스트리 설정11125정성태12/24/201020117VS.NET IDE : 59. Visual Studio 2010 - 웹 프로젝트의 Web.debug.config / Web.Release.config 기능을 일반 프로젝트에 적용하는 방법1124정성태11/16/201028700개발 환경 구성: 140. 대용량 파일 고속 전송: Rapidant1123정성태11/11/201018546Web : 8. IE 9 플랫폼 프리뷰 6 + IE 9 베타1122정성태11/9/201018806개발 환경 구성: 139. RemoteFX - USB Rediection1121정성태11/6/201017899.NET : 112. The F# PowerPack, with F# Compiler Source Drops1120정성태10/20/201019491Web : 7. Internet Explorer - Browser Mode 와 Document Mode1119정성태10/9/201018730IIS : 32. Steps for setting up a custom identity of an IIS 6 application pool1118정성태9/17/201017240Web : 6. Internet Explorer 9 Beta Guide for Developers1117정성태8/25/201017522.NET : 111. Azure CDN Guide Available1116정성태8/24/201017375Web : 5. IE 9 - UI 보더 변경에 따른 2-pixel 변화1115정성태6/18/201019018개발 환경 구성: 138. 프로세스 덤프를 하는 다양한 방법1114정성태6/1/201017375.NET : 110. C#5 and Meta-Programming [1]1113정성태4/27/201018289VS.NET IDE : 58. Visual Studio 2010에 기본 내장된 WPF Tree Visualizer1112정성태4/15/201018077개발 환경 구성: 137. How to enable remote connections in SQL Server 2008?1111정성태4/2/201016661VS.NET IDE : 57. Simulating Peak Load with VS Load Tests1110정성태3/30/201018057Windows 7: 4. Windows 7 / R2부터 제공되는 NT 서비스 전용 계정1109정성태3/17/201018541개발 환경 구성: 136. SCVMM에서 VM을 Template로 만들어서 Library에 넣은 후 새로운 VM 배포하기 1107정성태3/1/201017883.NET : 109. .NET 4.0에서 obsolete로 처리되는 타입1106정성태2/24/201018542IIS : 31. Microsoft Application Request Routing (ARR)과 TFS App Tier1105정성태2/9/201017441Debug : 46. 프로세스 종료 시 덤프 남기는 방법1104정성태1/26/201017783Debug : 45. Debugging References with Graph Visualizations1103정성태11/18/200917130개발 환경 구성: 135. How to Configure WPL v1.0 SRE 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 ...