I would want to insert a combobox in the toolbar between the buttons.
How I can make?
Thanks in advance.
Pier Luigi
Combobox in toolbar
- Pier Luigi
- Posts: 58
- Joined: Fri Oct 07, 2005 6:30 am
- Location: Rome - Italy
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Combobox in toolbar
Try
EMG
Code: Select all
@ row, col COMBOBOX ... OF oBar
- Pier Luigi
- Posts: 58
- Joined: Fri Oct 07, 2005 6:30 am
- Location: Rome - Italy
Re: Combobox in toolbar
I write
The combobox is inserted at row/col, but over the buttons 3 and 4.
How I can distance the buttons?
Pier Luigi
Code: Select all
...
oToolBar:AddButton( { || MsgInfo() }, nil, nil ) // 1
oToolBar:AddButton( { || MsgInfo() }, nil, nil ) // 2
@ row, col COMBOBOX ... OF oToolBar
oToolBar:AddButton( { || MsgInfo() }, nil, nil ) // 3
oToolBar:AddButton( { || MsgInfo() }, nil, nil ) // 4
...
How I can distance the buttons?
Pier Luigi
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Combobox in toolbar
You may try using oBtn:Move() method.
EMG
EMG