Search found 4 matches: tmeter

Searched query: tmeter

by Antonio Linares
Mon Nov 14, 2022 11:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 411

Re: Problem with tmeter

great!

well done :-)
by Silvio.Falconi
Mon Nov 14, 2022 11:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 411

Re: Problem with tmeter

Dear Silvio,

Better use a progress bar as it uses Windows animation, themes, etc

Please review samples\win32.prg

Antonio perhaps I resolved

I change only

oProgress:nTotal:=len(adata)

with

oProgress:settotal(len(adata))

and run ok I not Know why

https://i.postimg.cc/v897DFvk/L.gif
by Antonio Linares
Mon Nov 14, 2022 10:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 411

Re: Problem with tmeter

Dear Silvio,

Better use a progress bar as it uses Windows animation, themes, etc

Please review samples\win32.prg
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 411

Problem with tmeter

... cdbfPath)
oStorico:= TDatabase():Open( , cdbfPath+"Storico", "DBFCDX", .T. )

// XBROWSER oStorico SHOW RECID TITLE "TRACE STORICO"

Ut_ResetMeter( oProgress, npos )
oProgress:ntotal:= len(aData)

aNew := {}
AEval( aData, { |a| If( a[ 1 ] > dMaxDate, AAdd( aNew, a ), ) } )
oStorico:FW ...