Q&A

  • 메세지 다이얼로그박스의 이름 변경하려면???
if MessageDlg('메세지를 받으시겠습니까?', mtInformation, [mbOk,mbCanCel],0)=mrOK then



이렇게 코딩이된 메세지 다이얼로그 박스의 위에 써지는 Information 이 문구를 제가 정해서 하고 싶은데 어떻게 하면 됩니까??

3  COMMENTS
  • Profile
    까마귀 2000.11.24 04:13
    volf wrote:

    > if MessageDlg('메세지를 받으시겠습니까?', mtInformation, [mbOk,mbCanCel],0)=mrOK then

    >

    > 이렇게 코딩이된 메세지 다이얼로그 박스의 위에 써지는 Information 이 문구를 제가 정해서 하고 싶은데 어떻게 하면 됩니까??



    안녕하세요. 까마귀입니다.



    이렇게 해보세요.



    Application.MessageBox('니 메세지 받을래?','까마귀',mb_YesNo+mb_IconQuestion);







    위대한 단군혼이 살아있는 나라.... 대한민국.



  • Profile
    volf 2000.11.24 04:21
    Application.MessageBox('니 메세지 받을래?','까마귀',mb_YesNo+mb_IconQuestion);



    이렇게 하면 리턴값이 머가 되는 거지여??



  • Profile
    volf 2000.11.24 04:26
    Value Numeric value Meaning

    IDABORT 3 The user chose the Abort button.

    IDCANCEL 2 The user chose the Cancel button.

    IDIGNORE 5 The user chose the Ignore button.

    IDNO 7 The user chose the No button.

    IDOK 1 The user chose the OK button.

    IDRETRY 4 The user chose the Retry button.

    IDYES 6 The user chose the Yes button.



    필요하신분이 있을까 적어놓습니다. 리턴값은 정수형이 반환됩니다.