FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour error on xbrowse footer - RESOLVED! -
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
error on xbrowse footer - RESOLVED! -
Posted: Wed Apr 22, 2020 11:36 PM


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 ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: error on xbrowse footer
Posted: Thu Apr 23, 2020 12:17 AM
Try,

Code (fw): Select all Collapse
:cEditPicture := '€99,999.99'
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Thu Apr 23, 2020 12:47 AM
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
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 2170
Joined: Fri Jul 18, 2008 01:24 AM
Re: error on xbrowse footer
Posted: Thu Apr 23, 2020 03:15 PM
Try:
Code (fw): Select all Collapse
 :nFootStrAlign := 1
Francisco J. Alegría P.

Chinandega, Nicaragua.



Fwxh-MySql-TMySql
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Thu Apr 23, 2020 10:38 PM

..

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Sat Apr 25, 2020 03:50 PM

--

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Sat Apr 25, 2020 04:00 PM

..

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 1487
Joined: Tue Jun 14, 2016 07:51 AM
Re: error on xbrowse footer
Posted: Sat Apr 25, 2020 07:34 PM

Maybe :

xbrNumFormat( "E", .t. ) // "E" for European, "A" for American and others
// .t. for showing thousand separators

Marc Venken

Using: FWH 23.08 with Harbour
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Sat Apr 25, 2020 08:43 PM
Marc Venken wrote:Maybe :

xbrNumFormat( "E", .t. ) // "E" for European, "A" for American and others
// .t. for showing thousand separators


but why the same source code on another procedure run ok ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: error on xbrowse footer
Posted: Sat Apr 25, 2020 08:47 PM

allready tested not run xbrNumFormat( "E", .t. )

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: error on xbrowse footer
Posted: Sun Apr 26, 2020 09:08 AM
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_bestellservice/restaurant.prg

Best regards
Otto
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: error on xbrowse footer
Posted: Sun Apr 26, 2020 02:49 PM
Otto 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_bestellservice/restaurant.prg

Best regards
Otto


Dear Otto, I obtain this error

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
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: error on xbrowse footer
Posted: Sun Apr 26, 2020 03:19 PM
Dear Cristobal,
thanks for your help. which browser do you use.
The link should actually open this page:
Best regards,
Otto

Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: error on xbrowse footer
Posted: Sun Apr 26, 2020 03:29 PM

Otto, I tested with Chrome and Firefox, and Edge, same error

Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: error on xbrowse footer
Posted: Sun Apr 26, 2020 03:37 PM
Dear Cristobal,
are you clicking on this link:
https://www.modharbour.club/mh_bestellservice/restaurant.prg

Best regards
Otto