Function Reference

_IE_Example

Display a new browser window pre-loaded with documents to be used in IE.au3 examples

#include <IE.au3>
_IE_Example ( [$s_module = "basic"] )

 

Parameters

$s_module Optional: specifies which module to run
basic = (Default) simple HTML page with text, links and images
form = simple HTML page with multiple form elements
frameset = simple HTML page with frames
iframe = simple HTML page with iframes
table = simple HTML page with tables

 

Return Value

Success: Returns an object variable pointing to an InternetExplorer.Application object
Failure: Returns 0 and sets @ERROR
@Error: 0 ($_IEStatus_Success) = No Error
5 ($_IEStatus_InvalidValue) = Invalid Value
@Extended: Contains invalid parameter number

 

Remarks

This function displays browser windows pre-populated with HTML and HTML elements that are used throughout the helpfile and IE.au3 examples. You are also encouraged to use them to experiment with the IE.au3 function set.

 

Related

_IE_Introduction

 

Example


; *******************************************************
; Example 1 - Create browser windows with each of the example pages displayed.
;               The object variable returned can be used just as the object
;               variables returned by _IECreate or _IEAttach
; *******************************************************
;
#include <IE.au3>
$oIE_basic = _IE_Example ("basic")
$oIE_form = _IE_Example ("form")
$oIE_table = _IE_Example ("table")
$oIE_frameset = _IE_Example ("frameset")
$oIE_iframe = _IE_Example ("iframe")