FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour explorerBar on the right
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
explorerBar on the right
Posted: Sun Oct 23, 2022 04:28 PM


how do i create an explorebar all the way to the right as it is marked in the figure with the red arrow?
in the left (oclient) part I show a windows

I tried wih
Code (fw): Select all Collapse
function Main()

   local oWnd, oBar, oMenu
   local oExBar,oPanel1
   SetGetColorFocus()

   DEFINE WINDOW oWnd MDI TITLE "FWH18.08: DIALOG IN MDICHILD WINDOW"
   DEFINE BUTTONBAR oBar OF oWnd SIZE 100,32 2007
   DEFINE BUTTON OF oBar PROMPT "MDIDLG-OLD" CENTER ACTION DlgInMdiChildOld()
   DEFINE BUTTON OF oBar PROMPT "MDIDLG-NEW" CENTER ACTION CreateDialog( AS_MDICHILD )
    DEFINE BUTTON OF oBar PROMPT "silvio" CENTER ACTION CreateDialog2( AS_MDICHILD )


   DEFINE BUTTON OF oBar PROMPT "DIALOG"     CENTER ACTION CreateDialog( AS_DIALOG )

   oExBar = TExplorerBar():New()
           oExBar:nLeft:=500
           oExBar:nRight:=200
    oPanel1 = oExBar:AddPanel( "One", "..\bitmaps\32x32\people.bmp" )

    oWnd:oRight = oExBar
   ACTIVATE WINDOW oWnd
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: explorerBar on the right
Posted: Sun Oct 23, 2022 11:01 PM
Try with
Code (fw): Select all Collapse
oExBar:nRight:=700
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: explorerBar on the right
Posted: Sun Oct 23, 2022 11:04 PM
cnavarro wrote:Try with
Code (fw): Select all Collapse
oExBar:nRight:=700


not run
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: explorerBar on the right
Posted: Mon Oct 24, 2022 12:02 AM
Code (fw): Select all Collapse
   oExBar = TExplorerBar():New( , 300, , , oWnd )
//           oExBar:nLeft  := 500
           oExBar:nRight :=200
    oPanel1 = oExBar:AddPanel( "One", "..\bitmaps\32x32\people.bmp" )
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: explorerBar on the right
Posted: Mon Oct 24, 2022 08:13 AM
cnavarro wrote:
Code (fw): Select all Collapse
   oExBar = TExplorerBar():New( , 300, , , oWnd )
//           oExBar:nLeft  := 500
           oExBar:nRight :=200
    oPanel1 = oExBar:AddPanel( "One", "..\bitmaps\32x32\people.bmp" )


here not run
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

Continue the discussion