CONTROL SET TOOLTIP

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Commands >

CONTROL SET TOOLTIP

 

Description

 

Set a balloon help text that will appear close to the specified control when mouse will move over.

 

Syntax

 

CONTROL SET TOOLTIP hwnd, ctrlID, sTxt [, sTitle [, IconType]]

 

Returns

 

None

 

Parameters

 

Name

Type

Optional

Meaning

hwnd

Number

No

Handle of the dialog containing the control

ctrlID

Number

No

Control identifier assigned to the control during CONTROL ADD ...

sTxt

String

No

A text expression representing the text you want to assign to the tool tip balloon help.

sTitle

String

Yes

Tool tip title (global to all tool tips)

IconType

Number

Yes

0 = no icon

1 = info icon

2 = warning icon

3 = error icon

Icon is global to all tool tips

 

Remarks

 

Restrictions

 

See also

 

Examples