error on xbrowse footer - RESOLVED! -
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
error on xbrowse footer - RESOLVED! -
on xbrowse I set
WITH OBJECT oBrowse:aCols[ 11]
:nFooterType := AGGR_SUM
:cEditPicture := '@ €99,999.99'
END
also I use :nDataStrAlign := AL_RIGHT I not see the symbol of euro
while on another procedure ( same source code) compiled with oldest fwh I see this ( align on right and euro symbol)
any solution ?
Last edited by Silvio.Falconi on Sun May 03, 2020 4:12 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: error on xbrowse footer
Try,
Code: Select all
:cEditPicture := '€99,999.99'
João Santos - São Paulo - Brasil
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
I allready tested with
WITH OBJECT oBrowse:aCols[ 11]
:nFooterType := AGGR_SUM
:cEditPicture := "€ 999,999.99"
:nDataStrAlign := AL_RIGHT
END
the xbrowse is
@ 120, 02 XBROWSE oBrowse OF oDlg ;
COLUMNS 1,2,3,4,5,6,7,8,9,10,11;
HEADERS "Ico","Tipo","Servizio","Q.tà","Costo","Tot p q.tà","Dal","al","Giorni","Sconto","Totale" ;
COLSIZES 55, 25,130,50,90,90,140,140,50,90,120 ;
PICTURES nil, nil,"@!","9999","€ 999,999.99","€ 999,999.99", "dd-mmmm-yyyy","dd-mmmm-yyyy","999","€ 999,999.99","€ 999,999.99";
ARRAY aData ;
SIZE 100,82 PIXEL STYLE FLAT NOBORDER
WITH OBJECT oBrowse:aCols[ 11]
:nFooterType := AGGR_SUM
:cEditPicture := "€ 999,999.99"
:nDataStrAlign := AL_RIGHT
END
the xbrowse is
@ 120, 02 XBROWSE oBrowse OF oDlg ;
COLUMNS 1,2,3,4,5,6,7,8,9,10,11;
HEADERS "Ico","Tipo","Servizio","Q.tà","Costo","Tot p q.tà","Dal","al","Giorni","Sconto","Totale" ;
COLSIZES 55, 25,130,50,90,90,140,140,50,90,120 ;
PICTURES nil, nil,"@!","9999","€ 999,999.99","€ 999,999.99", "dd-mmmm-yyyy","dd-mmmm-yyyy","999","€ 999,999.99","€ 999,999.99";
ARRAY aData ;
SIZE 100,82 PIXEL STYLE FLAT NOBORDER
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- FranciscoA
- Posts: 1964
- Joined: Fri Jul 18, 2008 1:24 am
- Location: Chinandega, Nicaragua, C.A.
Re: error on xbrowse footer
Try:
Code: Select all
:nFootStrAlign := 1
Francisco J. Alegría P.
Chinandega, Nicaragua.
Fwxh1204-MySql-TMySql
Chinandega, Nicaragua.
Fwxh1204-MySql-TMySql
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
..
Last edited by Silvio.Falconi on Thu Apr 30, 2020 8:30 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
--
Last edited by Silvio.Falconi on Thu Apr 30, 2020 8:31 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
..
Last edited by Silvio.Falconi on Thu Apr 30, 2020 8:31 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Marc Venken
- Posts: 727
- Joined: Tue Jun 14, 2016 7:51 am
Re: error on xbrowse footer
Maybe :
xbrNumFormat( "E", .t. ) // "E" for European, "A" for American and others
// .t. for showing thousand separators
xbrNumFormat( "E", .t. ) // "E" for European, "A" for American and others
// .t. for showing thousand separators
Marc Venken
Using: FWH 20.08 with Harbour
Using: FWH 20.08 with Harbour
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
but why the same source code on another procedure run ok ?Marc Venken wrote:Maybe :
xbrNumFormat( "E", .t. ) // "E" for European, "A" for American and others
// .t. for showing thousand separators
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: error on xbrowse footer
allready tested not run xbrNumFormat( "E", .t. )
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: error on xbrowse footer
Hello Silvio,
I read that this summer, it is necessary to reserve online for the umbrellas on the beaches.
You are only allowed to enter beaches with reservation cards.
Do you already have software for this?
At the moment, it looks that you must place orders in restaurants with your smartphone after coronavirus restart.
We have nearly ready our ordering system made with mod harbour.
https://www.modharbour.club/mh_bestells ... aurant.prg
Best regards
Otto
I read that this summer, it is necessary to reserve online for the umbrellas on the beaches.
You are only allowed to enter beaches with reservation cards.
Do you already have software for this?
At the moment, it looks that you must place orders in restaurants with your smartphone after coronavirus restart.
We have nearly ready our ordering system made with mod harbour.
https://www.modharbour.club/mh_bestells ... aurant.prg
Best regards
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: error on xbrowse footer
Dear Otto, I obtain this errorOtto wrote:
.../...
At the moment, it looks that you must place orders in restaurants with your smartphone after coronavirus restart.
We have nearly ready our ordering system made with mod harbour.
https://www.modharbour.club/mh_bestells ... aurant.prg
Best regards
Otto
Error: Argument error
operation: +
[ 1] = C C:/xampp/htdocs/mh_bestellservice/orders/
[ 2] = U nil
called from: CHARACTER:__OPPLUS, line: 0
called from: pcode.hrb, MAIN, line: 85
called from: HB_HRBDO, line: 0
called from: ..\apache.prg, EXECUTE, line: 143
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: error on xbrowse footer
Dear Cristobal,
thanks for your help. which browser do you use.
The link should actually open this page:
Best regards,
Otto
thanks for your help. which browser do you use.
The link should actually open this page:
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: error on xbrowse footer
Otto, I tested with Chrome and Firefox, and Edge, same error
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: error on xbrowse footer
Dear Cristobal,
are you clicking on this link:
https://www.modharbour.club/mh_bestells ... aurant.prg
Best regards
Otto
are you clicking on this link:
https://www.modharbour.club/mh_bestells ... aurant.prg
Best regards
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************