AddTBgadget | |||||||||
Syntax: | |||||||||
AddTBgadget( hGadget, x, y ) | |||||||||
Parameters: | |||||||||
| |||||||||
Description: | |||||||||
With AddTBgadget() you can move a PureBasic Gadget (like a ComboBox) or another Child Window into your Toolbar. The added Gadgets are not Buttons and you can place them freely in the Toolbar wherever you want. | |||||||||
Example: | |||||||||
combo = ComboBoxGadget(1,220,180,200,300) AddTBgadget(combo,30,2) | |||||||||
|