본문 바로가기

Application/Delphi Lecture126

idhttp 에서 https 적용하기 Ok got it to work. I was trying to URL_encode the params rather than param_encode. Here is what I have learned and done. You will need 2 ".dll"s for SSL to work with the Indy components: "libeay32.dll" and "ssleay32.dll" I downloaded them from http://www.intelicom.si/download.php?op=viewdownload&cid=1 Do not forget to put the ".dll"s in the same directory as your executable. here is the code I u.. 2008. 8. 13.
activex 의 현재 ie url 가져오기 우선 USUS에 SHDocVw 추가 하시구요. function Get_IE_URL:string; var ClientSite: IOleClientSite; WebBrowserApp: IWebBrowserApp; ServiceProvider: IServiceProvider; WebBrowser2: IWebBrowser2; begin Result := ''; if (ComObject as IOleObject).GetClientSite(ClientSite) = S_OK then begin if (ClientSite nil) then begin ClientSite.QueryInterface(IServiceProvider, ServiceProvider); if (ServiceProvider nil) then beg.. 2008. 8. 13.
Activex 쉽게 만들기 1. Application으로 제작된 Unit를 uses 절에 추가. 2. ActiveForm Create 이벤트시 아래구문을 추가. procedure TActiveFormX.ActiveFormCreate(Sender: TObject); begin self.DockSite := true; form1 := TForm1.Create(Self); form1.dock(self, ClientRect); form1.Visible := true; end; 2008. 8. 13.
activex 쉽게 만들기 안녕하세요? 김영진입니다. 그동안 '도련' 이라는 아디로 활동하다 본명으로 활동하려 합니다. 그동안 ActiveX 를 만들면서 항상 느껴 왔던게 '실행' 과 '디버깅' 이었습니다. 코드 열심히 만들어서 한번 볼려고 하면 일반 Application 에서는 F9 만 누르면 되었었는데 ActiveXForm 은 Deploy 를 해야 하고, Browser 로 URL 을 치고 확인을 해야 하는 불편함이 었었죠. 또한 Debuging 도 힘들어서 Break Point 를 걸고 하는 작업이 불가능 했습니다. 나름대로 잘 만들었다 생각되지만 사실 어디서 메모리 누수가 일어나는지도 정확히 catch 할 수 없고.. 에러가 나면 Browser 가 죽어 버리는등 상황이 발생하기도 합니다. 1. 프로그램은 Application.. 2008. 8. 13.