다른 속성과 함수는 ActiveX Control Test Container 같은 프로그램으로 확인하자.
#include <System.Win.Comobj.hpp>
Variant IE = System::Win::Comobj::CreateOleObject("InternetExplorer.Application");
IE.OleProcedure("Navigate2", WideString("http://google.com/"));
IE.OlePropertySet("ToolBar", false);
IE.OlePropertySet("AddressBar", true);
IE.OlePropertySet("Left", 0);
IE.OlePropertySet("Top", 0);
IE.OlePropertySet("Width", 640);
IE.OlePropertySet("Height", 480);
IE.OlePropertySet("Visible", true);
IE = Unassigned;
'Windows > RAD Studio' 카테고리의 다른 글
DLL Export 함수 목록 가져오기 (0) | 2015.10.07 |
---|---|
[CB] 긴 문자열 줄이기. (AnsiString, Canvas, TextWidth, Width) (0) | 2015.09.25 |
프로세스 종료 (0) | 2015.09.08 |
DLL 기본 주석 문구 해석 (0) | 2015.05.13 |
[Del] TListBox HorizontalScrollBar 표시 (0) | 2015.05.06 |