FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Xbrowser() setting not found
Posts: 1487
Joined: Tue Jun 14, 2016 07:51 AM
Xbrowser() setting not found
Posted: Wed Aug 30, 2023 10:31 PM

I was looking for the setting to deactivate the toolbar in xbrowser()

and to put the position coordinates.

I want to have a xbrowser() as small as possible at a specific location.

use customer

XBROWSER "CUSTOMER" COLUMNS "STATE", "AGE", "MARRIED", "SALARY" SETUP ( ;

  oBrw:lHScroll         := .f.,;

  oBrw:lVScroll         := .f.,;

  oBrw:lToolbar         := .f.,;  // not ok

  oBrw:lFullGridClr     := .t.,;

  oBrw:lIncrFilter      := .t.,;

  oBrw:lSeekWild        := .t.,;

  oBrw:lTabLikeExcel    := .t.,;

  oBrw:lColDividerComplete  := .t.,;

  oBrw:lRecordSelector  := .f.,;

  oBrw:lDrawBorder      := .t.;

  )
Marc Venken

Using: FWH 23.08 with Harbour
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: Xbrowser() setting not found
Posted: Thu Aug 31, 2023 02:45 AM
Code (fw): Select all Collapse
oBrw:lToolbar := .f.,; // not ok
There is no such setting in XBrowse.
XBrowser uses bottonbar and we did not provide an option to hide the buttonbar.
You may need to write your own function or modify the xbrowser.prg
Regards



G. N. Rao.

Hyderabad, India

Continue the discussion