Search found 68 matches: bsetup

Return to advanced search

Re: New FTDN July/Julio 2024 (FWH 24.07)

... FWH para conectar mediante ADO, Dolphin (si la libreria es enlazada) o FWMariaDB. Por defecto FWMAriaDB. * XBrowse.prg: Nuevo quinto parámetro bSetup en el método EditSource(), evaluado con oRec, oBrw.
by Antonio Linares
Thu Aug 08, 2024 11:50 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2024 (FWH 24.07)
Replies: 8
Views: 5541

New FTDN July/Julio 2024 (FWH 24.07)

... cLib can be ADO,DLP,FWH for connecting through ADO, Dolphin (if the library is linked) or FWMarilib. Defaults to FWH * XBrowse.prg: New 5th param bSetup in method EditSource(), evaluated with oRec, oBrw
by Antonio Linares
Mon Aug 05, 2024 4:14 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2024 (FWH 24.07)
Replies: 8
Views: 5541

Re: bsetup of Report

https://i.postimg.cc/v8Sy0s7v/ffff.png this last result but i still have problems 1) the stripes don't have the pajama effect, they are all grey 2) does not recognize "Page : "+Str(oRep:nPage,3) 3) the title line needs to be narrower oBrw:Report( "Stampa elenco",...
by Silvio.Falconi
Wed Apr 26, 2023 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bsetup of Report
Replies: 1
Views: 193

bsetup of Report

... I would simply like to have simple and not double lines, a test on the left and the date and page number/pages on the right bSetUp := < |oRep, Brw, n | if n == 2 oRep:bSkip := {|| (IF(!oDbf:Eof(),oDbf:Skip(),nil),; IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow ...
by Silvio.Falconi
Wed Apr 26, 2023 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bsetup of Report
Replies: 1
Views: 193

Re: Help for xbrowse report bSetUp

... bskip it make right because I made If empty(aColumns) aColsReport:= oBrw:aCols else aColsReport := aColumns Endif oBrw:Report( cTitle, .t., .t.,bSetUp , , , aColsReport ) and the report behaves the same check both selected and unselected columns, selected and unselected rows the problem is in ...
by Silvio.Falconi
Sun Mar 19, 2023 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 481

Re: Help for xbrowse report bSetUp

Silvio: En el metodo Report de Xbrowse, oRep:bSkip lo sobreescribe con esto: if Len( ::aSelected ) > If( ::lMultiSelect, 1, 0 )       Eval( ::bBookMark, ::aSelected[ 1 ] )       nRows        := Len( ::...
by cmsoft
Sun Mar 19, 2023 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 481

Re: Help for xbrowse report bSetUp

If I change with this : bSetUp   := < |oRep, Brw, n |   bImage := {|oRep| oRep:SayBitmap(0.5, 7, cLogo)}   bStart := {|oRep| oRep:bStartPage := bImage}   bInit := {|| oBrw:oDbf:GoTop()}  ...
by Silvio.Falconi
Sat Mar 18, 2023 10:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 481

Help for xbrowse report bSetUp

I have to use a particular bsetup for my printouts when I compile it does not accept the line that I put in bold how can I fix it? bSetUp := < |oRep, Brw, n | bImage := {|oRep| oRep:SayBitmap(0.5, 7, cLogo)} bStart := {|oRep| oRep:bStartPage ...
by Silvio.Falconi
Sat Mar 18, 2023 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 481

xbrowse report setup

to make a report I use easy oBrw:Report("Stampa elenco", nil, nil, bSetup) where bSetup is bSetUp   := < |oRep, Brw, n |      if n == 2         oRep:CellView()         return nil      endif      return 2      > If I wish add fonts ? If ...
by Silvio.Falconi
Thu Mar 02, 2023 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse report setup
Replies: 0
Views: 333

Re: xbrowse report & Preview style

Dear Silvio, For the first question: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15578&start=0&hilit=xbrowse+preview+bsetup Antonio, I Tried with local bSetUp := {|oRep| oRep:CellView()} @ 100,10 BUTTON oBtnPrint PROMPT "Stampa" of oDlg; SIZE 80,22 ; ACTION oBrw:Report( ...
by Silvio.Falconi
Fri Nov 18, 2022 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse report & Preview style
Replies: 5
Views: 545

Re: xBrowse function

... clear and readable I use a patcher. This is the part how we get a HARBOUR hash value into the Webview2. <?prg return hb_jsonEncode( hTmp[ 'BSETUP' ] , .T. )?> Best regards,, Otto [code]<form class="row g-3 border p-3 shadow-lg">       $-> TEXTAREA : id=paste; ...
by Otto
Mon Aug 22, 2022 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 825

Re: xBrowse function

bSetUp XBrowse( "STATES.DBF", "States in USA", .f. ;         { |oBrw| oBrw:nMarqeeStyle := 1 } )  bSelect cSelected := nilXBrowse( "STATES.DBF", ...
by nageswaragunupudi
Sun Aug 21, 2022 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 825

Re: xBrowse function

XEval( bSetUp, oBrw ) function XEval is in \source\function\valblank.prg retval := XEval( bBlock, params, ... ) is equivalent to if ValType( bBlock ) == "B"   retval := Eval( bBlock, params,...)endif ...
by nageswaragunupudi
Fri Aug 19, 2022 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 825

xBrowse function

Dear Mr. Rao, can you please tell me where I find function: XEval( bSetUp, oBrw ) Can you please post some sample code how these codeblocks could look like: bSetUp bSelect bValid Best regards, Otto XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, ...
by Otto
Wed Aug 17, 2022 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 825
Next

Return to advanced search