Page 1 of 1

Documentation

Posted: Sun Mar 22, 2020 10:16 am
by MarcoBoschi
Hi,
please someone could remember me where I can find fivewin documentation?
Thanks

Re: Documentation

Posted: Sun Mar 22, 2020 10:30 am
by stefano
Ciao

io uso: https://wiki.fivetechsoft.com/doku.php

saluti e auguri per questo momento, io in quarantena per un semplice raffreddore (pazienza passerĂ )

Stefano da Trento

Re: Documentation

Posted: Sun Mar 22, 2020 10:32 am
by MarcoBoschi
Grazie e Auguri allora!

Re: Documentation

Posted: Sun Mar 22, 2020 7:38 pm
by Otto
Hello,

I added the link also to "listings of mod harbour websites"

https://winhotel.space/modharbour/modharbouronline.prg

Best regards
Otto

Re: Documentation

Posted: Mon Mar 23, 2020 3:16 pm
by Silvio.Falconi
Otto wrote:Hello,

I added the link also to "listings of mod harbour websites"

https://winhotel.space/modharbour/modharbouronline.prg

Best regards
Otto
why on allmessages you insert mod_harbour ?

I think we must respect the argument of the topic thanks

Marco ask an Important question
Marco are searching the documentatio of a specific function there is not on doku of fivewin

Re: Documentation

Posted: Wed Mar 25, 2020 5:14 pm
by MarcoBoschi
Hi,
I'm looking for documentation of this function
FW_DbfToArray

Bye

Re: Documentation

Posted: Wed Mar 25, 2020 7:28 pm
by mgsoft
Marco,

FW_DbfToArray ( cFieldList, bFor, bWhile, nNext, nRec, lRest, aData )

cFieldList should be a character string containing comma delimited names of fields.

Usage: aData := (cAlias)->( FW_DbfToArray( "First,City,State,Salary" ) )

The list may contain any valid expressions also. If such expressions contain variables, they need to be private or public.

Example: aData := CUST->( FW_DbfToArray( "RecNo(),First,City,Int((Date()-HireDate)/365)" ) )

Re: Documentation

Posted: Thu Mar 26, 2020 7:35 am
by MarcoBoschi
Gracias!