Search found 352 matches

by ADutheil
Tue Jun 23, 2020 3:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 537
Views: 89632

Re: Introducing FiveTech's fivedit

Just download the last version and it won't load. ====================================================================================== Descripción del Error : Error BASE/1004 Message not found: TPANEL:SETREADONLY ======================================================================================
by ADutheil
Mon May 25, 2020 3:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Thank to Mr. Rao
Replies: 8
Views: 1278

Re: Thank to Mr. Rao

+1
I use it a lot to browse objects when I can't remember the name of some data or method. It's a priceless help.
by ADutheil
Mon May 11, 2020 12:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: multi-dimensional array
Replies: 3
Views: 603

Re: multi-dimensional array

aEval would be safer. Think of aArray := { 1, 2, { 1, 2, 3 }, 4}
by ADutheil
Sun May 10, 2020 2:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Class question
Replies: 4
Views: 455

Re: Report Class question

As of now, we can not print two reports on a single page. I did it more than 20 years ago using FW 16 bits. I remember it was a bit tricky, using the DelColumn and AddColumn methods with bPostEnd block but it worked flawlessly. For a reason I could not discover the upgrade to FWH broke my code. As ...
by ADutheil
Fri Apr 24, 2020 11:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: strange error for calculating days !!Resolved!!
Replies: 3
Views: 412

Re: strange error for calculating days

What happens if you change the function to: Function GetDayofPeriod(dDateFrom,dDateTo,aListini)      Local n  //reset days  For n=1 to len(aListini)   aListIni[n][5]:=0  next For n=1 to len(aListini)     IF d >= aListini[n][1] .and. d <= aListini[n][2]        alistini[n][5] := ( aListini[n][2] - aLi...
by ADutheil
Mon Mar 30, 2020 2:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OT: How are we doing ?
Replies: 24
Views: 3491

Re: OT: How are we doing ?

I live in Brazil in the State of Bahia which is slightly bigger than France with 15.5 million inhabitant. As today the State records 156 confirmed cases of the new coronavirus, which represents 3.8% of the total cases reported in the state. So far, 1388 cases have been ruled out and one death has be...
by ADutheil
Mon Feb 24, 2020 1:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Order an array
Replies: 2
Views: 426

Re: Order an array

Try something like this: ASORT( aData,,, { |x,y| x[3] < y[3] } )
by ADutheil
Fri Nov 08, 2019 6:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse setget
Replies: 5
Views: 508

Re: XBrowse setget

It works as expected now. Thanks a lot.
by ADutheil
Fri Nov 08, 2019 1:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse setget
Replies: 5
Views: 508

Re: XBrowse setget

I tried the following: oBrw1:aCols[ 4 ]:SetCheck( ) // works OK When I add the folowing line the system crashes while opening the browse. oBrw1:aCols[ 4 ]:bOnSave := { || msgInfo( "Hi" ) } The error log is: Application Internal Error - D:\xProjetos\VavAta\VAVATA.EXE Terminated at: 2019-11-...
by ADutheil
Thu Nov 07, 2019 2:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse setget
Replies: 5
Views: 508

Re: XBrowse setget

Thanks for the answer. I'll see what I can achieve with it.
by ADutheil
Thu Nov 07, 2019 10:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse setget
Replies: 5
Views: 508

XBrowse setget

Hi,

I'd like to know if it's possible to trigger an action when a setget field is changed in a XBrowse.

Tks
by ADutheil
Mon Oct 28, 2019 1:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Excel
Replies: 4
Views: 651

Re: Question about Excel

I don't think there's an online complete guide for FW/Harbour. My advise is you search VBA + Excel and adapt your findings to Hb/Fw. That's the way I did. If you have other specific questions about this topic I may be able to answer because I've done many OLE routines. Here's a sample of function I ...
by ADutheil
Mon Oct 28, 2019 9:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Excel
Replies: 4
Views: 651

Re: Question about Excel

oSheet:Range( oSheet:Cells( 1, 1 ), oSheet:Cells( 1, 2 ) ):merge()
by ADutheil
Mon Sep 16, 2019 10:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Minutes calculation- RESOLVED
Replies: 7
Views: 790

Re: Minutes calculation

try Val(Left(cTimeEnd,2)) * 60 + val( Right(cTimeEnd,2)) - ( Val(Left(cTimeStart,2)) * 60 + val( Right(cTimeStart,2)) )