Re: [Lazarus] Code Structure / SourceEdit and SyneEdit [Re: Mouse Link in SynEdit (only link-able items)]

2008-12-16 Thread Mattias Gärtner
Zitat von Hans-Peter Diettrich drdiettri...@aol.com: Martin Friebe schrieb: Then how to you handle double width chars? This si one of the problems I still have to address. Even in a proportional font, some chars (Chinese, and other) have twice the width of a normal char. They will 2

[Lazarus] Raw printing error

2008-12-16 Thread Diwakoe
Dear all, I developed a program which has print ability in raw mode and running well on first print but error in next printing. So user only can run once to print, next printing my user must re-run the program again (Error dialog attached). I used printer unit and lazarus 0.9.26 svn: 16885 fpc

Re: [Lazarus] Dynamic Library in Linux

2008-12-16 Thread Felipe Monteiro de Carvalho
To start with, you should ask this in the free pascal mailling list, as this is more related to free pascal then to Lazarus. The classes unit is part of Free Pascal. Second, using the subversion compiler could be the problem. I would try using FPC 2.2.2 instead. -- Felipe Monteiro de Carvalho

Re: [Lazarus] Code Structure / SourceEdit and SyneEdit [Re: Mouse Link in SynEdit (only link-able items)]

2008-12-16 Thread Mattias Gärtner
Zitat von Hans-Peter Diettrich drdiettri...@aol.com: Mattias Gärtner schrieb: Even in a proportional font, some chars (Chinese, and other) have twice the width of a normal char. They will 2 positions in the grid. Actually it is the same issue as tabs. Are these characters inside the

Re: [Lazarus] Raw printing error

2008-12-16 Thread Jesus Reyes
--- El mar 16-dic-08, Diwakoe diwa...@gmail.com escribió: De:: Diwakoe diwa...@gmail.com Asunto: [Lazarus] Raw printing error A: General mailing list lazarus@lazarus.freepascal.org Fecha: martes, 16 diciembre, 2008, 3:18 am Dear all, I developed a program which has print ability in raw

[Lazarus] about gif images

2008-12-16 Thread Héctor Fiandor Rosario
Dear coleagues: I use the FCIcon in my first forms programs. this is an static icon. I catch an icon of a chetahh (or other animal) animated as a gif and I want to use in my forms. I will appreciate any help. yours, Ing. Héctor F. Fiandor hfian...@infomed.sld.cu

Re: [Lazarus] Carbon: G4 vs G5

2008-12-16 Thread Brad Campbell
EarMaster - Bent Olsen wrote: Hi, We have successfully ported our software from Delphi/Win32 to Mac OS X PPC/i386 with Lazarus - after some minor fixes it works great. We are still getting feedbacks from users, and one particular is about getting the application up and running on PowerPC

[Lazarus] TLazIntfImage

2008-12-16 Thread Raistware
Is there any easy and fast way to do a copy of a TLazIntfImage? The class lacks off a .Assign procedure and I would like to avoid the more complex class TPicture. Any help would be apreciated. Thanks. ___ Lazarus mailing list

Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Michael Van Canneyt ha scritto: On Tue, 16 Dec 2008, Andrea Mauri wrote: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I

Re: [Lazarus] Code Structure / SourceEdit and SyneEdit [Re: Mouse Link in SynEdit (only link-able items)]

2008-12-16 Thread Martin Friebe
There are several meanings by the word view I have tried to put some clarification into this. Having finished this mail, I thought I copy 2 fragments up here to the top. If they are not clear in itself, please read on first. And let us find a common approach to name those things Maybe

[Lazarus] Carbon: G4 vs G5

2008-12-16 Thread EarMaster - Bent Olsen
Hi, We have successfully ported our software from Delphi/Win32 to Mac OS X PPC/i386 with Lazarus - after some minor fixes it works great. We are still getting feedbacks from users, and one particular is about getting the application up and running on PowerPC G4 with OS X 10.4.11 - it simply

Re: [Lazarus] csvexporter

2008-12-16 Thread Mattias Gärtner
Zitat von Andrea Mauri andrea.mauri...@gmail.com: Dear all, when I put a csvexporter on a form lazarus automatically adds to my project lazdbexport unit if I am under windows and fpccsvexport if I am under Linux. I didn't try cvsexporter myself. Correct me if I'm wrong: When you drop a

[Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Dear all, when I put a csvexporter on a form lazarus automatically adds to my project lazdbexport unit if I am under windows and fpccsvexport if I am under Linux. So I have to do this: {$IFDEF WINDOWS} lazdbexport; {$ENDIF} {$IFDEF UNIX} fpcsvexport; {$ENDIF} Is it ok? Andrea

Re: [Lazarus] csvexporter

2008-12-16 Thread Vincent Snijders
Andrea Mauri schreef: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and I got an error

Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and I got an error (lazdbexport unit not found), so

Re: [Lazarus] csvexporter

2008-12-16 Thread Michael Van Canneyt
On Tue, 16 Dec 2008, Andrea Mauri wrote: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc at home I tried to recompile the same project and

Re: [Lazarus] csvexporter

2008-12-16 Thread Andrea Mauri
Yes, fpc 2.2.2 and lazarus svn andrea Vincent Snijders ha scritto: Andrea Mauri schreef: I am developing a cross platform application. Yesterday I dropped a csvexporter on a form (and I was under win). The lazdbexport unit have been added by the IDE. Then today, working on my Ubuntu pc

Re: [Lazarus] Drag, Dock and Layout

2008-12-16 Thread Hans-Peter Diettrich
Paul Ishenin schrieb: Launch pidgin, create an irc account for the irc server irc.freenode.org, then join a room #lazarus-ide. Now I've installed pidgin, and tried to get online last weekend. Unfortunately I don't know what's going on, at least my tries seem to be canceld after some time.

Re: [Lazarus] Code Structure / SourceEdit and SyneEdit [Re: Mouse Link in SynEdit (only link-able items)]

2008-12-16 Thread Hans-Peter Diettrich
Martin Friebe schrieb: Maybe for clarifications. I started this using the word view. But I can see there are 2 ways to read this word. - physical view: Like a painter. The final output of the combined text/style information. Most common drawing it to a canvas. But it could be a reader