[lazarus] Where is Lazarus snapshot depending on fpc 2.2 for linux?

2007-09-15 Thread Johannes Nohl
Can't find it. http://www.hu.freepascal.org/lazarus/ 's snapshots still depends on fpc 2.04. Thanks _ To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject archives at http://www.lazarus.fre

Re: [lazarus] Lazarus on one window (aka SDI)

2007-09-11 Thread Johannes Nohl
> > I've the same layout in separate windows. I never can get used to delphi > > versions where they are placed in one window, since whin I want to edit > > As I mentioned, I have done the same as you and am very happy with > separate windows. On the other hand it might be good to let the > develop

[lazarus] win32 debugger crashes sqlite

2006-11-26 Thread Johannes Nohl
Dear list, I'm using sqlite (Version 2) component (TSQliteDataset) within lazarus. My code ist like this: SQLiteDataset1.FileName := 'xy.db'; SQLiteDataset1.TableName := 'settings'; with SQLiteDataset1 do begin SQL := 'SELECT name, value FROM settings;'; Open; // <-- Crash here First;

Re: [lazarus] FP/Lazarus for production use

2006-07-24 Thread Johannes Nohl
Dear List! Well, because a lot of people asked that this is a FAQ for FPC: http://www.freepascal.org/faq.html#general-license as well as for lazarus: http://www.lazarus.freepascal.org/modules.php?op=modload&name=FAQ&file=index&myfaq=yes&id_cat=1#q56 I had a look in the FAQ section, this is the

Re: [lazarus] FP/Lazarus for production use

2006-07-22 Thread Johannes Nohl
Also I'm not planning to do any production use, the more interesting question - out of my view - is the legal issue. Technical things you can try... What do the licences of FP and Lazarus mean for a program? For example can I sell a program written with lazarus/FP? Do I have to publish the sourc

[lazarus] Lazarus on ReactOS

2006-06-26 Thread Johannes Nohl
Does anybody know what about lazarus running on reactOS (http://www.reactos.org/)? Please let me know if it's worth installing it. ReactOS is a Windows Clone so I think fpc and lazarus for win32 should work. But what about the native win32 GUI? It's a nice idea having a testing platform in linux

Re: [lazarus] Lazarus installation on SuSE

2006-04-05 Thread Johannes Nohl
> desktop-file-utils-0.7-2.1.i586.rpm > desktop-file-utils-0.7-2.1.src.rpm > gdk-pixbuf-devel-0.22.0-64.1.i586.rpm > gtk+-devel-1.2.6-1.i386.rpm > gtk-devel-1.2.10-882.1.i586.rpm I'm not using more than that, as you! What I do is using the fpc rpms from lazarus at sourceforge (they install clean w

Re: [lazarus] Still problem with GetPixel

2006-03-07 Thread Johannes Nohl
> > My Lazarus 0.9.13 still produces exception when using Canvas.Pixels > > (GetPixel). Some time ago the list said it is fixed. Dows I use wrong > > version? > > I must have missed this mail. Who said, it is implemented? Hm, maybe I was dreaming... > > What to do? > > a) implement GetDCPixel for

[lazarus] Still problem with GetPixel

2006-03-07 Thread Johannes Nohl
Dear list! My Lazarus 0.9.13 still produces exception when using Canvas.Pixels (GetPixel). Some time ago the list said it is fixed. Dows I use wrong version? My System is SuSE 10.0. What to do? _ To unsubscribe: mail [EMAIL PR

Re: [lazarus] Who Discussed Linker Slowness?

2006-02-13 Thread Johannes Nohl
And there's really no way to accelerate linking - in any way? Maybe (for testing purposes only) just create a library per unit and form and run it from a earlier compiled and already linked application? It is boring to compare to delphi, allways. But there must be different ways to target. If it is

Re: [lazarus] Who Discussed Linker Slowness?

2006-02-12 Thread Johannes Nohl
Isn't it possible to run a compiled application without linking it together before? For testing a lazarus application it would be enough. If it's possible you could add a "Final Build" Menu item. Or am I completly out of logic? (I'm not very familliar with "internal stuff") __