반응형 IT-개발,DB729 [VC++] ATL에서 MFC사용, COM관련 확장, MDAC, ADSI사용 1. stdafx.h 파일에 #include 위에 아래와 같이 include 하면 됩니다. 2. 필요에 따라 프로젝트 속성 - 링커 - 입력에 comsvcs.lib activeds.lib adsiid.lib wininet.lib 를 추가합니다. ///////////////////////////////////////////////////////////////////////////// // EOCS_ADD ///////////////////////////////////////////////////////////////////////////// // - MFC 지원 #include // MFC 자동화 클래스입니다. - 코어 및 표준 컴포넌트 #include // MFC 자동화 클래스입니다. - 확장 #incl.. 2010. 9. 29. [ASP.NET] 한글이 포함된 URL로 이동하기 펌 - 데브피아 한글이 포함된 URL로 이동하기 위해 애쓴 경험이 있어 이렇게 써 봅니다. 허접하지만, 도움이 되었으면 하네요~ ^-^; 고민은 했었지만 의외로 쉽게 해결했습니다. 한글이 들어있는 부분만 인코딩 해서 HttpWebRequest 객체에 연결을 했죠. 그냥 전체 URL을 인코딩 한 후 연결할 경우 '.'과 '/' 때문에 예외가 발생하더군요. 예) http://www.test.com/test/test.aspx?param1=이름¶m2=주소¶m3=전화번호 string url = "http://www.test.com/test/test.aspx?param1=이름¶m2=주소¶m3=전화번호"; int p = url.IndexOf('?'); string url = url.Sub.. 2010. 9. 29. [VC++] Search Provider Extensibility in Internet Explorer IE 검색공급자 확장성 Search Provider Extensibility in Internet Explorer Starting with Windows Internet Explorer 7, the Instant Search box provides an AutoComplete feature so users can search for similar search terms used in previous searches. Internet Explorer 7 also enables users to add multiple search providers. Search improvements in Internet Explorer 8 focus on helping users search by significantly .. 2010. 9. 28. [VC++] Installing a Search Provider and Setting the Default IE에서 검색공급자 설치하기 Installing a Search Provider and Setting the Default Windows Internet Explorer 8 extends a rich searching experience by offering users the option to install multiple search providers. As a user installs search providers, each provider has a chance to set itself as the default provider. Internet Explorer 8 has a new mandatory Search Provider Default user experience that keeps the .. 2010. 9. 28. [VC++] Toolbar Button Style Guide Toolbar Button Style Guide This guide will help you design icons for toolbar buttons that you add to the Windows Internet Explorer user interface. Sizes Colors Design Tips Placing Icons Related Topics Overview Tutorial Sizes The Internet Explorer toolbar requires two sizes for all toolbar icons: 20x20 pixel and 16x16 pixel. The following table shows the difference between the two icons. Dimensio.. 2010. 9. 28. [VC++] Adding Toolbar Buttons Adding Toolbar Buttons This tutorial explains how to add a toolbar button to the Windows Internet Explorer user interface. The toolbar button can either run a Microsoft Win32 application, run a script, or open an Explorer Bar. If you also want to create a menu item for the Win32 application or script, see the Adding Menu Items tutorial. Requirements and Dependencies General Steps Adding the Deta.. 2010. 9. 28. 이전 1 ··· 102 103 104 105 106 107 108 ··· 122 다음 반응형