explorerBar on the right

Post Reply
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

explorerBar on the right

Post by Silvio.Falconi »

Image

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: Select all | Expand

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 November 2023 - January 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
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: explorerBar on the right

Post by cnavarro »

Try with

Code: Select all | Expand


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
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: explorerBar on the right

Post by Silvio.Falconi »

cnavarro wrote:Try with

Code: Select all | Expand


oExBar:nRight:=700
 


not run
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: explorerBar on the right

Post by cnavarro »

Code: Select all | Expand


   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
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: explorerBar on the right

Post by Silvio.Falconi »

cnavarro wrote:

Code: Select all | Expand


   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 November 2023 - January 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
Post Reply