FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour no sizing the column of xbrowse
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
no sizing the column of xbrowse
Posted: Wed May 11, 2022 12:05 PM

:lAllowRowSizing := .f.
:lAllowColSwapping := .f.
:lAllowColHiding := .f.

I use these parameters
but the user can move the column .... why ?

why not exit :lAllowRowSizing ?

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: 6984
Joined: Fri Oct 07, 2005 07:07 PM
Re: no sizing the column of xbrowse
Posted: Wed May 11, 2022 07:22 PM

Hello Silvio,
maybe you look for:

oBrw:lAllowColSwapping := .f.

Best regards,
Otto

Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: no sizing the column of xbrowse
Posted: Thu May 12, 2022 07:20 AM
Otto wrote:Hello Silvio,
maybe you look for:

oBrw:lAllowColSwapping := .f.

Best regards,
Otto



Please I wrote
on my config I have allready

WITH OBJECT oBrw
:nRowHeight := 27
:nClrBorder := CLR_GRAY
:lDrawBorder := .t.
* :nColorBox := CLR_HRED
:lHscroll := .f.
:lVscroll := .f.
:l2007 := .f.
:l2015 := .f.
:lAllowRowSizing := .f.
:lAllowColSwapping := .f.
:lAllowColHiding := .f.

:lRecordSelector := .f.
:nRowDividerStyle := LINESTYLE_LIGHTGRAY
:nColDividerStyle := LINESTYLE_LIGHTGRAY
:SetGroupHeader( "Numeri Estratti ", 1, 6 )
:SetGroupHeader( if( nRadio == 1, "Somme estratti", "Distanze cilometriche" ), 7, 16 )
:nMarqueeStyle := MARQSTYLE_NOMARQUEE
:CreateFromCode()
End


But I have this problem





the final user must not resizing the columns
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: no sizing the column of xbrowse
Posted: Thu May 12, 2022 08:03 AM

You need for cols

  :lAllowSizings       := .f.
Marc Venken

Using: FWH 23.08 with Harbour

Continue the discussion