WebBrowser_Create

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UIAdv (Advanced User Interface module) > WebBrowser Control >

WebBrowser_Create

 

Description

 

Create a new WebBrowser control inside a dialog.

 

Syntax

 

hndl = WebBrowser_Create (hWnd, ctrlID, InitialWebPage, xPos, yPos, Width, Height [, lStyle [, lEXStyle]])

 

Returns

 

Number

Control window handler.

 

Parameters

 

Name

Type

Optional

Meaning

hWnd

Number

No

Handle of the dialog containing the control

ctrlID

Number

No

Control identifier

InitialWebPage

String

Yes

Initial web page to be loaded into the control. If omitted, "about:blank" will be used

All kind of urls supported by Internet Explorer can be specified.

xPos

Number

No

Horizontal position of the control inside the dialog

yPos

Number

No

Vertical position of the control inside the dialog

Width

Number

No

Control width. If -1, it will be aligned to the right of the parent dialog

Height

Number

No

Control height. If -1 it will be aligned to to bottom of the parent dialog

lStyle

Number

No

Primary style of the control.

If omitted the following will be used: %WS_CHILD Or %WS_VISIBLE Or %WS_TABSTOP

lEXStyle

Number

No

Extended style of the control

 

Remarks

 

Restrictions

 

See also

 

Examples