본문 바로가기

분류 전체보기94

Unbuntu 8.04 에서 ClearSilver 컴파일 하기. 몇가지 모듈을 포함시켜야 컴파일 오류가 안난다. Install the build dependencies $ sudo apt-get build-dep python-clearsilver $ sudo apt-get install python-dev Download the 0.10.4 version (as it contains fixes for python2.5) $ wget http://www.clearsilver.net/downloads/clearsilver-0.10.4.tar.gz $ tar xzvf clearsilver-0.10.4.tar.gz Edit the configure files as listed by Antonio Censi above Build the new version $ cd clear.. 2008. 9. 8.
printStackTrace 2008. 9. 2.
문제 풀기 스크립트 Next >>> ----------------------------------------------------------- 위의 '문제' 부분에 q0 ~ q? 를 계속 추가해 주면 다른 스크립트 수정없이 재 사용 가능하다. 2008. 8. 21.
DoCapture(IHTMLElement *ele, IViewObject2 *vObj, int width, int height, int cwidth, int cheight, int wd, int hd) void __fastcall TForm1::Button1Click(TObject *Sender) { CppWebBrowser1->Navigate(WideString(Edit1->Text)); } //--------------------------------------------------------------------------- void __fastcall TForm1::Button2Click(TObject *Sender) { IViewObject2 *vObj; IHTMLElement2 *ele2; IHTMLElement2 *ele_5; IHTMLDocument2 *doc2; IHTMLElement *ele; IHTMLElement *ele_4; IHTMLDocument3 *doc3; long bHe.. 2008. 8. 19.
TShellWindows void __fastcall TForm1::Button1Click(TObject *Sender) { TShellWindows *Sh = new TShellWindows(NULL); try { for(int i = 0; i Count; i++) { if(Sh->Item(i) == NULL) continue; Draw(Sh->Item(i)); break; } } __finally { delete Sh; } } //--------------------------------------------------------------------------- void __fastcall TForm1::Draw(IDispatch *Idisp) { IWebBrowser2 *IE = (IWebBrowser2 *)N.. 2008. 8. 19.
TInternetExplorer ie = new TInternetExplorer(NULL); ie->OnStatusTextChange = IEStatusTextChange; ie->Visible = true; ie->Navigate(WideString("http://www.sonystyle.co.kr")); ie->Free(); 2008. 8. 14.