Re: MRU (most recently used) component

2007-09-15 Thread Graeme Geldenhuys
Thanks for all the responses - I'm spoiled for choice now! Graeme. On 14/09/2007, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: > Hi, > > Does Lazarus have a MRU component? If not, anybody know where I could > get one to port. > -- fpGUI - a cross-platform Free Pascal GUI toolkit http://open

Re: [lazarus] mantis report status?

2007-09-15 Thread Marco van de Voort
> Graeme Geldenhuys wrote: >> Hi, >> This one has always puzzled me. What is the difference between a >> report being marked as Resolved or Closed? > > I understand them so: > > Resolved is flag usually setted by developer. This flag means that bug is > fixed or will not be fixed. > > Closed i

Re: [lazarus] Contribute Contactless Measurement Tool

2007-09-15 Thread Marco van de Voort
On Mon, Sep 03, 2007 at 02:52:22PM +0200, Marco van de Voort wrote: > On Mon, Sep 03, 2007 at 02:21:49PM +0400, 12 12 wrote: > > I almost finished work on part (tool) of project for contactless > > measurement of distance via webcam. > > It can: > > - capture image from webcam; > > - measure dista

Re: [lazarus] Contribute Contactless Measurement Tool

2007-09-15 Thread Vincent Snijders
Marco van de Voort schreef: On Mon, Sep 03, 2007 at 02:52:22PM +0200, Marco van de Voort wrote: On Mon, Sep 03, 2007 at 02:21:49PM +0400, 12 12 wrote: I almost finished work on part (tool) of project for contactless measurement of distance via webcam. It can: - capture image from webcam; - mea

[lazarus] Crash when running compiled Carbon app as different user on i386 Mac

2007-09-15 Thread Tobias Giesen
Hello, my app has been running fine lately, so I thought I'd try to log on to Mac OS X as a different user and run the compiled application. As it turns out, it crashes before reaching the main program. The crash only occurs when I launch it by double-clicking the application bundle. When I start

Re: [lazarus] Another icons for Lazarus

2007-09-15 Thread Joost van der Sluis
Op zaterdag 15-09-2007 om 00:50 uur [tijdzone +0200], schreef wile64: > /9/11, Joost van der Sluis <[EMAIL PROTECTED]>: > Well... if you have time, do you also allow requests? > > The icons of the sqldb-components aren't really beautiful. And > the > compon

Re: [lazarus] Another icons for Lazarus

2007-09-15 Thread wile64
2007/9/15, Joost van der Sluis <[EMAIL PROTECTED]>: > > Op zaterdag 15-09-2007 om 00:50 uur [tijdzone +0200], schreef wile64: > > > /9/11, Joost van der Sluis <[EMAIL PROTECTED]>: > > Well... if you have time, do you also allow requests? > > > > The icons of the sqldb-components are

[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] Another icons for Lazarus

2007-09-15 Thread Marc Weustink
wile64 wrote: 2007/9/15, Joost van der Sluis <[EMAIL PROTECTED] >: Op zaterdag 15-09-2007 om 00:50 uur [tijdzone +0200], schreef wile64: > /9/11, Joost van der Sluis <[EMAIL PROTECTED] >: > Well... if you have time, do

RE: [lazarus] Crash when running compiled Carbon app as different user on i386 Mac

2007-09-15 Thread Hess, Philip J
Tobias, I just tried logging in as a different users here and running a Carbon app and it worked fine. It looks like you're getting an exception in the FPC System unit. What version of FPC are you using? Thanks. -Phil -Original Message- From: Tobias Giesen [mailto:[EMAIL PROTECTED]

Re: [lazarus] Crash when running compiled Carbon app as different user on i386 Mac

2007-09-15 Thread Tobias Giesen
Hello, I am using the latest snapshot installers with FPC 2.2.1. I think the cause for the crash is in the LCL and most likely the Carbon widgetset, since unit forms.pp is mentioned in the call stack. I will put some checkpoints in the program and see where that takes me! Cheers, Tobias __

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

2007-09-15 Thread Vincent Snijders
Johannes Nohl schreef: Can't find it. http://www.hu.freepascal.org/lazarus/ 's snapshots still depends on fpc 2.04. They are not there yet. They will appear in the comings week. Vincent _ To unsubscribe: mail [EMAIL PROTECTE

[lazarus] Lazarus crashes: Invalid floating point

2007-09-15 Thread Thierry Andriamirado
Hello all, ok, I'm giving up! I'm using the last svn version of lazarus, and when compiled with gtk 2 lazarus crashes with this kind of error msg: TApplication.HandleException Invalid floating point operation Stack trace: $2ABD835E CODEEXPLOPTS_finalize, line 104 of debugoptionsfrm.

[lazarus] DLL trouble

2007-09-15 Thread Sebastian Kraft
Hi, Isn't it possible to use some functions from a dynamic library and afterwards unload the library? can anybody tell me whats wrong with the following code? This is my library: ++ library testlib1; function GetString: string;export; begin result:='test'; end; exports

Re: [lazarus] DLL trouble

2007-09-15 Thread Sebastian Kraft
sorry... the simplified example I have posted works... The problem seems to stuck in the bigger program.. _ To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject archives at http://www.lazar

Re: [lazarus] DLL trouble

2007-09-15 Thread Michael Van Canneyt
On Sat, 15 Sep 2007, Sebastian Kraft wrote: > Hi, > > Isn't it possible to use some functions from a dynamic library and afterwards > unload the library? > can anybody tell me whats wrong with the following code? > > This is my library: > > ++ > library testlib1; > > fun

Re: [lazarus] DLL trouble

2007-09-15 Thread Christian U.
function GetString: string;export; begin result:='test'; end; exports GetString; end. strings are no standart types and cannto exported from an library without special memmanager, use pchar +++ and here how it is called + var libhandle

Re: [lazarus] DLL trouble

2007-09-15 Thread Sebastian Kraft
On Saturday 15 September 2007 23:03:00 Christian U. wrote: > > function GetString: string;export; > > begin > > result:='test'; > > end; > > > > exports GetString; > > end. > > strings are no standart types and cannto exported from an library > without special memmanager, use pchar > Thanks a lo

Re: [lazarus] DLL trouble

2007-09-15 Thread Marco van de Voort
On Sat, Sep 15, 2007 at 11:03:00PM +0200, Christian U. wrote: >> result:='test'; >> end; >> >> exports GetString; >> end. >> > strings are no standart types and cannto exported from an library without > special memmanager, use pchar Shortstrings can. He of course could have put it in Delph

Re: [lazarus] DLL trouble

2007-09-15 Thread Sebastian Kraft
On Saturday 15 September 2007 23:19:48 Marco van de Voort wrote: > On Sat, Sep 15, 2007 at 11:03:00PM +0200, Christian U. wrote: > >> result:='test'; > >> end; > >> > >> exports GetString; > >> end. > > > > strings are no standart types and cannto exported from an library without > > special mem