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
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://
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
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
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
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
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
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
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
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
10 matches
Mail list logo