CONTROL ADD TBURL32

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > TBUrl32 Control > TBUrl32 Control Creation >

CONTROL ADD TBURL32

 

Description

 

This class name creates a control that simulate a standard url link.

 

Syntax

 

CONTROL ADD TBURL32 [Name ControlName], hwnd, ctrlID, txt, xPos, yPos, Width, Height [, [Style] [, [ExStyle]]]

 

Returns

 

None

 

Parameters

 

Name

Type

Optional

Meaning

ControlName

String

Yes

Optional name for the control.

 

This name must be globally unique, and is used to create a global variable to be used with control name methods and properties.

hwnd

Number

No

Handle of the dialog containing the control

ctrlID

Number

No

Control identifier

txt

String

No

Use txt to indicate text to display and url web link separated by ";"

For example:
"Go to thinBasic web site;https://www.thinbasic.com/"

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

Height

Number

No

Control height

Style

Number

Yes

Primary style of the control.
If no Style will be specified, %WS_VISIBLE Or %WS_CHILD will be used

ExStyle

Number

Yes

Extended style of the control.

 

Remarks

 

Restrictions

 

See also

 

Examples

 

CONTROL ADD "TBURL32", hDlg, 10, "thinBasic;https://www.thinbasic.com/", _

                                                                        2, 145, 100, 10, _

                                                                        %WS_VISIBLE Or %WS_CHILD