Q&A

  • showmessage에 데이터를 읽어올수 있나요?
showmessage에 폼에서 몇개의 데이터를 읽어와서 표시하고 싶은데 방법이 있나요?

가르쳐주세요~ ^^

1  COMMENTS
  • Profile
    남기석 2000.09.17 11:02
    폼에 있는 Data를 ShowMessage할 때 메세지 내에 보여주겠다는 것이죠?

    그럼 이렇게 하세요...



    Procedure TForm1.Button1Click( Sender : TObject );

    var

    str1, str2 : string;

    begin

    str1 := edit1.text;

    str2 := label1.caption;



    showmessage( str1 + str2 );

    end;



    =================================================================================



    김옥란 wrote:

    > showmessage에 폼에서 몇개의 데이터를 읽어와서 표시하고 싶은데 방법이 있나요?

    > 가르쳐주세요~ ^^