다른 속성과 함수는 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;


+ Recent posts