Q&A

  • IE.Navigate 로 브라우져 띄울대 뒤에 파라메터까지 보내는 방법좀 알려주세요
제가 밑에 방식으로 했는데요

문제는  

TotalURL := 'http://lovalhost/msg/msg.asp?msg=' + ToMsg;
        IE := CreateOleObject('InternetExplorer.Application');
        IE.Visible := true;
        IE.Navigate(TotalURL);
        IE.Toolbar := false;  //툴바없애기
        IE.Width := 200;
        IE.Height := 200;


브라우져는 뜨는데 ,
'http://lovalhost/msg/msg.asp?msg = 까지만 나오세요

원래는 'http://localhost/msg/msg.asp?msg=tomsg(안녕하세요)
이렇게 나와여 하는데

고수님들 부탁드립니다
1  COMMENTS
  • Profile
    한은수 2004.08.16 22:56
    소켓에서 받아서 바로 하면 안되네요

    Timer 를 줘야지만이 돼네요 그럼 수고 하세요..!