Search found 36 matches: obar1

Return to advanced search

Re: xbrowse button bar size

... I set the size of the button bar in xbrowse? In skins it has the correct size but it is not obeyed in the executable. My code: REDEFINE BUTTONBAR oBar1 ID 100 OF oDlgMail BORDER 2007 Thanks! With the SIZE command : DEFINE BUTTONBAR oBar OF oWnd 2007 SIZE 70, 60 Thank you but not work, I think ...
by wartiaga
Thu Feb 02, 2023 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse button bar size
Replies: 2
Views: 247

Re: xbrowse button bar size

wartiaga wrote:Hi,

How do I set the size of the button bar in xbrowse? In skins it has the correct size but it is not obeyed in the executable.
My code:

REDEFINE BUTTONBAR oBar1 ID 100 OF oDlgMail BORDER 2007

Thanks!


With the SIZE command :

DEFINE BUTTONBAR oBar OF oWnd 2007 SIZE 70, 60
by Marc Venken
Thu Feb 02, 2023 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse button bar size
Replies: 2
Views: 247

xbrowse button bar size

Hi,

How do I set the size of the button bar in xbrowse? In skins it has the correct size but it is not obeyed in the executable.
My code:

REDEFINE BUTTONBAR oBar1 ID 100 OF oDlgMail BORDER 2007

Thanks!
by wartiaga
Thu Feb 02, 2023 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse button bar size
Replies: 2
Views: 247

Re: POSITION BUTTONS ON BUTTONBAR

Il Pulsante "Invio" a destra del Dialog oDlgb DEFINE BUTTONBAR oBar1 OF oDlgb 2013 SIZE 95,45 BOTTOM DEFINE BUTTON oBut1x OF oBar1 PROMPT " " FONT oFontb GROUP oBut1x:disable() oBut1x:nWidth = (ODLGB:nWidth-250) DEFINE BUTTON oBut OF oBar1 ...
by stefano
Sun Apr 30, 2017 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: POSITION BUTTONS ON BUTTONBAR
Replies: 7
Views: 1158

change a font on line

... hDC ) @ .27, 1.8 COMBOBOX oFonts VAR cFont ITEMS aFonts ; SIZE 170, 100 FONT oFont ; MESSAGE "Changes the font of the selection" ; OF oBar1 @ .38, 23.5 GET oSize VAR nSize OF oBar1 ; FONT oFont SIZE 20, 19 ; PICTURE "99" SPINNER MIN 6 MAX 99 ; MESSAGE "Changes the font ...
by Silvio.Falconi
Wed Feb 08, 2017 11:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change a font on line
Replies: 3
Views: 908

How change the size of a Bar... ( from final user)

I have a Main window with a bar at INIT the height of Bar is 0 on this bar I wish create two bars each bar (oBar1 or oBar2) is created when his value (lbar1 or lBar2 ) is true ( the final user set if true or false) and the height of Bar must add of 25 I made also a minimal test ...
by Silvio.Falconi
Sat May 14, 2016 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How change the size of a Bar... ( from final user)
Replies: 0
Views: 304

Re: ButtonBar style 2015

... I have two oBar DEFINE BUTTONBAR oBar OF ::oWndMain 3D SIZE 26, 84 oBar:bLClicked := { || NIL } oBar:bRClicked := { || NIL } @ -1, -1 BUTTONBAR ::oBar1 OF oBar 3D SIZE oBar:nWidth - 1, 29 ; BUTTONSIZE 26, 27 //sample button DEFINE BUTTON RESOURCE "RTFNEW" OF ::oBar1 GROUP ; MESSAGE "Creates ...
by Silvio.Falconi
Tue May 10, 2016 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBar style 2015
Replies: 19
Views: 5571

Re: ButtonBar style 2015

with oBar:bClrGrad := <your gradient> I change the color of the bar and not the buttons .... ::oBar1:bClrGrad := { | lPressed | If( ! lPressed,; { { 1, nRGB( 253, 254, 255 ), nRGB( 179, 217, 255 ) } },; { { 1, nRGB( 179, 217, 255 ), nRGB( 253, 254, 255 ) } } ) } I have ...
by Silvio.Falconi
Mon May 09, 2016 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBar style 2015
Replies: 19
Views: 5571

Re: btnbmp on buttonbar

the problem is coordinates of menu referenced of button of second buttonbar ::oBar2 on the first ::oBar1 run ok but I need it on second buttonbar Sorry but here I made : the first oBar is the mother od ::oBar1,::oBar2,::oBar3 on ::oBar1 and ::oBar2 there are buttons on ::oBar3 ...
by Silvio.Falconi
Tue May 03, 2016 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: btnbmp on buttonbar
Replies: 13
Views: 2487

Re: Problem with Preview from trichedit

DEFINE BUTTON RESOURCE "Cut" OF ::oBar1 ; MESSAGE "Cuts the selection and puts it on the Clipboard" ; TOOLTIP "Cut" NOBORDER ; WHEN ( ::WndActive() .and. ::WndChild() != nil .and. ::WndChild:CanCut() ) ; ACTION ( ::WndChild():Cut(), ...
by Antonio Linares
Wed Apr 27, 2016 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Preview from trichedit RESOLVED
Replies: 4
Views: 1057

Problem with Preview from trichedit RESOLVED

... I show the preview of the window child ( ::WndChild():preview() ) I use this button from bar DEFINE BUTTON RESOURCE "RTFPreview" OF ::oBar1 ; MESSAGE "Displays full pages" ; TOOLTIP "Print Preview" NOBORDER ; WHEN ( ::WndActive() .and. ::WndChild():Len() > 0 ...
by Silvio.Falconi
Tue Apr 26, 2016 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Preview from trichedit RESOLVED
Replies: 4
Views: 1057

Pregunta sobre el buttonbar

Saludos al forum Tengo tres bottombar al iniciar el programa se carga uno que es el ::oBar0 cuando uso en otro ::oBar1 supuesta mente los iconos lo carga bien de este pero al pasar el cursor muestra el anterior. lo hago de esta manera ::SelBar( ::oBar1 ) como puedo activar dicha ...
by ruben Dario
Thu Dec 08, 2011 7:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre el buttonbar
Replies: 0
Views: 209

Re: ExplorerBar and Get

... from Explorerbar 1 the 1. Button : ----------------------------------------------------------------------------------------------------------- oBar1 := TExplorerBar():New( 0, aRect4 - nFACTOR1, aRect4 + nFACTOR2, aRect3 - 75, oWnd ) oPanel1 := oBar1:AddPanel("System", , 410 ) oPanel1:lSpecial ...
by ukoenig
Tue Jul 19, 2011 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ExplorerBar and Get
Replies: 12
Views: 4980

A Problem using : VTitles, Gradient / Base and BtnBmp

... possible, to fix the Problem ? ( I would like, to keep the round Button ). Otherwise I have to change the Button-class using Gradient-background. oBar1:aGrdBack := { { nGradPos, nColor1, nColor2 },{ nGradPos, nColor2, nColor1 } } http://www.pflegeplus.com/pictures/about15.jpg As ...
by ukoenig
Thu Jul 07, 2011 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem using : VTitles, Gradient / Base and BtnBmp
Replies: 3
Views: 769

Re: About box

... BASE ( there is no extra work ) : must be selected as a Option from the Message-background. only 2 extra Lines needed : 1. @ nTop, nLeft TITLE oBar1 SIZE nWidth, nHeight OF oContrl TRANSPARENT BORDER BASE SHADOWSIZE 0 2. oBar1:aGrdBase := { { nGradPos, nColor1, nColor2 } , ; { 10 - nGradPos, ...
by ukoenig
Thu Jul 07, 2011 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: About box
Replies: 13
Views: 2523
Next

Return to advanced search