Search found 7 matches

by Eric.Developer
Wed May 30, 2018 4:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: ArrayIncrFilter
Replies: 12
Views: 1840

Re: ArrayIncrFilter

You wrote little information. What information are you filtering on the browse? How did you define the browse lines? addRow or SetArray ... if I'm not mistaken, you can not restore the rows because they have been removed (you can easily check this by debugging your system and browse instance). Then ...
by Eric.Developer
Mon May 28, 2018 11:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ArrayIncrFilter
Replies: 12
Views: 1840

Re: ArrayIncrFilter

Did you try this?

Code: Select all

oBrw:ArrayIncrFilter('')
then try this, but only for temporary testing:

Code: Select all

oBrw:lIncrFilter:=.f.
ORibeiro wrote:How can I cancel the filter using ArrayIncrFilter and restore the standard view of xBrowse?
by Eric.Developer
Tue May 15, 2018 6:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: DBF DBASE3
Replies: 4
Views: 626

Re: DBF DBASE3

I copied

thanks
by Eric.Developer
Tue May 15, 2018 4:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: DBF DBASE3
Replies: 4
Views: 626

Re: DBF DBASE3

I would like some examples of DBF files DBase version 2 or 3 (compressed in zip or rar)
by Eric.Developer
Mon May 14, 2018 8:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF DBASE3
Replies: 4
Views: 626

DBF DBASE3

hi,
Does anyone have DBF files from DBase3 version? (zip/rar) for testing
by Eric.Developer
Wed Aug 23, 2017 8:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: TFont:nOrientation
Replies: 3
Views: 480

Re: TFont:nOrientation

Now it works, thank you Enrico.

note: The names of some properties and parameters are changed:

Code: Select all

METHOD New( 1-cFaceName, 2-nWidth, 3-nHeight, 4-lFromUser, 5-lBold, 6-nEscapement, 7-nOrientation, ...) 
by Eric.Developer
Tue Aug 22, 2017 10:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TFont:nOrientation
Replies: 3
Views: 480

TFont:nOrientation

Hello everyone, In printing, the text rotation is not changing:   nAngle:=90    oFont1:= TFont():New('Courier New',,150,.F.,,,nAngle)    oFont2:= TFont():New('Courier New',,150,.F.,,,nAngle)        msginfo(oFont1:nOrientation) // SHOW 90        PRINTER oPrinter FROM USER PREVIEW NAME "teste&quo...