Search found 69 matches: orbar

Return to advanced search

Re: Una sobre RIBBONBAR

... lista de palabras que se transforma en un array: [ <prm: PROMPT, PROMPTS, ITEMS> <cPrompt,...> ] #xcommand DEFINE RIBBONBAR [ <oRBar> ] ;                           [ <of:OF, WINDOW> <oWnd> ] ;                           [ <prm: PROMPT, PROMPTS, ...
by Antonio Linares
Mon Apr 01, 2024 7:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una sobre RIBBONBAR (SOLUCIONADO)
Replies: 2
Views: 591

Help rbdesigner error

... => TWINDOW:ACTIVATE( 1097 )   Called from: rbdesign.prg => MAIN( 26 )  I'm afraid the function ChangeStyle( oRBar, nStyle ) have an error because it set the style but then not refresh all the tab and all the control set on each tab
by Silvio.Falconi
Mon Oct 28, 2019 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help rbdesigner error
Replies: 1
Views: 387

Re: disable/enable button

... sample < ribbon2.prg > The image doesn't change. http://www.pflegeplus.com/IMAGES/ribbon10.jpg ADD GROUP oGr1 RIBBON oRBar TO OPTION 1 PROMPT "Font" WIDTH 205 @ 10, 05 ADD BUTTON oBtn5 GROUP oGr1 BITMAP "..\bitmaps\bold16.bmp" GROUPBUTTON FIRST ...
by ukoenig
Fri Jul 12, 2019 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: disable/enable button
Replies: 5
Views: 739

Re: Ribbon Theme

... down below the tabs again. Please, set height of ribbonbar, look .../... local nTopMarg := 24 local nHeight := 128 + nTopMarg DEFINE RIBBONBAR oRBar WINDOW oWnd ; PROMPT "One and more", "Two and minus", "Three and more or minus" ; HEIGHT nHeight TOPMARGIN nTopMarg ...
by cnavarro
Sun Apr 28, 2019 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28249

Re: Ribbonbar on w7 and 10

Cristobal made a new release of tribbon DEFINE RIBBONBAR [ <oRBar> ] ; [ <of:OF, WINDOW> <oWnd> ] ; [ <prm: PROMPT, PROMPTS, ITEMS> <cPrompt,...> ] ; [ <act: ACTION, EXECUTE, ON CHANGE> <uAction> ] ; [ OPTION <nOption> ...
by Silvio.Falconi
Wed Apr 03, 2019 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbonbar on w7 and 10
Replies: 4
Views: 1000

Re: Buttonbar + Menu VS. Ribbonbar

Me respondo, me puse a revisar el archivo rbdesign.prg, ahi viene como generar el ribbonBar desde 0.

oRBar:AddTab( "CIERRE DIARIO" )

Gracias por no darme el pescado y forzarme a buscarlo por mi mismo.
by mariordz
Wed Mar 13, 2019 5:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buttonbar + Menu VS. Ribbonbar
Replies: 12
Views: 2572

Buttonbar + Menu VS. Ribbonbar

... es: ¿Es posible administrar estas opciones usando un RibbonBar? Leyendo encontré que se pueden deshabilitar los "Tabs" del RibbonBar (oRBar:aEnable[NoDeTab]:=.F.) y efectivamente lo deshabilita, pero me gustaría poder esconderlo (trate con la opción oRBar:hide[2]:=.T., pero no funciona). ...
by mariordz
Wed Mar 13, 2019 4:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buttonbar + Menu VS. Ribbonbar
Replies: 12
Views: 2572

Re: Ribbon Theme

Cristobal, It is actually oRBar:setStyles() with an "s" at the end. I think it should have been setStyle() since it only changes one style, but changing the name of the method now could break existing code in use now. It may ...
by James Bott
Fri Oct 26, 2018 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28249

Re: Ribbon Theme

Please try with and tell me

James Bott wrote:
oRBar:= TRibbonbar():New(…)
oRbar:setStyle(…)
oRBar:Default()

James
by cnavarro
Thu Oct 25, 2018 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28249

Re: Ribbon Theme

... And there are some complications in adding a setStyle() method since the style is mostly setup in the New() method so you can't do something like: oRBar:= TRibbonbar():New(…) oRbar:setStyle(…) At least you can't without revising the New() method a lot. Actually, there is already a setStyles() method ...
by James Bott
Thu Oct 25, 2018 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28249

Re: Ribbon Theme

... is already drawn at the end of the New() method so you can't change lots of things outside the class. One would like to just be able to do: oRBar:= TRibbonbar():new(...) oRBar:nClrRBar := RBG(54,54,54) For some colors you can do this, but for others you can't. Actually most of the colors ...
by James Bott
Wed Oct 03, 2018 11:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28249

Re: Error en cambio de colores oRBar

Gracias Antonio, esta funcionando.

Saludos.
Ruben Dario Fernandez
by D.Fernandez
Sun May 07, 2017 4:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en cambio de colores oRBar SOLUCIONADO
Replies: 2
Views: 690

Re: Error en cambio de colores oRBar

Ruben, En este codigo tienes un array con 3 elementos. Como tienes 5 pestañas en la ribbon, tienes que modificarlo para que tenga cinco elementos: oRBar:aClrTabTxt = { { | oSelf , nPrompt | If( nPrompt == oRBar:nOption, CLR_GREEN , CLR_WHITE ) },; { | oSelf , nPrompt | If( nPrompt == oRBar:nOption, ...
by Antonio Linares
Sun May 07, 2017 5:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en cambio de colores oRBar SOLUCIONADO
Replies: 2
Views: 690

Error en cambio de colores oRBar SOLUCIONADO

Amigos: haciendo un cambio de colores en la ribbon con un ejemplo del foro de inglés me da un error. DEFINE RIBBONBAR oRBar WINDOW oWinMain  PROMPT  "Inicio    " ,  "    Archivos    ", "    Reportes Impresos    ", "Utilidades    ",;          ...
by D.Fernandez
Sun May 07, 2017 3:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en cambio de colores oRBar SOLUCIONADO
Replies: 2
Views: 690

Re: Ribbon tab color MICROSOFT OFFICE 2016

first problem correct with

DEFINE RIBBONBAR oRBar WINDOW oWnd PROMPT "One", "Two", "Three" HEIGHT 163 TOPMARGIN 45 2015
by Silvio.Falconi
Sat May 06, 2017 5:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon tab color MICROSOFT OFFICE 2016
Replies: 38
Views: 9855
Next

Return to advanced search