Views 12628 Votes 0 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
MessageBox 사용 API
2007/03/24 12:40
msgbox.jpg

코드 설명
switch(iMessage)
{
    case WM_DESTROY:
        PostQuitMessage(0);
        return 0;
    case WM_LBUTTONDOWN:
        MessageBox(hWnd,"테스트 MessageBox입니다.","테스트", MB_OK);
        return 0;
}

MessageBox의 함수를 살펴보면,
int MessageBox(
    HWND hWnd,
    LPCTSTR lpText,
    LPCTSTR lpCaption,
    UINT uType
);

MessageBox는 리턴값이 int이다.
그러므로 위의 코딩은 단순이 하나의 선택 Button만 표시 하였지만 MB_OK가 아닌 다른 MB_YESNO나 기타 다른 값을 선택하면 MessageBox에서 어떤걸 선택했는지 알수 있고 그에 대해 코딩을 할수 있다는 말.

[출처] http://blog.naver.com/rfsoft/120036032518
?

  1. [c++] 인라인 함수 설명과 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views6633
    Read More
  2. [c++] 인라인 함수에 대한 설명

    Date2013.04.23 CategoryDevelop Byhooni Views7110
    Read More
  3. [c++] 자료구조(링크리스트,스택,큐)와 후위 표기 계산기 샘플 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views12318
    Read More
  4. [c++] 중복실행 방지(Mutex;뮤텍스 ) 샘플 소스.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8737
    Read More
  5. [c++] 채팅로봇 소스.. ㅋㄷㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views8878
    Read More
  6. [c++] 초간단 스택 두 가지 방식(class, struct)

    Date2013.04.23 CategoryDevelop Byhooni Views7553
    Read More
  7. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views6976
    Read More
  8. [c++] 트리컨트롤 스텝 2 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views6953
    Read More
  9. [c++] 트리컨트롤 스텝 3 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views7943
    Read More
  10. [c++] 트리컨트롤 예제1 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7169
    Read More
  11. [c++] 퍼즐 버블버블 간단한 원리(사용공식)

    Date2013.04.23 CategoryDevelop Byhooni Views9958
    Read More
  12. [c++] 프리렉(freelec) 예제 자료.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views6833
    Read More
  13. [c++] 헤더, 소스 파일 분리해서 작성해본 테스트 소스

    Date2013.04.23 CategoryDevelop Byhooni Views6688
    Read More
  14. [c++] 현승이가 준 P2P 프로그램 소스 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views12064
    Read More
  15. [c++] 현승이가 준 메신저 소스.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8266
    Read More
  16. [c++][mfc] 파일 입출력 샘플 (한줄씩 읽어서 다른 파일에 쓰기)

    Date2013.04.23 CategoryDevelop Byhooni Views14979
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 ... 53 Next
/ 53