Re: [lazarus] Code Folding regions in Lazarus

2007-07-24 Thread Graeme Geldenhuys
On 24/07/07, Marc Weustink [EMAIL PROTECTED] wrote: For IDE related hits, I would prefer {%REGION 'Description about the fold'} Code .. .. {%ENDREGION} (since it is no compiler directive) :-) Well spotted Marc. After my post, I thought the exact same thing. Regards, - Graeme

Re: [lazarus] Component or library for HTTP and/or WebDAV protocol on Mac OS X

2007-07-24 Thread Marco van de Voort
On Mon, Jul 23, 2007 at 03:35:51PM +0200, Tobias Giesen wrote: I am ready to invest a lot of time into this, so if I have to create something new or port a library that currently works on Windows or Linux, how should I proceed? Is there a library that I should port over to Macintosh? Probably

Re: [lazarus] Problem with lazreport

2007-07-24 Thread Swen Heinig
Jesus Reyes schrieb: --- Swen Heinig [EMAIL PROTECTED] escribió: If a tiger appears you have a real problem. Then the Lazarus cheetah has run away. ;-) Currently it's not possible to use lazreport (and some other packages) with the win64 version of Lazarus. You can alternatively

Re: [lazarus] Linux/Printing Question

2007-07-24 Thread Michael Van Canneyt
On Mon, 23 Jul 2007, Lee Jenkins wrote: Hi all, This is quite a bit OT since the only thing related to Lazarus is that I will use to write the software. One of my company's main products does a lot of prep notifications to various printers on the network. For a single order (sale),

Re: [lazarus] Making Configure Build Lazarus more user friendly

2007-07-24 Thread Lord Satan
On Tue, 24 Jul 2007 10:06:07 +0200 Giuliano Colla [EMAIL PROTECTED] wrote: This one is how it looks when you open the dialog. Sorry to say, but that is ugly. I would like the dialog to remember that I always want to see the advanced options. Is that possible?

Re: [lazarus] Making Configure Build Lazarus more user friendly

2007-07-24 Thread Giuliano Colla
Lord Satan ha scritto: On Tue, 24 Jul 2007 10:06:07 +0200 Giuliano Colla [EMAIL PROTECTED] wrote: This one is how it looks when you open the dialog. Sorry to say, but that is ugly. I would like the dialog to remember that I always want to see the advanced options. Is

[lazarus] Odd text file problem

2007-07-24 Thread Tony Maro
I'm updating CBT to compile with the latest Lazarus and I'm having problems with my file generation routine from inside a component. It calls: procedure TChkPrinter.PrintChecks; var MyFile: TextFile; FileName: String; // extraneous info removed begin // more extraneous info

Re: [lazarus] Odd text file problem

2007-07-24 Thread Michael Van Canneyt
On Tue, 24 Jul 2007, Tony Maro wrote: I'm updating CBT to compile with the latest Lazarus and I'm having problems with my file generation routine from inside a component. It calls: procedure TChkPrinter.PrintChecks; var MyFile: TextFile; FileName: String; // extraneous

Re: [lazarus] Odd text file problem

2007-07-24 Thread Tony Maro
On Tue, 2007-07-24 at 17:33 +0200, Michael Van Canneyt wrote: Try a strace of your program: strace -o log.txt ./myprogram After execution, you can open the log.txt file, and you should see somewhere a line: open(/tmp/cbtrack.ps,SOME OPTIONS) = (grep for the filename) if this line is

Re: [lazarus] Shift+Tab doesn't work as expected?

2007-07-24 Thread Tony Maro
On Tue, 2007-07-24 at 11:27 -0400, Tony Maro wrote: Tab through components on a form works fine. Shouldn't shift-tab go backwards through the same list? Mine jumps around just the buttons on the form with shift+tab and skips most of the text boxes. Yes, I've set my taborder correctly.

[lazarus] Wow, Kudos to the GTK2 team whoever you are!

2007-07-24 Thread Tony Maro
I've finally got The ORIGINAL Lazarus built application (TM) (hehe) -- originally started in June of 2002 -- built and running in the latest stable Lazarus. It hasn't been compiled on a recent Lazarus in something like three years. It's amazing how many changes there have been to the unit

[lazarus] Shift+Tab doesn't work as expected?

2007-07-24 Thread Tony Maro
Tab through components on a form works fine. Shouldn't shift-tab go backwards through the same list? Mine jumps around just the buttons on the form with shift+tab and skips most of the text boxes. Yes, I've set my taborder correctly. Tested and got the same results with both GTK+ and GTK 2.

Re: [lazarus] Wow, Kudos to the GTK2 team whoever you are! (one caveat)

2007-07-24 Thread Tony Maro
On Tue, 2007-07-24 at 11:48 -0400, Tony Maro wrote: I did however have one form that if I showed it modal, closed it, and showed it modal again would crash the app. I changed it to dynamically create the form just prior to showing it to fix the problem. Something else, I seem to get left

Re: [lazarus] Wow, Kudos to the GTK2 team whoever you are!

2007-07-24 Thread Luca Olivetti
En/na Tony Maro ha escrit: And, it compiled and ran just the same in GTK 2, so I'm excited to be able to release a GTK 2 version of it! My experience mirros yours, but before releasing it, stress-test it. My preliminary tests show that the gtk2 interface leaks memory:

Re: [lazarus] Form designer code inside .pas unit

2007-07-24 Thread Mattias Gärtner
Zitat von Graeme Geldenhuys [EMAIL PROTECTED]: On 23/07/07, Mattias Gärtner [EMAIL PROTECTED] wrote: The lfm reader/writer was at hand at the time. Nowadays we could use the xml reader/writer too, although that is less human readable. Using pascal source as file format would be possible