분류 전체보기277 Java 보안 등급 변경하기 Java가 업데이트 되면서 보안 설정이 바뀌었다고 한다. 이것 때문에 잘 작동하던 Java 프로그램이 웹에서 작동하지 않는 문제가 발생했다.이 때 'Java 제어판'에서 보안 등급을 변경하면 문제가 해결이 된다. Windows 7 64bit를 기준으로 설명하면 "C:\Program Files (x86)\Java\jre7\bin\javacpl.exe" 파일이 있다.javacpl.exe 파일을 실행하면 아래와 같은 'Java 제어판'이 나타난다.'보안' 탭에서 레벨을 "중간"으로 변경하고 '확인'을 눌러 저장한다. IE를 사용할 경우 IE를 '관리자 권한으로 실행'하여 Java 어플을 실행하면 문제가 해결된다. 2014. 3. 31. GetCurrentProcess function 출처: http://msdn.microsoft.com/en-us/library/windows/desktop/ms683179(v=vs.85).aspx GetCurrentProcess functionRetrieves a pseudo handle for the current process.SyntaxC++HANDLE WINAPI GetCurrentProcess(void); ParametersThis function has no parameters.Return valueThe return value is a pseudo handle to the current process.RemarksA pseudo handle is a special constant, currently (HANDLE)-1, that is in.. 2014. 3. 4. 프로세스 메모리 사용량 확인 sample 프로그램 by MSDN 출처: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682050(v=vs.85).aspx Collecting Memory Usage Information For a ProcessTo determine the efficiency of your application, you may want to examine its memory usage. The following sample code uses the GetProcessMemoryInfo function to obtain information about the memory usage of a process.C++#include #include #include // To ensure correct r.. 2014. 3. 4. GetProcessMemoryInfo function GetProcessMemoryInfo functionRetrieves information about the memory usage of the specified process.SyntaxC++BOOL WINAPI GetProcessMemoryInfo( _In_ HANDLE Process, _Out_ PPROCESS_MEMORY_COUNTERS ppsmemCounters, _In_ DWORD cb ); ParametersProcess [in]A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION orPROCESS_QUERY_LIMITED_INFORMATION access right and the PROCESS_VM_READ .. 2014. 3. 4. VirtualQuery function 출처: http://msdn.microsoft.com/en-us/library/aa366902%28VS.85%29.aspx Retrieves information about a range of pages in the virtual address space of the calling process.To retrieve information about a range of pages in the address space of another process, use the VirtualQueryEx function.SyntaxC++SIZE_T WINAPI VirtualQuery( _In_opt_ LPCVOID lpAddress, _Out_ PMEMORY_BASIC_INFORMATION lpBuffer, _In_ .. 2014. 3. 4. MFC 표준 컨트롤에서 컨트롤 파생 출처: http://msdn.microsoft.com/ko-kr/library/cc485501(v=vs.71).aspx#feedback CWnd 파생 클래스를 사용하면 기존 컨트롤 클래스에서 새 클래스를 파생시켜 컨트롤의 동작을 수정할 수 있습니다.파생 컨트롤 클래스를 만들려면기본 컨트롤 클래스에 클래스를 파생시키고 Create 멤버 함수를 재정의하여 기본 클래스 Create 함수에 필요한 인수를 제공하도록 합니다.메시지 처리기 멤버 함수와 메시지 맵 엔트리를 제공하여 특정 Windows 메시지에 응답하는 컨트롤의 동작을 수정합니다. 함수에 메시지 매핑을 참조하십시오.필요에 따라 새 멤버 함수를 제공하여 컨트롤의 기능을 확장합니다.대화 상자에 파생 컨트롤을 사용하기 위해서는 추가 작업이 필요합니다. 대화.. 2014. 2. 14. MFC Custom Controls 출처: http://msdn.microsoft.com/en-us/library/bk2h3c6w.aspx TN014: Custom Controls This note describes the MFC Support for custom and self-drawing controls. It also describes dynamic subclassing, and describes the relationship between CWndobjects and HWNDs. The MFC sample application CTRLTEST illustrates how to use many custom controls. See the source code for the MFC General sample CTRLTEST and o.. 2014. 1. 20. Adobe Photoshop Plugin Project 참고: adobe_photoshop_cs5_sdk_win/pluginsdk/documentation/html/pgwinplugins.htmlCreating plug-in modules for Windows 위의 참고 주소와 같이 SDK에서 제공하는 정보입니다.아래 내용을 보면 기존 Sample 프로젝트를 기초로 해서 새로운 프로젝트를 만드는 것을 확인할 수 있습니다. 따라서 자기기 만들고자 하는 plugin을 선택합니다. 예를 들어 filter라면 아래와 같은 프로젝트를 선택해도 됩니다. 그러나 format plugin이라면 simpleformat를 선택해서 만들 수도 있습니다. simpleformat를 기준으로 만들어 볼 경우 아래와 같이 진행을 하면 큰 문제가 없습니다. 파란색으로 표시한 부분을 주의.. 2013. 12. 11. Adobe Photoshop SDK Adobe Photoshop Plugin 개발을 하기 위해서는 SDK를 Download 받아서 사용을 해야 합니다. SDK는 아래 주소에서 다운로드 받을 수 있습니다.http://www.adobe.com/devnet/photoshop/sdk.html일반적으로 버전에 따라 SDK가 별도로 제공됩니다. 따라서 자신이 개발하고자 하는 CS 버전을 확인하고 SDK를 다운받습니다.Plugin 개발을 하기 위해서 검색을 많이 했는데 자료가 거의 없었습니다. 국내/외 개발자들이 따로 글을 올린 것이 거의 없는 것 같다는 생각이 들었습니다. 그래서 SDK가 중요합니다. 사실 SDK에서 제공하는 Document를 모두 읽고 소화하면 개발에 큰 문제는 없을 것 같습니다. 하지만 그것을 읽고 테스트 하면서 발생하는 여러 어.. 2013. 12. 11. 이전 1 ··· 13 14 15 16 17 18 19 ··· 31 다음