[Lazarus] lazarus archive

2012-09-04 Thread ajv
If I want to check previous list items to not duplicate a question the lazarus archives are available. http://lists.lazarus.freepascal.org/pipermail/lazarus/ How can I search the archives? thanks. -- ___ Lazarus mailing list Lazarus@lists.lazarus.free

[Lazarus] Compile error

2012-03-22 Thread ajv
Hello, I installed fpc 2.6.0 as root on Mandriva Linux 32 bit using the rpm packages FPC is running fine using the fp ide. I installed the Lazarus sources from svn update 36210 - $ cd lazarus - $ make clean all After a while a compile error occurs : -

Re: [Lazarus] Strange Access Violation

2010-08-02 Thread ajv
First use a Try Except clause: 01for i:=0 to ElementCount do 02begin 03 CommaString:=LoadElementFromNumber(i); 04 if CommaString<>'' then 05 begin 06ElementList:=TStringList.Create; 07Try ElementList.CommaText:=CommaString; 08Try CheckElementExte

Re: [Lazarus] Lazarus Controller - AVR ?

2010-04-06 Thread ajv
The LazarusController is in development. Further information will become available in May. Thank you for your patience. Anthony Vogelaar = Osvaldo Filho wrote: http://www.blaisepascal.eu/index.php?actie=./lazarus_dutch_event Does anyone have information?

Re: [Lazarus] Lazarus on Tiny Core Linux

2010-01-18 Thread ajv
Dear Graeme Geldenhuys, The boot time realized now is acceptable for my project. I understand that I can squeeze out a few more seconds, estimating up to 5 seconds, by using fpGUI. I hope I find time in the near future to investigate this, I will keep you informed. Thanks, Anthony Vogelaar

Re: [Lazarus] Lazarus on Tiny Core Linux

2010-01-18 Thread ajv
Thank you all for your reply. I want to run a Lazarus GTK2 application within a minimal linux embedded systems with 1 GB flash, 256 MB Ram en 500 MHz VIA cpu. I searched for live distributions, not writing to flash. Till now I used the Slax distribution. For a new project it had an unacceptabl

[Lazarus] Lazarus on Tiny Core Linux

2010-01-17 Thread ajv
Hello, I would appreciate some help with getting a Lazarus application running under Linux. I use the minimal distribution Tiny Core Linux. My Lazarus application shows graphics and text. All graphics are shown correctly but the text characters are rectangles. To get the application running I

Re: [Lazarus] If Assigned ()

2009-12-09 Thread ajv
== Zitat von ajv : Hello, How can I test if a "Procedure Of Object" is assigned? example: (mode delphi under Linux) Var PO : Procedure Of Object; PO := Nil; // OK If Assigned (PO) Then Writeln ('This should not be printed'); // It is printed !! It is not printed her

[Lazarus] If Assigned ()

2009-12-09 Thread ajv
Hello, How can I test if a "Procedure Of Object" is assigned? example: (mode delphi under Linux) Var PO : Procedure Of Object; PO := Nil; // OK If Assigned (PO) Then Writeln ('This should not be printed'); // It is printed !! In Delphi : Function Assigned (Const P) : Boolean In Lazarus