Re: [fpc-pascal] fpGUI Toolkit v0.8 release for FPC 2.4.4 & 2.6.0-rc

2012-05-25 Thread Paul Breneman
I've recently added new releases for Linux and ARM Linux on this page: http://www.turbocontrol.com/easyfpgui.htm Also a few new releases on this page (including a note on how I recently got ppcarm 2.6.0 working for console programs on my Android phone): http://www.turbocontrol.com/helloworl

Re: [fpc-pascal] have anyone binded librsync to pascal yet ?

2012-05-25 Thread Daniel Gaspary
On Fri, May 25, 2012 at 6:55 AM, ik wrote: > Hello, > > Is there anyone who binded librsync into Pascal/FPC ? > > Thanks, > > Ido Last week I have googled about it and found no results. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://

Re: [fpc-pascal] Parameters to Format()

2012-05-25 Thread Mark Morgan Lloyd
Michael Van Canneyt wrote: On Fri, 25 May 2012, Mark Morgan Lloyd wrote: How should I put this? procedure TUnyokedFrontendForm.OutputWriteF(const str: widestring; values: array of variant; fg: TColor= clBlack; bg: TColor= clDefault); var scratch: widestring; begin scratch := Format(s

Re: [fpc-pascal] Parameters to Format()

2012-05-25 Thread dhkblaszyk
You should do: type MyVarArray = array of variant; and then procedure TUnyokedFrontendForm.OutputWriteF(const str: widestring; values: MyVarArray; fg: TColor= clBlack; bg: TColor= clDefault); Darius On 25 mei '12, Mark Morgan Lloyd wrote: > How should I put this? > > procedure

[fpc-pascal] have anyone binded librsync to pascal yet ?

2012-05-25 Thread ik
Hello, Is there anyone who binded librsync into Pascal/FPC ? Thanks, Ido ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Parameters to Format()

2012-05-25 Thread Michael Van Canneyt
On Fri, 25 May 2012, Mark Morgan Lloyd wrote: How should I put this? procedure TUnyokedFrontendForm.OutputWriteF(const str: widestring; values: array of variant; fg: TColor= clBlack; bg: TColor= clDefault); var scratch: widestring; begin scratch := Format(str, values); As above, I

[fpc-pascal] Parameters to Format()

2012-05-25 Thread Mark Morgan Lloyd
How should I put this? procedure TUnyokedFrontendForm.OutputWriteF(const str: widestring; values: array of variant; fg: TColor= clBlack; bg: TColor= clDefault); var scratch: widestring; begin scratch := Format(str, values); As above, I get unyokedfrontendcode.pas(354,32) Error: Inco

Re: [fpc-pascal] Proposed FPC database example code: request for testing

2012-05-25 Thread Reinier Olislagers
On 25-5-2012 10:36, Michael Van Canneyt wrote: Thanks for the quick and helpful response, Michael. > Interesting example. You forgot the readme in the zip ? I added it to the bottom of the post instead ;) > I'm willing to include it as an example in fcl-db, but then you'd need > to make some im

Re: [fpc-pascal] TList Notify count changed

2012-05-25 Thread Michael Van Canneyt
On Tue, 22 May 2012, Zaher Dirkey wrote: In TList how can i notify if Count is changed with New and Old values as like in SetCount, SetCount procedure not virtual? procedure SetCount(NewCount: Integer); You cannot. Be aware that setting the count does not mean items are actually added to t

Re: [fpc-pascal] Proposed FPC database example code: request for testing

2012-05-25 Thread Michael Van Canneyt
On Fri, 25 May 2012, Reinier Olislagers wrote: Hi list, I've created a small SQL*Plus/isql/osql/sqlcmd clone, pasql. It lets you connect to a database and run select queries as well as queries that don't return a dataset. It also shows how to use logging. Perhaps it's a nice candidate for