본문 바로가기
반응형

분류 전체보기4826

싸이월드 투데이 조회수 올리기 프로그램 싸이월드 투데이 조회수 올리기 프로그램 제작언어: C# 제작년도: 2009년 제작자: 엔돌슨 : Park Kwangho ( hardmanii@nate.com ) 목적: 홈페이지 방문자 수를 늘리는 목적 구현기능 1. IE 익스플로우창을 띄워 방문자를 늘림 2. 체크된 항목에 대해서 실행을 함. 원리 1. iexplore.exe 프로그램인 IE에 URL을 지정하여 프로세서로 실행을 시킴. ProcessStartInfo startInfo = new ProcessStartInfo("iexplore.exe"); startInfo.Arguments = url.ToString(); Process browser = new Process(); browser.StartInfo = startInfo; browser.Sta.. 2010. 5. 28.
Notify Handling in ATL Dialog (Standard Control) Notify Handling in ATL Dialog (Standard Control) [출처] Notify Handling in ATL Dialog (Standard Control)|작성자 삐삐러브 SUMMARY 윈도우즈는 메시지 기반의 시스템이다. 모든 하위 윈도우를 제어할 때에는 해당 윈도우에 고유의 메시지들을 전달하여 처리한다. 하위 윈도우에서 부모 윈도우로 정보를 전달하는 방법도 메시지를 이용하는데, 이 경우에는 특별히 통지 메시지 (Notification Message)라고 부른다. 이 문서에서는 ATL 다이얼로그에서 하위 윈도우(표준 콘트롤)에서 보내는 통지 메시지를 부모 윈도우 (다이얼로그)에서 받아서 처리하는 방법에 대해 설명한다. FUNDAMENTALS MFC와 유사하게 ATL에서도 메.. 2010. 5. 27.
vector 을 이용하여 combox 에 AddString 하기 vector 을 이용하여 combox 에 AddString 하기 1 std::vector STL_AcceptSort; // vector 자료형으로 선언 2 std::vector::const_iterator iter; // 반복자 생성 3 4 STL_AcceptSort.push_back("접수순서1"); // push_back로 맨뒤로 문자열 원소 추가함. 5 STL_AcceptSort.push_back("접수순서2"); 6 STL_AcceptSort.push_back("접수순서3"); 7 8 for(iter = STL_AcceptSort.begin(); iter != STL_AcceptSort.end(); ++iter) //탐색시작~ 9 { 10 m_cmbAcceptSort.AddString( (LPCS.. 2010. 5. 27.
c++ atoi 로 문자를 숫자형으로 변환 컨버트하기 Converts a given string to an integer. 문자를 숫자형으로 컨버트하여 준다. atoi Converts a given string to an integer. int WINAPI atoi( const TCHAR *sz); Parameters sz Source character string. Return Values Returns the string's integer value. Remarks This version of atoi supports only decimal digits, and does not allow leading white space or signs. It supports both Unicode and ANSI strings. Other versions can v.. 2010. 5. 27.
반응형