FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Textbox on Taskbar
Posts: 99
Joined: Wed Nov 02, 2005 10:40 AM
Textbox on Taskbar
Posted: Wed Apr 25, 2007 12:08 PM
How can i have a textbox and a menu on Taskbar (like Nero)?


Posts: 663
Joined: Mon Dec 05, 2005 11:22 PM
Textbox on Taskbar
Posted: Wed Apr 25, 2007 07:00 PM
Here is partial code for a combobox but you can add get, say and other stuff. Notice the "of oBar" instead of "of oWnd"

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 ) }
Posts: 99
Joined: Wed Nov 02, 2005 10:40 AM
Textbox on Taskbar
Posted: Thu Apr 26, 2007 06:51 AM
Gale 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"

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 Taskbar

Thank you
A.S.K

Continue the discussion