![Image](http://img441.imageshack.us/img441/6656/textboxgg4.th.png)
Textbox on Taskbar
Here is partial code for a combobox but you can add get, say and other stuff. Notice the "of oBar" instead of "of oWnd"
Code: Select all
cBrView := 'Default'
aBrView := { ;
'Default' , ;
'Available' , ;
'Scheduled' , ;
'Dispatched' , ;
'2nd Moves' , ;
'Query Mode' }
@ 7, 535 SAY 'View:' ;
OF oBar ;
SIZE 50, 20 ;
PIXEL ;
UPDATE
// create view selection combobox on bar
@ 3, 570 COMBOBOX oBrView VAR cBrView ;
OF oBar ;
SIZE 100,280 ;
ITEMS aBrView ;
PIXEL ;
UPDATE
oBrView:cToolTip := "Select View"
oBrView:refresh()
oBrView:bChange := { || ChangeMyView() , TRUE ) }
Yes thank you but I need it inside the Windows TaskbarGale FORd wrote:Here is partial code for a combobox but you can add get, say and other stuff. Notice the "of oBar" instead of "of oWnd"
Code: Select all
cBrView := 'Default' aBrView := { ; 'Default' , ; 'Available' , ; 'Scheduled' , ; 'Dispatched' , ; '2nd Moves' , ; 'Query Mode' } @ 7, 535 SAY 'View:' ; OF oBar ; SIZE 50, 20 ; PIXEL ; UPDATE // create view selection combobox on bar @ 3, 570 COMBOBOX oBrView VAR cBrView ; OF oBar ; SIZE 100,280 ; ITEMS aBrView ; PIXEL ; UPDATE oBrView:cToolTip := "Select View" oBrView:refresh() oBrView:bChange := { || ChangeMyView() , TRUE ) }
Thank you
A.S.K