Re: [Lazarus] TMouseButton

2010-04-07 Thread Kjow
2010/4/7 Kjow antispamm...@gmail.com: As result you don't need mbNone. Just use [] to indicate that no button is pressed. 2010/4/7 Martin laza...@mfriebe.de: Create a set Other question... how to pass/read [] vaule to/in a function? e.g. function ButtonPress(Button: TMouseButton): string

Re: [Lazarus] TMouseButton

2010-04-07 Thread Kjow
:=[]; Vincent Thank you Vincent, I tried, but MouseButtonPressed:=[]; returns: Error: Incompatible types: got Empty Set expected TMouseButton and I don't know how to add Button to MouseButtonPressed... Thanks, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] TMouseButton

2010-04-07 Thread Kjow
2010/4/7 Kjow antispamm...@gmail.com: 2010/4/7 Kjow antispamm...@gmail.com: Error: Incompatible types: got Empty Set expected TMouseButton Whops, I've mistyped, it works! But how to read the values from a function? e.g. function ButtonPress(Button: TMouseButtons): string; begin  case

Re: [Lazarus] TMouseButton

2010-04-07 Thread Kjow
Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-07 Thread Kjow
2010/4/7 Den Jean den.j...@telenet.be: On Wednesday 07 April 2010 11:13:16 Kjow wrote: I tried to make it myself, but I don't understand what to do... An arm binary is too dependent of the arm target platform characteristics. What is the target arm platform ? I need Maemo 5 / MeeGo target

[Lazarus] FPC 2.4.0 svn

2010-04-09 Thread Kjow
Hi all, I can't find the SVN of stable FPC 2.4.0, can you give me it? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] FPC 2.4.0 svn

2010-04-09 Thread Kjow
/lazarus/ Is it right? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] FPC 2.4.0 vs 2.5.1

2010-04-09 Thread Kjow
? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] FPC 2.4.0 vs 2.5.1

2010-04-09 Thread Kjow
). Thank you very much, Michael! Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] FPC 2.4.0 svn

2010-04-09 Thread Kjow
2010/4/9 Vincent Snijders vsnijd...@vodafonevast.nl: http://svn.freepascal.org/svn/fpc/tags/release_2_4_0/ Thank you Vincent! Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-09 Thread Kjow
copied them on the same dir of other libs, but still not working: Hint: Start of reading config file /home/kjow/.fpc.cfg Hint: Start of reading config file /etc/fpc.cfg Hint: End of reading config file /etc/fpc.cfg Hint: End of reading config file /home/kjow/.fpc.cfg Free Pascal Compiler version 2.5.1

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-09 Thread Kjow
2010/4/9 Den Jean den.j...@telenet.be: on your device you need the libs (libqt4-maemo5*) on the cross development platform you also need the devel libs (links named .so to actual libs) apt-get install libqt4-dev or something like that (search with apt-cache search qt4) general info about

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-10 Thread Kjow
2010/4/9 Den Jean den.j...@telenet.be: On Friday 09 April 2010 21:46:39 Kjow wrote: Too often things are taken for granted by experts. Too often things are too cryptic and not enough explained. Almost always, who doesn't know certain arguments will learn it himself, and if there isn't a clear

[Lazarus] OOP basics

2010-04-14 Thread Kjow
); begin ... Form.y:=0; end; ___ Is it possible? PS I'm sorry for this example, maybe it is not perfect, I wrote it on the fly. Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

[Lazarus] unit not found: Unit1

2010-04-14 Thread Kjow
well and I can create all events I want of components (like buttons OnClick) If I save the project leaving the default uni1.pas there are not problems. I'm using Lazarus' r24617. Regards, Kjow -- ___ Lazarus mailing list Lazarus

[Lazarus] unit not found: Unit1

2010-04-14 Thread Kjow
well and I can create all events I want of components (like buttons OnClick) If I save the project leaving the default uni1.pas there are not problems. I'm using Lazarus' r24617. Regards, Kjow -- ___ Lazarus mailing list Lazarus

[Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
I'm sorry for the first email, it was a bit confusing. Now, I created a project to make more clear what I mean. Take it as a stupid example, I need this to make more advanced things: unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil,

Re: [Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
unit that can be used between more projects, so I want avoid to make copy/paste everytime the same functions. Often I forgot something... with a generic unit that initialize some standard things I can do it easily. Best Regards, Kjow -- ___ Lazarus

Re: [Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
: integer): integer; begin Result:=x+y; end; on Unit2, so I want to leave all things at the same place, but copy this function on Unit2: is it possible to declare methods and implement its on different unit? Thanks, Kjow -- ___ Lazarus mailing list

Re: [Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
. I changed the 3rd unit, so now it returns: unit3.pas(8,27) Fatal: Circular unit reference between Unit3 and Unit1 Thanks! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
the section. is not possible? Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] OOP basics - 2

2010-04-14 Thread Kjow
to a component resource of the design form, I need to implement it on the unit that contain: TForm1=class(TMyBaseForm); right? So, if I need to access to the properties of a Tbutton that is on the designed form, I can't... is it right? How to do? The question is similar to the one I asked at 16.38. Kjow

[Lazarus] Auto-increase build number

2010-04-15 Thread Kjow
Hi all, is it possible to automatically increase build number each time I press F9 or build (Ctrl+F9)? Actually I can automatically increase with build all only . Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] Auto-increase build number

2010-04-15 Thread Kjow
2010/4/15 Paul Ishenin webpi...@mail.ru: This is wrong. Build number must be increased only on Build, not on compile or run. Umm... so there isn't any setting that I can edit? I'd like to know how times I hit F9 in some projects... Kjow

[Lazarus] Lazarus fails to compile: Error: Identifier not found TIComponentInterface

2010-05-17 Thread Kjow
Hi all, Lazarus fails to compile GLSceneDesignTime: Error: Identifier not found TIComponentInterface With Lazarus-0.9.29-25309-fpc-2.4.1-20100511-win32 - everything is fine. I reported the bug: http://mantis.freepascal.org/view.php?id=16503 Thanks! Kjow

[Lazarus] TIniFile bug?

2010-05-18 Thread Kjow
I have a problem with TIniFile, it doesn't work. Until some revisions ago (2-3 days) no problem, but from yesterday it doesn't work anymore. ... FileINI : TIniFile; ... FileCFG:= 'data.ini'; ... FileINI := TIniFile.Create(FileCFG); FileINI.UpdateFile; try var1 :=

Re: [Lazarus] TIniFile bug?

2010-05-18 Thread Kjow
Please enter a bug report in the FPC bugtracker (not Lazarus bugtracker). Michael. ok: http://bugs.freepascal.org/view.php?id=16512 Regards, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] TIniFile bug?

2010-05-18 Thread Kjow
2010/5/18 shoKwave shokw...@gmx.net: I had problems with TInifile.ReadString. See http://bugs.freepascal.org/view.php?id=16502 TInifile.ReadBool also doesn't work. Maybe all the read-system doesn't works, on WriteInteger/WriteBool it works. -- ___

Re: [Lazarus] TIniFile bug?

2010-05-18 Thread Kjow
2010/5/18 shoKwave shokw...@gmx.net: I had problems with TInifile.ReadString. See http://bugs.freepascal.org/view.php?id=16502 TInifile.ReadBool also doesn't work. Maybe all the read-system doesn't works, on WriteInteger/WriteBool it works. -- ___

[Lazarus] Lazarus Logo

2011-12-30 Thread Kjow
Hi all and Happy Holidays, I'm going to complete the develop of my program and I would insert a Lazarus' Hi-Res logo on the splashscreen, while loading. But I can't find anything bigger (or equal) to 200x200 pixel. Could you help me? Best Regards, Kjow

Re: [Lazarus] Lazarus Logo

2011-12-30 Thread Kjow
2011/12/30 Ing. Héctor F. Fiandor Rosario hfian...@infomed.sld.cu: Dear Kjow: i am using a running cheetah. If you want, i can pass to you the routines. yours, Ing. Héctor F. Fiandor Rosario hfian...@infomed.sld.cu Thank you, I can evaluate. But I would something like official logos

Re: [Lazarus] Lazarus Logo

2011-12-30 Thread Kjow
2011/12/30 Vincent Snijders vincent.snijd...@gmail.com: Maybe you can use: http://svn.freepascal.org/svn/lazarus/trunk/images/powered-by.svg Vincent Nice, SVG! Thank you! Is there SVG of IDE icon (the stylized cheetah)? Best Regards Kjow

Re: [Lazarus] Lazarus Logo

2012-01-03 Thread Kjow
2011/12/30 Kjow antispamm...@gmail.com: 2011/12/30 Vincent Snijders vincent.snijd...@gmail.com: Maybe you can use: http://svn.freepascal.org/svn/lazarus/trunk/images/powered-by.svg Vincent Nice, SVG! Thank you! Is there SVG of IDE icon (the stylized cheetah)? Best Regards Kjow Can I

Re: [Lazarus] Lazarus Logo

2012-01-03 Thread Kjow
with Powered by (svg), in next email I'll attach it. Ok, I'm going to finish the project, I'll add my program to the wiki :) Thank you! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo

Re: [Lazarus] Lazarus Logo

2012-01-03 Thread Kjow
/fd/Lazarus-icons-lpr-proposal-bpsoftware.png (from: http://wiki.lazarus.freepascal.org/New_Lazarus_Icon_Proposals But If I could have this one in svg also, I can release an hi-quality svg logo :) Best Regards, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Lazarus Logo

2012-01-03 Thread Kjow
2012/1/3 silvioprog silviop...@gmail.com: Wow, nice icon. Thank you :) Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Help debugging

2012-01-11 Thread Kjow
anything of original code (too complex). Anyway, everything works right, but after sometimes I create/free, I get a SYSTEM_TOBJECT_$_FREE (18) error, but I can't get the row in my source code where the error is generated. In attachment the window with the error. Thank you in advance. Kjow PS generally

Re: [Lazarus] Help debugging

2012-01-11 Thread Kjow
2012/1/11 Kjow antispamm...@gmail.com: In attachment the window with the error. I missed the attachment. Kjow attachment: Lazarus_sigsegv_FreeOBJ.jpg-- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] Help debugging

2012-01-11 Thread Kjow
the third time i get this error: The debugger experienced an unknow condition. [...] Exception: EListError.with message Duplicate ID: FF61 Abort / Ignore Ummm... Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] Help debugging

2012-01-11 Thread Kjow
(gdb) -file-exec-and-symbols ^done (gdb) ___ Kjow laz.log Description: Binary data -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Help debugging

2012-01-11 Thread Kjow
; end; instead of: if assigned(MyObj) Then freeandnil(MyObj); if assigned(MyObj) Then MyObj.Destroy; //of course this was wrong anyway. Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

[Lazarus] ExecuteProcess

2012-01-20 Thread Kjow
Hi all, I can't find it on google, so is it possible to hide the command prompt window that appears with SysUtils.ExecuteProcess('','',[]); ? I need to run some external processes, but I would not see the console window. Thank you, Kjow

Re: [Lazarus] ExecuteProcess

2012-01-20 Thread Kjow
:) ... try AProcess := TProcess.Create(nil); AProcess.CommandLine := 'command_prompt_command.exe -with -parameters'; AProcess.Options := AProcess.Options + [poWaitOnExit, poNoConsole]; AProcess.Execute; AProcess.Free; finally end; ... Best Regards, Kjow

[Lazarus] A game developed with Lazarus.

2012-02-13 Thread Kjow
to distribuite it (like Steam and similar) and the full version is coming soon. :) Best Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] A game developed with Lazarus.

2012-02-13 Thread Kjow
2012/2/13 Lukasz Sokol el.es...@gmail.com On 13/02/2012 10:25, Kjow wrote: Hi all! I added to the Lazarus wiki a video game I developed with Lazarus and GLScene: http://wiki.lazarus.freepascal.org/index.php?title=Projects_using_Lazarus#Slot_Cars_-_The_Video_Game  At moment

Re: [Lazarus] A game developed with Lazarus.

2012-02-15 Thread Kjow
2012/2/14 Lazarus Portugal Lazarus Portugal lazarusportugalwebmast...@gmail.com: Is very cool. 2012/2/13 Kjow antispamm...@gmail.com 2012/2/13 Lukasz Sokol el.es...@gmail.com On 13/02/2012 10:25, Kjow wrote: Hi all! I added to the Lazarus wiki a video game I developed

[Lazarus] SIGSEGV error on close.

2012-02-15 Thread Kjow
Hi all, I'm getting this error on application close. Also with an empty project. Anyone have this? I just updated Lazarus/FPC via svn: Lazarus: 0.9.30.3 - 35369M FPC: 2.4.5 - r20352 Thank you, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] A game developed with Lazarus.

2012-02-27 Thread Kjow
2012/2/13 Kjow antispamm...@gmail.com: Hi all! I added to the Lazarus wiki a video game I developed with Lazarus and GLScene: http://wiki.lazarus.freepascal.org/index.php?title=Projects_using_Lazarus#Slot_Cars_-_The_Video_Game At moment there is a demo to download and two videos on youtube

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-04 Thread Kjow
Which is the svn url of current 0.9.30.4? Thank you, Kjow 2012/3/4, William Oliveira Ferreira bdexterholl...@gmail.com: we are using fpc shipped with the setup... 2012/3/4, Vincent Snijders vincent.snijd...@gmail.com: Op 4 maart 2012 14:46 heeft Miquel Bruns miquel.br...@gmail.com het

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-05 Thread Kjow
2012/3/5 Vincent Snijders vincent.snijd...@gmail.com: Op 4 maart 2012 19:03 heeft Kjow antispamm...@gmail.com het volgende geschreven: Which is the svn url of current 0.9.30.4? The URL of 0.9.30.4RC1 (Release candidate 1) is: http://svn.freepascal.org/svn/lazarus/tags/lazarus_0_9_30_4RC1

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-05 Thread Kjow
2012/3/5 Kjow antispamm...@gmail.com: 2012/3/5 Vincent Snijders vincent.snijd...@gmail.com: Op 4 maart 2012 19:03 heeft Kjow antispamm...@gmail.com het volgende geschreven: Which is the svn url of current 0.9.30.4? The URL of 0.9.30.4RC1 (Release candidate 1) is: http://svn.freepascal.org

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-05 Thread Kjow
Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-05 Thread Kjow
directory `c:/Develop/lazarus/components/jcf2/IdePlugin/lazarus ' make[1]: *** [bigidecomponents] Error 2 make[1]: Leaving directory `c:/Develop/lazarus/components' make: *** [bigidecomponents] Error 2 c:\Develop\lazarus Kjow -- ___ Lazarus mailing

Re: [Lazarus] Lazarus 0.9.30.4 release candidate 1 available for download

2012-03-05 Thread Kjow
? Maybe: http://svn.freepascal.org/svn/lazarus/branches/fixes_0_9_30/ http://svn.freepascal.org/svn/fpc/tags/release_2_6_0/ Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

[Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
2012/3/7 Antonio Fortuny a.fort...@sitasoftware.lu: works for Windows, not yet rewritten for LINUX. Thank you! Unfortunately I need a cross-platform solution. Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
need to extract the build number from an other file (like 'C:\test.exe' ). Or am I in wrong? Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
2012/3/7 Kjow antispamm...@gmail.com: 2012/3/7  michael.vancann...@wisa.be: The below unit does what you need. It can be made more simple, I still need to include the unix code in the fileinfo unit. Michael. unit getvers; Thank you, but your unit extracts the build number from the same

Re: [Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
2012/3/7 Hans-Peter Diettrich drdiettri...@aol.com: Kjow schrieb: Are you sure that your other platforms support a standardized version information in their binaries? DoDi It's my first experience about managing file version numbering, do linux and mac support it? Thank you, Kjow

Re: [Lazarus] How to get external FileVersion

2012-03-07 Thread Kjow
FileVersion (this is the one automatically updated by lazarus compiling), so I need to remove the info I have in ProductVersion field. Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] Lazarus 0.9.30.4RC2 available for download

2012-03-09 Thread Kjow
0.9.30.3 or 0.9.30.4RC2 don't compile, but ctrl+space works Without specialize, both 0.9.30.3 or 0.9.30.4RC2 compile, but ctrl+space doesn't work. With or without specialize 0.9.31 compile and ctrl+space works. Thank you, Kjow -- ___ Lazarus mailing list

Re: [Lazarus] Lazarus 0.9.30.4RC2 available for download

2012-03-09 Thread Kjow
2012/3/9 Kjow antispamm...@gmail.com: FPC svn: http://svn.freepascal.org/svn/fpc/tags/release_2_6_0/ Lazarus: http://svn.freepascal.org/svn/lazarus/branches/release_0_9_30_4/ http://svn.freepascal.org/svn/lazarus/trunk/ http://svn.freepascal.org/svn/lazarus/branches/fixes_0_9_30

Re: [Lazarus] Lazarus 0.9.30.4RC2 available for download

2012-03-09 Thread Kjow
, glscene) and I'm using r6018 of GLScene, but the problem is still present. Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] LM_DEACTIVATE

2012-03-13 Thread Kjow
+ 63; 0.9.31 lmessages.pp, row 75:LM_QUIT = LM_LCL + 65; It is a misprint or is it right? Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] LM_DEACTIVATE

2012-03-13 Thread Kjow
hurt but better to do it now - until we've not released 1.0. Best regards, Paul Ishenin Thank you! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Registration error on lazarus-0.9.30.4-fpc-2.6.0-win64

2012-03-15 Thread Kjow
start lazarus with command C:\Develop\lazarusX64\lazarus.exe --pcp=C:\Develop\lazarusX64\config there's no errors on loading, but there is the same behavior An unhandled exception occurred at... Fresh installation, without extra packages. Am I in wrong with something? Thanks, Kjow

[Lazarus] Fatal: Compilation aborted on Lazarus Trunk

2012-03-15 Thread Kjow
Just an svn update: c:\Develop\lazarussvn up ... ... At revision 36032. c:\Develop\lazarusmake clean all ... ... ... ./debugger/frames -Fu../converter -Fu../packager -Fu../packager/frames -Fu../pac kager/units/i386-win32 -Fu../units/i386-win32 -Fuframes -Fu. -Fiinclude -Fiinclu de/win32

Re: [Lazarus] Registration error on lazarus-0.9.30.4-fpc-2.6.0-win64

2012-03-15 Thread Kjow
and, without errors, everythings stops (but no freezes or re-loads). Closing and reopening lazarus manually had no effects on installed packages. I'm confused... Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] Registration error on lazarus-0.9.30.4-fpc-2.6.0-win64

2012-03-15 Thread Kjow
2012/3/15 Kjow antispamm...@gmail.com: 2012/3/15 Mattias Gaertner nc-gaert...@netcologne.de: Can you create a backtrace? Ummm... I just do a make clean all and now it seems to work without problems... but if I want to install a new package, after a rebuild I get: Abyway, I unistalled

Re: [Lazarus] Registration error on lazarus-0.9.30.4-fpc-2.6.0-win64

2012-03-15 Thread Kjow
2012/3/15 Kjow antispamm...@gmail.com: Hi, I'm trying today's lazarus-0.9.30.4-fpc-2.6.0-win64, but I get this error (loading lazarus.exe): [cut] Well... I finally could try on second PC and it seems to work well. So I think that the problem is on my pc, I'll try to investigate. Thank you

Re: [Lazarus] Android build without ant

2012-03-27 Thread Kjow
is useless, I'm not yet inside lazarus for android... but I will start to try soon (I hope). Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] FPC Lazarus installation including cross compiling from source

2012-03-29 Thread Kjow
, VMWare, etc. Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] FPC Lazarus installation including cross compiling from source

2012-03-29 Thread Kjow
choice. DoDi Android or iOS for example, but any cross-platform project could be much more easy (instead reboot every time, just build into VM) Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

[Lazarus] Start build with parameters from IDE

2012-03-30 Thread Kjow
Hi all, I need to start from IDE the build project (F9 key) with a parameter (e.g. .\project1.exe test1)... how to do this? Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] Lazarus 1.0 is branched

2012-04-02 Thread Kjow
2012/4/1 zel...@holobit.net: Hi all, As I've already mentioned few weeks ago on lazdevel, today we branched 1.0 :) branch is here: http://svn.freepascal.org/svn/lazarus/branches/fixes_1_0/ Great! :) Is it right that on about is reported version 0.9.31? Regards, Kjow

Re: [Lazarus] Lazarus 1.0 is branched

2012-04-02 Thread Kjow
to configure Lazarus/Compiler/FC sources paths. They are all OK and hitting Start IDE works without issues. It just starts with this popup. Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

[Lazarus] Make unreadable names into bunary

2012-04-04 Thread Kjow
this in compiling? Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Make unreadable names into bunary

2012-04-05 Thread Kjow
2012/4/4 Kjow antispamm...@gmail.com: Hi all, I would make unreadable functions/components/classes/etc names into the binary built. I noticed that with an hex editor I can see things like TButton, width, heigh etc. Avoiding this, could make also more difficul a reverse engeneering

[Lazarus] Debugger type and path

2012-06-21 Thread Kjow
about it? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Lazarus and Free Pascal downloads plummeting on SourceForge

2012-08-03 Thread Kjow
(and rebuild) daily lazarus+fpc are downloaded several times: for Linux: ~ 1300 times for Windows: ~ 300 times (I use this daily) Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

[Lazarus] SIGSEGV error

2012-08-04 Thread Kjow
/right X) I get an External: SIGSEGV at address 7703B3CB error and then assembler windows says: USER32!GetClipboardSequencerNumber (63) any project the same (complex one or completely new/fresh/free). Thank you, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] SIGSEGV error

2012-08-06 Thread Kjow
an empty form. Thank you! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] SIGSEGV error

2012-08-06 Thread Kjow
2012/8/6 Kjow antispamm...@gmail.com: 2012/8/4 Martin laza...@mfriebe.de: Everytime I close a compiled binary (e.g. just an empty form, hitting the classic top/right X) I get an External: SIGSEGV at address 7703B3CB error and then assembler windows says: USER32!GetClipboardSequencerNumber (63

[Lazarus] Bad quality packages on Ubuntu 12.04

2012-08-07 Thread Kjow
://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20amd64%20DEB/Lazarus%201.0RC1/ I forced the installation with ignore install and they installed. Not yet tried how Lazarus IDE works on ubuntu 12.04. Regards, Kjow -- ___ Lazarus mailing list

Re: [Lazarus] Bad quality packages on Ubuntu 12.04

2012-08-08 Thread Kjow
2012/8/8 Mattias Gaertner nc-gaert...@netcologne.de: The deb was built and tested on a ubuntu 12.04. Maybe I somehow missed that warning. Please create a bug report. Mattias http://bugs.freepascal.org/view.php?id=22598 Best Regards, Kjow

Re: [Lazarus] Bad quality packages on Ubuntu 12.04

2012-08-08 Thread Kjow
2012/8/8 Kjow antispamm...@gmail.com: 2012/8/8 Mattias Gaertner nc-gaert...@netcologne.de: The deb was built and tested on a ubuntu 12.04. Maybe I somehow missed that warning. Please create a bug report. Mattias http://bugs.freepascal.org/view.php?id=22598 Best Regards, Kjow I'm sorry

[Lazarus] [Ubuntu 12.04 x64] Can't build Lazarus

2012-08-08 Thread Kjow
mem64,reg32] invalid combination of opcode and operands /usr/share/lazarus/1.0RC1/components/synedit/synedithighlighterfoldbase.pas(1,1) Fatal: There were 2 errors compiling module, stopping Regards, Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] SIGSEGV error

2012-08-08 Thread Kjow
2012/8/6 Kjow antispamm...@gmail.com: I'm sorry! That was my fault. I didn't noticed that two process of my Asus Xonar D2X (HsMgr) were running in background. I need everytime to kill them, if I want to use GDB for debug and I completely forgot about them. Thank you, Kjow Not only HsMgr

Re: [Lazarus] RE : [Ubuntu 12.04 x64] Can't build Lazarus

2012-08-08 Thread Kjow
2012/8/8 Ludo Brands ludo.bra...@free.fr: That is a known bug : http://bugs.freepascal.org/view.php?id=22579 RC1 doesn't build on linux x64. Ludo Thank you! I'll follow the issue. Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Newbie linking question...

2012-08-14 Thread Kjow
) that is not more supported or developed as free. Fortunately I'm using GLScene :D Regards, Kjow(.net) -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Lazarus 1.0 release candidate 2 available for download

2012-08-22 Thread Kjow
is ok! Installing everything, lazarus can't start, due IDE can't find fpc.cfg (forcing installation of fpc, it seems to install correctly... buf no fpc.cfg found. Maybe my fault, but I don't know where. Kjow -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Lazarus 1.0 release candidate 2 available for download

2012-08-22 Thread Kjow
2012/8/22 Mattias Gaertner nc-gaert...@netcologne.de: The fpc packages are the same as the last two releases. No one reported such a problem. It was in the same issue report: http://bugs.freepascal.org/view.php?id=22598 Anyway, I just created a new one:

Re: [Lazarus] Lazarus 1.0 Release

2012-08-29 Thread Kjow
2012/8/29 Mattias Gaertner nc-gaert...@netcologne.de: The Lazarus team is glad to announce the release of: Lazarus 1.0 Congratulations and thank you! Great project, great community! Kjow -- ___ Lazarus mailing list Lazarus

[Lazarus] Compiling error

2012-09-26 Thread Kjow
to be initialized C:\Develop\lazarus\components\lazutils\winfileutil.inc(331,41) Hint: Local variable wide does not seem to be initialized C:\Develop\lazarus\components\lazutils\fileutil.pas(254) Fatal: There were 6 errors compiling module, stopping Best Regards, Kjow

Re: [Lazarus] Compiling error

2012-09-26 Thread Kjow
: Identifier not found TFileStreamUTF8 There is no TFileStreamUTF8 at this line in trunk. I get this error in fixes_1_0 (not yet further investigated). Vincent Oops, sorry I forgot to write that I'm using: http://svn.freepascal.org/svn/lazarus/branches/fixes_1_0 Best Regards, Kjow

Re: [Lazarus] Compiling error

2012-09-26 Thread Kjow
2012/9/26 Vincent Snijders vincent.snijd...@gmail.com: 2012/9/26 Kjow antispamm...@gmail.com: 2012/9/26 Vincent Snijders vincent.snijd...@gmail.com: 2012/9/26 Mattias Gaertner nc-gaert...@netcologne.de: Vincent Oops, sorry I forgot to write that I'm using: http://svn.freepascal.org/svn

[Lazarus] Bad quality packages on Ubuntu 12.10 - x64

2012-10-24 Thread Kjow
Same thing of http://bugs.freepascal.org/view.php?id=22598 This happens also with all latest files on Ubuntu 12.10 x64: lazarus_1.0.2-0_amd64.deb fpc_2.6.0-120824_amd64.deb fpc-src_2.6.0-120824_amd64.deb Best Regards, Kjow -- ___ Lazarus mailing

Re: [Lazarus] Bad quality packages on Ubuntu 12.10 - x64

2012-10-24 Thread Kjow
2012/10/24 Bernd prof7...@gmail.com: 2012/10/24 Kjow antispamm...@gmail.com: Same thing of http://bugs.freepascal.org/view.php?id=22598 Please try the packages from the PPA below: https://launchpad.net/~prof7bit/+archive/lazarus-1.0.0 Thank you, they seems to work well. Best Regards, Kjow

[Lazarus] FPC fails to compile if ATI Stream installed.

2011-02-07 Thread Kjow
/2.5.1' make: *** [build-stamp.i386-win32] Error 2 C:\Develop\fpc\2.5.1 Simply removing ATI Stream from Windows, FPC compiled well. Is it a bug? Regards, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] FPC fails to compile if ATI Stream installed.

2011-02-07 Thread Kjow
where the externa tools are searched. Thank you! Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

<    1   2   3   4   >