Search found 158 matches: ogrid

Return to advanced search

Re: REQUEST HB_CODEPAGE_xxx and show possible Codepage

... my FUNCTION ChangeCodePage() possible Syntax ChangeCodePage( cPathcFile, cAlias, oBrw ) ChangeCodePage( cPathcFile, , oBrw ) ChangeCodePage( , , ::oGrid ) ChangeCodePage() later use (not need when pass cPathcFile.)   USE (cDBF) EXCLUSIVE CODEPAGE SP_cWinCodepage() --- Sample use ...
by Jimmy
Tue Aug 15, 2023 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: REQUEST HB_CODEPAGE_xxx and show possible Codepage
Replies: 3
Views: 207

Xbrowse color group

I have the xbrowse with oApp():oGrid:bClrStd := { || { CLR_BLACK, If( oApp():oGrid:KeyNo % 2 == 0, RGB(160,225,255), CLR_WHITE ) } } this is the pijama effect I need to colorize all columns but in different groups I have these groups :SetGroupHeader( ...
by Silvio.Falconi
Sat Apr 02, 2022 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse color group
Replies: 2
Views: 242

load a image into xbrowse

cDirImages := "bitmaps\simboli" WITH OBJECT oApp:oGrid WITH OBJECT oApp():oGrid:aCols[6] :bStrImage := { || FIELD->E1 } :aImgRect := { nil, nil, -40, nil } END but FIELD->E1 is a number and I have n that folder images name as 1.png,2.png.... ...
by Silvio.Falconi
Thu Mar 10, 2022 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: load a image into xbrowse
Replies: 4
Views: 504

datatype

... ) I load the types of the database columns I am going to save the data type in an array aTipos [ n ]:= oGrid:aCols[ n ]:cDataType however, it often happens that a text is displayed in a column but the field in the archive is numeric but xbrowse it returns ...
by Silvio.Falconi
Mon Feb 07, 2022 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: datatype
Replies: 1
Views: 303

Re: To Nages Problem with Tdatabase and new DAtepick

... ntotale OF oDlgMod SIZE 60, 12 ; PIXEL PICTURE '@ €99,999.99' RIGHT FONT oFont UPDATE ... ACTIVATE DIALOG oDlgMod ; ON INIT (DlgCenter( oDlgMod, oGrid ), aGet[5]:aItems[2]:disable()) If oDlgMod:nresult == IDOK if msgYesNo( i18n("¿ save ?") ) oTariffa:costo := nCosto oTariffa:sconto ...
by Silvio.Falconi
Tue May 11, 2021 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1737

Re: Xbrowse enhancemend for colums setup/use

... it no one seems to like it release for a oldest xbrowse sample :aCols2Hide := {1,2,3,4,5,6,13,14,15,16} :aDefaultCols := {1,2,3,4,5,6,13,14,15,16} oGrid:aDefaultCols :=oGrid:GetDisplayCols() oGrid:SetUserCols()    DATA aCols2Hide AS ARRAY INIT Array(0)   DATA aDefaultCols  INIT ARRAY( ...
by Silvio.Falconi
Thu Feb 18, 2021 11:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse enhancemend for colums setup/use
Replies: 6
Views: 538

Secure an AJAX request

... On AJAX request we send a string - encrypted with cUUID - containing seconds (). code = {{hb_jsonencode ( encrypedtime ())}}; ogrid = $ ('# example'). DataTable ({ "ajax": { "url": "landingpage.prg", "type": "POST", data: {username: ...
by Otto
Thu Nov 12, 2020 6:00 pm
 
Forum: mod_harbour
Topic: Secure an AJAX request
Replies: 2
Views: 429

Re: FWH 2006: XBrowse : Own built-in Buttonbar

Yes Sorry, but I tried with no success oApp():oGrid:bOnAdjust := <|| local oBtn,oCbx1 local cFilter1:= val(alistini[1][1]) local nrow:= 05 local ncol:= 05 @ nrow,ncol COMBOBOX oCbx1 VAR cFilter1 ITEMS ArrTranspose( aListini )[ 1] ; SIZE 120,400 ...
by Silvio.Falconi
Mon Jul 20, 2020 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 11
Views: 1891

xbrowse Report from array ( images field logic)

As you can see here I have a xbrowse and I make oGrid:Report()

Image

the images are printed but the 3th column not print the image but .t. or .f.

How I can to print images as xbrowse ?
by Silvio.Falconi
Fri May 01, 2020 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Report from array ( images field logic)
Replies: 3
Views: 400

Color del Footer en Xbrowse

... haciendo un browse de ingresos/gastos y en las líneas del browse pinto el color del contenido en color distinto para ingresos y gastos. oApp():oGrid:bClrRowFocus := { || { iif( AP->ApTipo == "I", oApp():cClrIng, oApp():cClrGas ), oApp():nClrHL } } oApp():oGrid:bClrSelFocus := { ...
by José Luis Sánchez
Wed Oct 16, 2019 8:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color del Footer en Xbrowse
Replies: 2
Views: 542

Re: xbrowse too slow

... made with .nor. 4 On this oApp (): oDlg on the left I create an explorerbar control oExBar for a menu and on the right the xbrowse control oApp():oGrid and under xbrowse I insert a tab control. oApp():otab What code are you talking about? Then for the slowest code, you have to either decide to ...
by Silvio.Falconi
Sat Sep 21, 2019 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse too slow
Replies: 30
Views: 4252

strange error on report

I call report with ACTION oApp:oGrid:Report() oGrid is a xbrowse and I have this https://i.postimg.cc/kXSHMnJn/AERROR-REPORT.jpg the problem is that the first 4 records have the ELATTIVO LOGIC field = .T. as you can see here ...
by Silvio.Falconi
Sun May 26, 2019 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error on report
Replies: 2
Views: 381

Re: Problem with xbrowse with tdatabase

on six column I have WITH OBJECT oApp():oGrid:aCols[6] :AddResource("BTN_PNG_LOCKSI") * :AddResource("BTN_PNG_LOCKNO") :bBmpData := { || IIF( oElementi:ELLOCK,1,) } :bEditValue := "" END but now I see also the value ...
by Silvio.Falconi
Sat May 04, 2019 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xbrowse with tdatabase - Resolved
Replies: 8
Views: 745

Re: Opaque controls

perhaps... oGRid is a xbrowse allready open Local hBmp,hBlur oApp:oGrid:GetDC() hBmp := MakeBkBmp( oApp:oGrid:hWnd, oApp:oGrid:hDC ) hBlur := Blur( hBmp, 3 ) PalBmpDraw( oApp:oGrid:hDC, 0, 0, hBlur ) DEFINE DIALOG oDlg DEFINE DIALOG ...
by Silvio.Falconi
Tue Apr 16, 2019 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Opaque controls
Replies: 5
Views: 711

ERROR WITH XBROWSE TOExcel method

I have ACTION oApp():oGrid:ToExcel() ; https://i.postimg.cc/28hPQhqm/fffffffff.png the error Application===========   Path and name: C:\Work\Prg\Bikini\main.Exe (32 bits)   Size: 4,847,616 ...
by Silvio.Falconi
Fri Apr 05, 2019 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR WITH XBROWSE TOExcel method
Replies: 5
Views: 680
Next

Return to advanced search