<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > ToolBar Control > ToolBar Control Commands > ToolBar_AddButton |
Description
Add a button to a ToolBar.
Syntax
n = ToolBar_AddButton(hWnd, ctrlID, Image, cmd, Style, Text [, AT Item])
Returns
Number
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 ... |
||||||||
Image |
Number |
No |
Image number selected (1=first, 2=second, etc.) |
||||||||
Cmd |
Number |
No |
Command id number associated with this button. |
||||||||
Style |
Number |
No |
Style descriptor bits for this button.
|
||||||||
Test |
String |
No |
A text string to be displayed on this button. |
||||||||
Item |
Number |
Yes |
If the optional "AT item&" clause is included, the button is inserted at the designated position (1=first, 2=second, etc.). Otherwise, it is added to the end of the list. |
Remarks
Restrictions
See also
Examples