FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour problem with xbrowse show adata
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
problem with xbrowse show adata
Posted: Mon Oct 07, 2024 12:23 PM
xbrowse show wrong measures "..." why ?

The measurements are expressed in millimetres 3 digits + 2 decimal places


Code (fw): Select all Collapse
 @ 0, 0 XBROWSE  oBrw OF oFld:adialogs[6] ;
        COLUMNS 1,2,3;
        HEADERS "Descrizione","X","Y";
        PICTURES nil,"999.99" ,"999.99";
        COLSIZES 220,110,110;
        ARRAY  aData ;
        SIZE 200,200 PIXEL NOBORDER  FASTEDIT
where is the error ?
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: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: problem with xbrowse show adata
Posted: Mon Oct 07, 2024 01:17 PM
Code (fw): Select all Collapse
        COLSIZES 220,110,110;
Error: You specified column sizes less than required to display the full value.
Solutions:
1) Specify adequate width.
or
2) The Best way. Do not specify COLSIZES and let xbrowse calculate the width required
Regards



G. N. Rao.

Hyderabad, India

Continue the discussion