Re: [lazarus] Can´t find unit graphics...

2007-03-02 Thread tanila
Am Donnerstag, den 01.03.2007, 16:05 -0300 schrieb Gustavo Enrique Jimenez: When I mix old versions with new versions, the compiler and/or lazarus get confused about what files to compile. This is due to symlinks pointing to the wrong file. My fault, not compiler fault. Can you uninstall

[lazarus] Unable to print out nor create a postscript in 2-byte fonts

2007-03-02 Thread Haruyuki FUJIMAKI
Hello, I want to print out or create a postcsript of a document in Japanese. However, I found that according to PostscriptCanvas.pas, at present, only 5 Font.Name, 'times', 'monospaced', 'serif', 'sansserif', and 'symbol' are supported (this itself is a great work, thanks). Those 5 fonts may be

[lazarus] Question: Multiprocessor Systems

2007-03-02 Thread tanila
Hello all, is there an easy way to find out how many processors are in the system an Lazarus-Application is running ? I would like to make experiences with multithreadded application and how to get benefits with more than one cpu. Another question: Are this magic doual/quad-core cups real

Re: [lazarus] Unable to print out nor create a postscript in 2-byte fonts

2007-03-02 Thread Vincent Snijders
Haruyuki FUJIMAKI schreef: Hello, I want to print out or create a postcsript of a document in Japanese. However, I found that according to PostscriptCanvas.pas, at present, only 5 Font.Name, 'times', 'monospaced', 'serif', 'sansserif', and 'symbol' are supported (this itself is a great

Re: [lazarus] resource strings in constants

2007-03-02 Thread Graeme Geldenhuys
On 3/1/07, Michael Van Canneyt [EMAIL PROTECTED] wrote: Is it possible to use resource strings in constants and be able to translate them with 'gettext' unit at runtime? No. Even in Delphi, this does not work :/ Anybody else got some idea how I could solve this problem? I have enumerated

Re: [lazarus] Question: Multiprocessor Systems

2007-03-02 Thread Graeme Geldenhuys
On 3/2/07, tanila [EMAIL PROTECTED] wrote: I would like to make experiences with multithreadded application and how to get benefits with more than one cpu. All you should need to do is create multiple threads in your system and the OS and CPU(s) will handle the rest. No need to do something

Re: [lazarus] Question: Multiprocessor Systems

2007-03-02 Thread tanila
Great thanks. Sorry for this many tipos... I didn´t sleep enough this night, I think. tanila Am Freitag, den 02.03.2007, 11:20 +0200 schrieb Graeme Geldenhuys: On 3/2/07, tanila [EMAIL PROTECTED] wrote: I would like to make experiences with multithreadded application and how to get

RE: [lazarus] WikiHelp

2007-03-02 Thread Pieter Valentijn
The osF wiki. I follow the link manualy from my browser and it said to me you need te be logged in. http://www.osfinancials.org Met vriendelijke groet, Pieter Valentijn Delphidreams http://www.delphidreams.nl -Oorspronkelijk bericht- Van: Christian Ulrich [mailto:[EMAIL PROTECTED]

RE: [lazarus] WikiHelp

2007-03-02 Thread Pieter Valentijn
So I gess it must be something else. I use this XML. Met vriendelijke groet, Pieter Valentijn Delphidreams http://www.delphidreams.nl -Oorspronkelijk bericht- Van: Christian Ulrich [mailto:[EMAIL PROTECTED] Verzonden: vrijdag 2 maart 2007 4:19 Aan: lazarus@miraclec.com Onderwerp:

Re: [lazarus] Question: Multiprocessor Systems

2007-03-02 Thread Siegfried Göricke
The easiest way under Linux to get some information about the processors is to read the file /proc/cpuinfo. For each also virtual processor you find a entry. Here the output of my system(Dual xenon4 with hyperthreading). processor : 0 vendor_id : GenuineIntel cpu family : 15

Re: [lazarus] Question: Multiprocessor Systems

2007-03-02 Thread Albert Zeyer
I don't know if there is any possibility to define the CPU, on which a special thread should run on. Is there any? Because usually, this is something your OS should handle because it knows best about all the other parallel processes. And it's perhaps not always the best solution for your

Re: [lazarus] Question: Multiprocessor Systems

2007-03-02 Thread Siegfried Göricke
Am Freitag, 2. März 2007 14:19 schrieb Albert Zeyer: I don't know if there is any possibility to define the CPU, on which a special thread should run on. Is there any? This is little bit more difficult. on windows you can set the cpu affinity

Re: [lazarus] WikiHelp

2007-03-02 Thread Christian Ulrich
I follow the link manualy from my browser and it said to me you need te be logged in. I have checked out 2/3 of the osFinancials wiki without loggin in look at your server log for Mozilla 4.0 (compatible; WikiHelp) I have added an corrected xml definition to svn (you have forgot to change one

Re: [lazarus] resource strings in constants

2007-03-02 Thread mramirez
Quoting Graeme Geldenhuys [EMAIL PROTECTED]: Is it possible to use resource strings in constants and be able to translate them with 'gettext' unit at runtime? TRASLATE THEM AT RUNTIME ? Then what you need are variables, not constants. Resources, (strings, images, or else), where intended to

[lazarus] compiling sqlite3laz package

2007-03-02 Thread tanila
hello all, i have the following message compiling sqlite3laz-package: /home/tanila/lazarus/components/sqlite/sqlitecomponenteditor.pas(179,52) Error: Illegal type conversion: enumeration type to TObject The source looks good, but the type-casting seems not to work, I think. I am using lazarus

RE: [lazarus] Search at Properties/Events pane

2007-03-02 Thread George Birbilis
If the reason for the search is because the component has such a lot of properties and it is hard to find, then Lazarus already has a solution. It's the Object Inspector's Favorites tab. For any component type, you can add the most used properties to the Favorites tab for easy access the

RE: [lazarus] Search at Properties/Events pane

2007-03-02 Thread George Birbilis
A good place for this is here: http://wiki.lazarus.freepascal.org/Feature_Ideas Thanks for pointing to this, just edited the wiki there George Birbilis ([EMAIL PROTECTED]) Computer Informatics Engineer Microsoft MVP J# for 2004-2007 Borland Spirit of Delphi 3D, QuickTime,

[lazarus] Problem with Application.OnHint

2007-03-02 Thread Jeff Steinkamp
I am having a bit of problem with the following: application.HintColor := clYellow; It does not change the color of the hint. I have even gone as far as changingthe Default HintColor in the Application.inc file and recompiling and I still get that crappy gray color as the hint background.

Re: [lazarus] resource strings in constants

2007-03-02 Thread Graeme Geldenhuys
On 3/2/07, mramirez [EMAIL PROTECTED] wrote: Is it possible to use resource strings in constants and be able to translate them with 'gettext' unit at runtime? TRASLATE THEM AT RUNTIME ? What I meant by runtime is when the application starts, I do the resourcestring translation (in the .lpr

Re: [lazarus] compiling sqlite3laz package

2007-03-02 Thread Luiz Americo Pereira Camara
tanila wrote: hello all, i have the following message compiling sqlite3laz-package: /home/tanila/lazarus/components/sqlite/sqlitecomponenteditor.pas(179,52) Error: Illegal type conversion: enumeration type to TObject This code is ugly and i plan to rewrite ASAP. As a workaround try to do