CONTROL POST

<< Click to Display Table of Contents >>

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

CONTROL POST

 

Description

 

Place a message in the message queue of the specified dialog control.

The message is processed by the dialog control at a later time, when it reads the message from the queue.

 

Syntax

 

CONTROL POST hwnd, ctrlID, Msg, wParam, lParam

 

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 ...

Msg

Number

No

Is the message you want to send to the control

wParam

Number

No

First parameter. This value is Msg dependant

lParam

Number

No

Second parameter. This value is Msg dependant

 

Remarks

 

Restrictions

 

See also

 

Examples