Re: [Lazarus] lfm file format

2014-04-05 Thread Marc Santhoff
On Sa, 2014-04-05 at 12:23 +0200, Mattias Gaertner wrote: On Sat, 05 Apr 2014 12:06:20 +0200 Marc Santhoff m.santh...@web.de wrote: Hi, ist there a complete documentation of Lazarus' LFM xml file format? No. If someone wants to start one I will help. Note: The xml format has

Re: [Lazarus] RFC: Code tools Feature?

2014-03-27 Thread Marc Santhoff
license enforcement, changing the license checking code and it's positions often by using templates. Maybe code injection, but I'm not really sure with that. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] debugging parts of rtl from within lazarus

2014-03-19 Thread Marc Santhoff
On Mo, 2014-03-17 at 23:18 +, Mark Morgan Lloyd wrote: Marc Santhoff wrote: On Mo, 2014-03-17 at 17:22 +, Mark Morgan Lloyd wrote: But some questions popping up: In the patch report you write SerFlush() is non-destructive and the new SerFlushInput/Output() are destructive

Re: [Lazarus] debugging parts of rtl from within lazarus

2014-03-19 Thread Marc Santhoff
On Mo, 2014-03-17 at 22:35 +0100, Sven Barth wrote: Am 17.03.2014 20:23 schrieb Marc Santhoff m.santh...@web.de: The IDE doesn't rebuild RTL , or fpc packages. But if you have your own fpc build, you can always rebuild and install it with debug info. I have no own build but the sources

[Lazarus] debugging parts of rtl from within lazarus

2014-03-17 Thread Marc Santhoff
and SerWrite really get. TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] debugging parts of rtl from within lazarus

2014-03-17 Thread Marc Santhoff
On Mo, 2014-03-17 at 17:22 +, Mark Morgan Lloyd wrote: Marc Santhoff wrote: Hi, the FAQ gives instructions for debugging FCL from within lazarus. http://wiki.lazarus.freepascal.org/Lazarus_Faq#How_can_I_debug_FCL_components_from_packages_with_Lazarus Does this work for RTL

Re: [Lazarus] debugging parts of rtl from within lazarus

2014-03-17 Thread Marc Santhoff
On Mo, 2014-03-17 at 18:03 +, Martin Frb wrote: On 17/03/2014 16:40, Marc Santhoff wrote: the FAQ gives instructions for debugging FCL from within lazarus. http://wiki.lazarus.freepascal.org/Lazarus_Faq#How_can_I_debug_FCL_components_from_packages_with_Lazarus Does this work for RTL

Re: [Lazarus] SQLTransaction won't start

2014-03-15 Thread Marc Santhoff
another client program may help to narrow down the target - turn on logging for mysql temporarily (the log fills up fast) and check if mysql sees the connection attempt - instead of stepping over the first erroneous line step into and look what happens in detail HTH, Marc -- Marc Santhoff m.santh

Re: [Lazarus] SQLTransaction won't start

2014-03-14 Thread Marc Santhoff
on creation or ask for the correct name could be it. id bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, myfield varchar(100) DEFAULT '' ) ENGINE='InnoDB' COLLATE 'utf8_bin'; -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] SQLTransaction won't start

2014-03-14 Thread Marc Santhoff
is empty or similar. Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TAChart stopped working

2014-03-07 Thread Marc Santhoff
Replying to myself: On Mo, 2014-03-03 at 02:41 +0100, Marc Santhoff wrote: Hi, while running a program using TAChart with a newer version of Lazarus (1.0.10 or 1.0.14) and fpc 2.6.2 an exception ERangeError is thrown. The program dates before Lazarus 1.0.10 and worked flawlessly

[Lazarus] TAChart stopped working

2014-03-02 Thread Marc Santhoff
. When SetLenght is called, in FGraphPoints does have approriate contents, FUpBound is 0 and FLoBound is 255. Before I document the complete workings of my program I'd like to ask: Has there been any change making this one a known issue? TIA, Marc -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] Using Lazarus for non-graphical apps

2014-01-07 Thread Marc Santhoff
of fpc, though. HTH, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Beyond Compare 4 built with Lazarus 1.2

2013-12-29 Thread Marc Santhoff
nothing at all. HTH anyhow, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] global items in TApplication

2013-09-15 Thread Marc Santhoff
On So, 2013-09-15 at 10:36 +0100, Graeme Geldenhuys wrote: On 2013-09-15 04:22, Marc Santhoff wrote: How do you handle this? How can I meet the spec and put all global into the .dpr-file? I use the Singleton design pattern for the solution. I often create a Application Class (nothing

Re: [Lazarus] global items in TApplication

2013-09-15 Thread Marc Santhoff
. A single unit that is set as application configuration is good enough. That's a god idea, one single globals unit but not having them in the main program source. Having all in one place is OK for programmes to get a quick overview and one spot where to look. Thanks! -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] global items in TApplication

2013-09-15 Thread Marc Santhoff
On So, 2013-09-15 at 15:54 +0100, Martin wrote: On 15/09/2013 15:24, Marc Santhoff wrote: I can, but then I'd have to choose one of two solutions I don't like: having to free the automatically created TApplication object or change forms.pp. Create a descendant of TComponent, and have

Re: [Lazarus] global items in TApplication

2013-09-15 Thread Marc Santhoff
On So, 2013-09-15 at 15:57 +0100, Martin wrote: On 15/09/2013 15:20, Marc Santhoff wrote: It's not in question how to implement global objects. Some are singletons by design and others are not in code but work like they were, because the only place the constructor is (allowed to be) called

Re: [Lazarus] Project Group support in the IDE

2013-09-14 Thread Marc Santhoff
On Sa, 2013-09-14 at 10:26 +0200, Mattias Gaertner wrote: On Sat, 14 Sep 2013 05:24:21 +0200 Marc Santhoff m.santh...@web.de wrote: On Fr, 2013-09-13 at 14:11 +0200, Michael Van Canneyt wrote: On Fri, 13 Sep 2013, Graeme Geldenhuys wrote: On 2013-09-13 11:56, Mattias Gaertner

Re: [Lazarus] Project Group support in the IDE

2013-09-14 Thread Marc Santhoff
On Sa, 2013-09-14 at 13:19 +0100, Graeme Geldenhuys wrote: On 2013-09-14 04:24, Marc Santhoff wrote: If I'm doing releases having to start lazarus, finding and opening the project, setting some config values, would all be far to many actions. I really prefer using makefiles or something

Re: [Lazarus] Project Group support in the IDE

2013-09-14 Thread Marc Santhoff
On Sa, 2013-09-14 at 19:01 +0200, Sven Barth wrote: On 14.09.2013 18:54, Marc Santhoff wrote: On Sa, 2013-09-14 at 13:19 +0100, Graeme Geldenhuys wrote: On 2013-09-14 04:24, Marc Santhoff wrote: If I'm doing releases having to start lazarus, finding and opening the project, setting some

[Lazarus] global items in TApplication

2013-09-14 Thread Marc Santhoff
of the program. How do you handle this? How can I meet the spec and put all global into the .dpr-file? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] Project Group support in the IDE

2013-09-13 Thread Marc Santhoff
the makefiles holding anything needed (compiler switches, etc.) generated. Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] old problem on FreeBSD: ld cannot find -lc_r

2013-07-24 Thread Marc Santhoff
Am Mittwoch, den 24.07.2013, 12:18 +0200 schrieb Marco van de Voort: On Fri, Jul 19, 2013 at 04:34:34AM +0200, Marc Santhoff wrote: after unpacking the brand new lazarus 1.0.10 and compiling it anything works fine. The next step was to install the lazreport package into the IDE. Compilation

Re: [Lazarus] [solved] old problem on FreeBSD: ld cannot find -lc_r

2013-07-19 Thread Marc Santhoff
Am Freitag, den 19.07.2013, 08:05 +0200 schrieb Mattias Gaertner: On Fri, 19 Jul 2013 04:34:34 +0200 Marc Santhoff m.santh...@web.de wrote: Where does this come from? I guess from one of the fpc units. Got a frsh 2.6.2, but that didn't help as expected. Where should I search to find

[Lazarus] old problem on FreeBSD: ld cannot find -lc_r

2013-07-18 Thread Marc Santhoff
in .lazarus and checked there is no mapping file for the linker messing things up. The fpc.cfg seems to be fine (an unaltered by me) too. Where does this come from? Where should I search to find the error? TIA, Marc FreeBSD 9.1-STABLE amd64 fpc 2.6.0 lazarus 1.0.10 -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] Firefox OS

2013-07-15 Thread Marc Santhoff
about Intelligence Agencies around the world Firefox OS will for sure have it's cusomers. It completely open source, in contrast to Android where parts are closed and Windwos as usual. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Firefox OS

2013-07-15 Thread Marc Santhoff
apps that will run on Firefox OS later on ... although the non-HTML5-stuff, system apis and the like, would have to be emulated from the outside (of the widget, in pascal). -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] Improper initialization of manged types

2013-07-09 Thread Marc Santhoff
did that already. But the reason why Im posting to this thread is something else. I'm curious why you decided to make those TVec(n)Prop records instead of classes? I didn't even know that it is legal Object Pascal code ... embarassing. ;) -- Marc Santhoff m.santh...@web.de

[Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Marc Santhoff
? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Marc Santhoff
Am Sonntag, den 07.07.2013, 16:41 +0200 schrieb Vojtěch Čihák: Hi, Tools - Options... - (node) Codetools - (node) Space Insert space in front of: Symbol Insert space after: Symbol That did the trick, thank you both! -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] [OT] New Lazarus website

2013-06-23 Thread Marc Santhoff
, so the visitor finds what she is looking for, the design is fresh and professionally looking. And it has lots of information without beeing overloaded. Very impressive and inviting. Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list

Re: [Lazarus] Beagle Bone

2013-06-17 Thread Marc Santhoff
/listinfo/lazarus Thanks, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Xterm, konsole etc.

2013-06-17 Thread Marc Santhoff
? If using (n)curses is no option, writing or reusing a char interpreting component would be [the|one] way to go. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] Beagle Bone

2013-06-17 Thread Marc Santhoff
problems with that so 2.6.0 or .2 cannot be used? -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ARMV7

2013-05-17 Thread Marc Santhoff
. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] ARMV7

2013-05-17 Thread Marc Santhoff
\fpc\2.7.x Thank you, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] data matrix with thousands of columns

2013-03-29 Thread Marc Santhoff
to use that data types, simple array-type is yours, I think. Look there to get an impression: http://www.hdfgroup.org/HDF5/ If you're intrested and have a little time to wait for results from my side, I'll send you a copy. Have fun, Marc -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] lazarus archive

2012-09-06 Thread Marc Santhoff
. the last question of his communication partner or other information, because it costs additional time. If the whole tail of messages is available in one mail he's got anything needed at hand immediately. Very handy, very time saving. My 2 cents, Marc -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] lazarus archive

2012-09-06 Thread Marc Santhoff
Am Donnerstag, den 06.09.2012, 10:51 +0200 schrieb Marc Santhoff: Am Mittwoch, den 05.09.2012, 15:24 +0200 schrieb Bernd: 2012/9/5 Michael Schnell mschn...@lumino.de: IMHO just quoting some words where appropriate is the only polite way to answer to a forum message Exactly

Re: [Lazarus] lazarus archive [increasingly OT]

2012-09-06 Thread Marc Santhoff
Am Donnerstag, den 06.09.2012, 10:35 +0100 schrieb Lukasz Sokol: Very true, but only for this case. Exactly what I wanted to express. I thought it would be unecessary to explicitly tell people to adapt their tsyle to something appropriate to the receiver(s) of the mail. Marc -- Marc

[Lazarus] overloaded proc not found

2012-09-05 Thread Marc Santhoff
, SVN 35971). Those lines compiled and ran fine, and I think they should do now, too. I've tried deleting all .o and .ppu of the program, no change. TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] overloaded proc not found

2012-09-05 Thread Marc Santhoff
Am Mittwoch, den 05.09.2012, 11:13 +0200 schrieb Mattias Gaertner: Marc Santhoff m.santh...@web.de hat am 5. September 2012 um 09:56 geschrieben: Hi, is there any problem with overloading in fpc2.6.0? Or another change making lazarus behave like this: TnkDOMTree = class

Re: [Lazarus] Lazarus 1.0 Release

2012-08-30 Thread Marc Santhoff
, answering on the mailing lists and fixing things very fast. Many thanks and good luck! Congratulations from a happy and satisfied user, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] debugger fails on freebsd x86_64

2012-08-12 Thread Marc Santhoff
Am Sonntag, den 12.08.2012, 00:51 +0100 schrieb Martin: On 11/08/2012 22:55, Marc Santhoff wrote: Am Donnerstag, den 09.08.2012, 17:35 -0500 schrieb Alonso Cárdenas Márquez: Please, could you install devel/gdb from ports? It could work with newest version of gdb (7.4.1) Don't forget

[Lazarus] debugger fails on freebsd x86_64

2012-08-09 Thread Marc Santhoff
fix it? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ETL tool - make or use?

2012-03-26 Thread Marc Santhoff
, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ETL tool - make or use?

2012-03-26 Thread Marc Santhoff
as it works. ;) -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ETL tool - make or use?

2012-03-26 Thread Marc Santhoff
Am Freitag, den 23.03.2012, 19:04 + schrieb Mark Morgan Lloyd: Marc Santhoff wrote: What do you use for ETL tasks? I'm a heretic: I tend to use Perl. I notice that somebody's embedded Perl in Delphi- I wonder if that would be portable to FPC? Ahh, now I read the bad word two

Re: [Lazarus] ETL tool - make or use?

2012-03-26 Thread Marc Santhoff
Am Montag, den 26.03.2012, 15:22 +0200 schrieb Marc Santhoff: If Java plus Swing is what they use - this is one really good way to go. That thingy can handle text file, relational databases, e-mails and services - I really do like it. As long as it works. ;) Oops, I wrote Swing all the time

[Lazarus] ETL tool - make or use?

2012-03-23 Thread Marc Santhoff
/ -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Contribute to a book instead of wiki?

2012-03-02 Thread Marc Santhoff
). That is basically just an XML file (no zip archive like ODT). I just aksed for this feature elsewhere, it has been in and out an seems to be in again. Do you now which version is necessary? (My last test was done on 3.0 or 3.2 or so) -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] Wiki Search vs Index

2012-03-01 Thread Marc Santhoff
multiple times myself. - Beofre changing the wiki it's easier to use google or another good public search engine similarly capable. There cpould be a link on the wikis main page for doing so. (This took me 10 minutes to find out myself ;) -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] Missing Documentation

2012-03-01 Thread Marc Santhoff
the index search works. I'd like to see a reminder, tending to forget this works a bit different... -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman

Re: [Lazarus] Missing Documentation

2012-03-01 Thread Marc Santhoff
Am Donnerstag, den 01.03.2012, 14:15 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: Am Donnerstag, den 01.03.2012, 01:22 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: A complete index, yes. To the right on http://wiki.lazarus.freepascal.org/ under

Re: [Lazarus] Project management

2012-03-01 Thread Marc Santhoff
. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
very early as a task attractive for me. Taht is writing some (short) tutorials on topics where I myself have had problems understanding inner workings of components or documentation already written. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
, it is pretty confusing to follow the threads about these non documented workflows. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
Am Mittwoch, den 29.02.2012, 18:22 +0100 schrieb Mattias Gaertner: Marc Santhoff m.santh...@web.de hat am 29. Februar 2012 um 17:54 geschrieben: [...] Showing is simple: Just move the mouse over an identifier. About destroying: You apparently have not tried it. I talked

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
Am Mittwoch, den 29.02.2012, 18:15 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: Where is the process of building up help files documented? Seen from my current knowledge there are many new tools and facts I do not know or understand. In the source directories, i.e

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
Am Mittwoch, den 29.02.2012, 13:47 -0600 schrieb John Repucci: Date: Wed, 29 Feb 2012 19:32:47 +0100 From: Marc Santhoff m.santh...@web.de Subject: Re: [Lazarus] Missing Documentation To: Lazarus mailing list lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
Am Mittwoch, den 29.02.2012, 20:43 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: One name I remember (from huge masses of emails) is FPDocManager. Is that a class or a tool? It's a project in examples/fpdocmanager. It shall allow even newbies to create their own local

Re: [Lazarus] Missing Documentation

2012-02-29 Thread Marc Santhoff
Am Donnerstag, den 01.03.2012, 01:22 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: A complete index, yes. To the right on http://wiki.lazarus.freepascal.org/ under the headline Navigation there is a link to it. The results are very strange. Entering documentation

Re: [Lazarus] Android Target GUI

2012-02-28 Thread Marc Santhoff
this one, but lost track of it. Thanks to you all, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Why the Java became so strong?

2012-02-28 Thread Marc Santhoff
, not speaking about fpc). -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Why the Java became so strong?

2012-02-28 Thread Marc Santhoff
this end up in the same complaints any time? /rant Sorry for being very direct while trying to put some positive criticism, Marc [ ... TOFU deleted ... ] -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus

[Lazarus] Missing Documentation

2012-02-28 Thread Marc Santhoff
of useful words to ... TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Why the Java became so strong?

2012-02-28 Thread Marc Santhoff
by not stating fixed rules but showing a corridor of most appreciated work. -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Why the Java became so strong?

2012-02-28 Thread Marc Santhoff
Am Dienstag, den 28.02.2012, 21:56 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: rant If poeple would stop ranting or complaining, real work could be getting done. Why do discussions like this end up in the same complaints any time? /rant Right, the customers

Re: [Lazarus] Why the Java became so strong?

2012-02-28 Thread Marc Santhoff
Am Dienstag, den 28.02.2012, 21:45 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: Am Dienstag, den 28.02.2012, 16:01 +0100 schrieb Hans-Peter Diettrich: William Oliveira Ferreira schrieb: Well, i think all pascal developers should do something about it and, all the fpc

Re: [Lazarus] Android Target GUI

2012-02-26 Thread Marc Santhoff
to self draw any component that's nice. But by code reuse the drawing issue will be solved very soon once started, I assume. Thank you! Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

[Lazarus] Android Target GUI

2012-02-16 Thread Marc Santhoff
-- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Object detection

2011-11-02 Thread Marc Santhoff
around it. Especially if you're images are only blackwhite. For those cases even simple flood filling may suffice. HTH, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] compiling lazarus packages with fpc only

2011-10-06 Thread Marc Santhoff
Am Donnerstag, den 06.10.2011, 08:52 +0200 schrieb Mattias Gaertner: On Thu, 06 Oct 2011 07:59:03 +0200 Marc Santhoff m.santh...@web.de wrote: Hi to everyone, I'd like to know: Is it possible to have fpc compile a source package that is created only as a lazarus package by using

[Lazarus] compiling lazarus packages with fpc only

2011-10-05 Thread Marc Santhoff
to a package file (.lpk) have to be kept when checking in to a source versioning system or can it be deleted because it is recreated anyways? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] native look on mac

2011-09-18 Thread Marc Santhoff
here. Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] native look on mac

2011-09-17 Thread Marc Santhoff
the names ;)? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] native look on mac

2011-09-17 Thread Marc Santhoff
Am Samstag, den 17.09.2011, 15:49 +0200 schrieb zeljko: On Saturday 17 of September 2011 13:48:03 Marc Santhoff wrote: Hi, as a FreeBSD and sometimes Windows user I have to ask: If a program is made with lazarus/fpc for Mac, does it have the native look and feel Mac

Re: [Lazarus] native look on mac

2011-09-17 Thread Marc Santhoff
Am Samstag, den 17.09.2011, 15:49 +0200 schrieb zeljko: On Saturday 17 of September 2011 13:48:03 Marc Santhoff wrote: Hi, as a FreeBSD and sometimes Windows user I have to ask: If a program is made with lazarus/fpc for Mac, does it have the native look and feel Mac

Re: [Lazarus] Forms and Generators

2011-09-01 Thread Marc Santhoff
Am Mittwoch, den 31.08.2011, 00:28 +0200 schrieb Mattias Gaertner: On Tue, 30 Aug 2011 23:54:26 +0200 Marc Santhoff m.santh...@web.de wrote: Hi, I have some question regarding forms and storage formats and the like: 1. Lazarus can write a form definiton to disk as an XML file

[Lazarus] Forms and Generators

2011-08-30 Thread Marc Santhoff
, ...), only to sort out what has already been done. For sure I'll looking at lazarus' form de-/serializing code. TIA for any hint, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] getting started with ExtPascal (was: tools for creating web database client)

2011-08-12 Thread Marc Santhoff
Am Donnerstag, den 11.08.2011, 21:30 -0300 schrieb Marcos Douglas: On Thu, Aug 11, 2011 at 5:38 PM, Marc Santhoff m.santh...@web.de wrote: Am Donnerstag, den 11.08.2011, 21:04 +0200 schrieb Marc Santhoff: I know from memory there are some rich client support techniques, but I forgot

Re: [Lazarus] getting started with ExtPascal

2011-08-12 Thread Marc Santhoff
Am Donnerstag, den 11.08.2011, 14:10 -0700 schrieb ABorka: On 8/11/2011 13:38, Marc Santhoff wrote: Am Donnerstag, den 11.08.2011, 21:04 +0200 schrieb Marc Santhoff: I know from memory there are some rich client support techniques, but I forgot the names. Found it it is ExtJS

Re: [Lazarus] fpSpreadsheet date formats

2011-08-11 Thread Marc Santhoff
might have to do something similar (never used it) or convert the date serials from other programs to date types (TDateTime). -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

[Lazarus] tools for creating web database client

2011-08-11 Thread Marc Santhoff
, the server will be done using this something, too. And I like best to use Object Pascal. What do you use? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] tools for creating web database client

2011-08-11 Thread Marc Santhoff
Am Donnerstag, den 11.08.2011, 16:10 -0300 schrieb Marcos Douglas: On Thu, Aug 11, 2011 at 4:04 PM, Marc Santhoff m.santh...@web.de wrote: Hi, I'd like to know which tools and techniques are available for supporting the programmer in creating web pages, in this special case for creating

[Lazarus] getting started with ExtPascal (was: tools for creating web database client)

2011-08-11 Thread Marc Santhoff
Am Donnerstag, den 11.08.2011, 21:04 +0200 schrieb Marc Santhoff: I know from memory there are some rich client support techniques, but I forgot the names. Found it it is ExtJS / ExtPascal. Since I'm planning a program being some sort of feasibility study in the first stage and only eventually

Re: [Lazarus] FPDoc tracker

2011-07-24 Thread Marc Santhoff
Am Donnerstag, den 21.07.2011, 02:09 +0100 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: Nice idea, but before starting work remember that some things are already invented. All that does not help much in managing and editing the FPCDocs. I think I'll have to tune my irony emitter

Re: [Lazarus] FPDoc tracker

2011-07-20 Thread Marc Santhoff
look at would be: http://de.wikipedia.org/wiki/Darwin_Information_Typing_Architecture (assuming you are speaking german, english found there: http://en.wikipedia.org/wiki/Darwin_Information_Typing_Architecture ) HTH, SCNR and best regards, Marc -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] config problem - deleted pkg source

2011-04-30 Thread Marc Santhoff
Am Samstag, den 30.04.2011, 08:02 +0200 schrieb Mattias Gaertner: Marc Santhoff m.santh...@web.de hat am 30. April 2011 um 00:45 geschrieben: How can I fix this problem without having to restore the package deleted? Start a default build Lazarus, e.g. built via a make clean all

[Lazarus] config problem - deleted pkg source

2011-04-29 Thread Marc Santhoff
without having to restore the package deleted? TIA, Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] setting fpdoc package name from lazarus

2011-04-26 Thread Marc Santhoff
-- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] setting fpdoc package name from lazarus

2011-04-26 Thread Marc Santhoff
Am Dienstag, den 26.04.2011, 16:13 +0200 schrieb Hans-Peter Diettrich: Marc Santhoff schrieb: How can I handle this case, the package name is or will be different from the runnable project name? I often create a dummy package and add the units to it. That seems to be sufficient

Re: [Lazarus] reverse engineering tool wanted

2011-04-20 Thread Marc Santhoff
if it is compilable using fpc. And there has been another graphics and shape drawing core with demo apps by a guy named Angus, the rest (family name, project name, link) I forgot and cannot find anymore ... -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] reverse engineering tool wanted

2011-04-20 Thread Marc Santhoff
Am Mittwoch, den 20.04.2011, 10:05 +0300 schrieb Juha (gmail): Marc Santhoff kirjoitti tiistai, 19. huhtikuuta 2011 00:30:30: I'm searching a reverse engineering tool that can handle lazarus' code. The main goal is to generate class diagrams and sequence diagrams from source

Re: [Lazarus] reverse engineering tool wanted

2011-04-20 Thread Marc Santhoff
Am Mittwoch, den 20.04.2011, 18:08 +1000 schrieb alex: http://www.sparxsystems.com.au/ One of the best tools i have used converting java or c to pascal... How long did it take to get that one up and running and how long to be working productively using it? -- Marc Santhoff m.santh

Re: [Lazarus] reverse engineering tool wanted

2011-04-19 Thread Marc Santhoff
Hi, thanks for the hints, I'll see what I can make out of it. Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] reverse engineering tool wanted

2011-04-18 Thread Marc Santhoff
/Pro_Analyzer_for_Delphi_and_Pascal-info.html Is there anything else? Marc -- Marc Santhoff m.santh...@web.de -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Lazarus + FreeBSD

2010-06-04 Thread Marc Santhoff
. Nothing else but third party software, mostly ports, get installed there and many people do use at least a seperate partition (FreeBSD terms) or slice (partition in DOS speak) or another hardrive to store it. -- Marc Santhoff m.santh...@web.de

Re: [Lazarus] Suggestion again: remove GTK1 from IDE and LCL

2010-06-03 Thread Marc Santhoff
as it is for the users of GTK1 beeing bound to use it, because they will have to care for getting and using the right versions of lazarus and fpc. Additionally someone has to document all this in the wiki. But what exactly is the benefit of doing all this work? -- Marc Santhoff m.santh...@web.de

<    1   2   3   >