Search found 611 matches: obar

Return to advanced search

Error Fwh 24.02 con XBROWSE

... // Barra de opciones //------------------------------------------------------------------------------ Static Procedure BrwbtnBar( oBrw ) local oBar, oBtn, oBold DEFINE BUTTONBAR oBar OF oBrw:oWnd SIZE 75,75 3D 2015 HEIGHT 96 oBold := oBar:oFont:Bold() oBar:oGrpFont := oBold oBar:bClrGrad = ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 96

Re: Hide/show search system on a dialog - Resolved

solved https://i.postimg.cc/x1P2G9QM/gg.gif Function Hide_Ctrls(oBrw,oGet,oSay,lSearchBar,aBtn,oBar) local oBtn,n If lSearchBar oSay[1]:show() oSay[2]:show() oGet:show() oBrw:oSortCbx:show() oBrw:nTop:=32 oBrw:nHeight:= oBar:ntop-40 else oSay[1]:hide() oSay[2]:hide() ...
by Silvio.Falconi
Mon Mar 25, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1192

change size dialog selecting noption folder

... the end user selects tab number 3 and tab number 6 I made a small test Problem is when press folder tab the dialog is resized but sometimes the oBar is hided or became smaller and then I often notice a flutter, i.e. the dialog trembles #include "FiveWin.ch"#include "Constant.ch"#define ...
by Silvio.Falconi
Thu Mar 14, 2024 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change size dialog selecting noption folder
Replies: 3
Views: 619

Re: Cambio de imagen a 1 boton

... nuevamente y regrese a la imagen de "efectivo.bmp". he intentado de esta forma pero solo me cambia el CAPTION DEFINE BUTTON oBoton1 OF oBar FILE "Efectivo.bmp" ; ACTION (oBoton1:cCaption:='Cheque',oBoton1:FreeBitmaps(),oBoton1:LoadBitMaps("Cheque4.Bmp"),oBoton1:Paint(),oBoton1:refresh(),Cobros()) ...
by José Camilo
Wed Feb 14, 2024 3:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio de imagen a 1 boton
Replies: 10
Views: 289

Cambio de imagen a 1 boton

Buenas noches. necesito que al oprimir un boton de una ButtonBar este cambie su archivo bmp. esta declarado asi: DEFINE BUTTON oBoton1 OF oBar FILE "Efectivo.bmp" ; ACTION Cobros() ; MESSAGE "Mantenimiento de Cobros"; PROMPT "Cobros" oBoton1:lTransparent = .t. ...
by José Camilo
Wed Feb 14, 2024 1:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio de imagen a 1 boton
Replies: 10
Views: 289

Re: Small buttonbar at x,y

Perhaps I resolve with

oBar:Move( oBrw:nbottom+1, oBrw:nLeft )

when I change from one menu to another there is a flashing throughout the dialog and the xbrowse watch this video

Image
by Silvio.Falconi
Wed Dec 06, 2023 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small buttonbar at x,y
Replies: 7
Views: 747

Small buttonbar at x,y

... developed by Cristobal Navarro but the buttonbar must be insert down a xbrowse so I use Newat() method barchange.prg with Newat() Method of oBar // developed by Cristobal Navarro#include 'fivewin.ch'#include 'xbrowse.ch'#include "constant.ch"Function test()   local ...
by Silvio.Falconi
Wed Dec 06, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small buttonbar at x,y
Replies: 7
Views: 747

Re: Transparent area becomes black when use BUTTON...ADJUST

... created the button with this command DEFINE BUTTON oBtnWhatsnew RESOURCE "whatsnewg","","","whatsnew"   OF oBar ADJUST The image is alpha-blend image. If I don't use ADJUST clause, the image is not resized but transparent area displays ok. If I use ADJUST ...
by nageswaragunupudi
Tue Dec 05, 2023 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 874

Transparent area becomes black when use BUTTON...ADJUST

... created the button with this command DEFINE BUTTON oBtnWhatsnew RESOURCE "whatsnewg","","","whatsnew"   OF oBar ADJUST The image is alpha-blend image. If I don't use ADJUST clause, the image is not resized but transparent area displays ok. If I use ADJUST ...
by hua
Tue Dec 05, 2023 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 874

Re: Rpreview Buttonbar

Function MyButtonBarPreview( oPreview, oWnd) local oBar DEFINE BUTTONBAR oBar OF oWnd SIZE 64, 64 return nil Please add the line oPreview:oBar := oBar at the end of this function. Example code: function MyBar( oPrev, oWnd )   local oBar   DEFINE ...
by Silvio.Falconi
Wed Nov 15, 2023 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview Buttonbar
Replies: 7
Views: 461

Re: Rpreview Buttonbar

Function MyButtonBarPreview( oPreview, oWnd) local oBar DEFINE BUTTONBAR oBar OF oWnd SIZE 64, 64 return nil Please add the line oPreview:oBar := oBar at the end of this function. Example code: function MyBar( oPrev, oWnd )   local ...
by nageswaragunupudi
Wed Nov 15, 2023 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview Buttonbar
Replies: 7
Views: 461

Re: Rpreview Buttonbar

... := { |oPreview, oWnd| MyButtonBarPreview( oPreview, oWnd) } test() return nil Function MyButtonBarPreview( oPreview, oWnd) local oBar DEFINE BUTTONBAR oBar OF oWnd SIZE 64, 64 return nil
by Silvio.Falconi
Tue Nov 14, 2023 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview Buttonbar
Replies: 7
Views: 461

Re: TBAR CON BRUSH DE FONDO

oi karinha boa tarde tudo bem // \SAMPLES\BARBRUSH.PRG #include "Fivewin.ch" STATIC oWnd FUNCTION Main() LOCAL oBar, oBtn1, oBrush DEFINE BRUSH oBrush COLOR CLR_HBLUE <---- ACA CON FILE "IMAGEN.JPG" DEFINE BRUSH oBrush FILE "IMAGEN.JPG" DEFINE WINDOW ...
by claudio.leiva
Thu Nov 02, 2023 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TBAR CON BRUSH DE FONDO
Replies: 11
Views: 650

Re: Disabled buttons at oBar not greyed out after using FWH1912

hua wrote:Thanks for the reply Karinha. Are you linking using FWH1912?


FWH1905.

Did you test the example as I sent it? Show a picture of what it looks like.

¿Probaste el ejemplo tal como lo envié? Muestre una imagen de cómo se ve.

Gracias, thanks.

Reagrds, saludos.
by karinha
Fri Sep 15, 2023 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabled buttons at oBar not greyed out after using FWH1912
Replies: 17
Views: 1663

Re: Disabled buttons at oBar not greyed out after using FWH1912

Hi Rao,
Yes, using GDIP clause will always make it work but the image it produce looses the sharpness, becomes a bit blurry

Image
by hua
Fri Sep 15, 2023 3:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabled buttons at oBar not greyed out after using FWH1912
Replies: 17
Views: 1663
Next

Return to advanced search