[Lazarus] Some questions about the development on GNU/Linux

2010-12-19 Thread ugaciaka
Hi, I have a some questions about the development on Linux: 1. in a while loop I added application.processmanages to prevent the form locks but does not seem to be very successful 2. I tried to use screen.cursor: = crHourGlass, but the cursor not changes appearance 3. I saw that the ShowMessage

[Lazarus] Color row in checklistbox

2010-12-19 Thread ugaciaka
Hi, I try color a specified row in checklistbox but without effect. I try this clbFile.Canvas.Brush.Color:=clRed; clbFile.Canvas.FillRect(10,10,50,50); clbFile.Canvas.TextOut(10, 10, clbFile.Items[3]); but not work. any resolutions? tnx --

[Lazarus] How can I (or can this be done) cros s compiling a Lazarus project to other target OS´ s?

2010-12-19 Thread Peter E Williams
Hi All, Let's assume, for the sake of argument that I am using Lazarus 0.9.28.2 with Linux Mandriva 2010. Now say also that I have a fully working Mandriva (2010 Spring edition OS with GNOME) application project in Lazarus. What is the step-by-step procedure for me to cross-compile to MS

[Lazarus] Generating a RPM installation file for my lazarus binary file (Linux)

2010-12-19 Thread Peter E Williams
Hi All, How can I use a binary linux application created by lazarus and generate an RPM installation package for the file? I am using Mandriva 2010 Spring Edition (w. GNOME) and Lazarus 0.9.28.2 PEW Fond Regards, Peter Eric WILLIAMS --- Hobart, Tasmania, Australia --- Phone: +61 (03) 6236-9675

[Lazarus] checklistbox: row checked, count row checked, enumerator and loop

2010-12-19 Thread ugaciaka
Hi, 1. in checlistbox component existing property o function that show total row checked? 2. if possibile show if a row is checked if used enumerator (without using checlistbox.checked[i] in if statment)? I use enum := checlistbox.items.getenumerator and in a loop while enum.movenext but

Re: [Lazarus] How can I (or can this be done) cross com piling a Lazarus project to other target OS´s?

2010-12-19 Thread Honza
2010/12/19 Peter E Williams pewslinuxva...@gmail.com: What is the step-by-step procedure for me to cross-compile to MS Windows XP or Macintosh or Mobile phones? Can this be done? Some info bits are e.g. here: http://wiki.lazarus.freepascal.org/Cross_compiling_for_Win32_under_Linux If not, then

Re: [Lazarus] Some questions about the development on GNU/Linux

2010-12-19 Thread Juha Manninen
1. in a while loop I added application.processmanages to prevent the form locks but does not seem to be very successful 2. I tried to use screen.cursor: = crHourGlass, but the cursor not changes appearance Application.ProcessMessages and Screen.Cursor: = crHourGlass work also with Linux. I

Re: [Lazarus] checklistbox: row checked, count row checked, enumerator and loop

2010-12-19 Thread Sven Barth
On 19.12.2010 11:10, ugaciaka wrote: Hi, 1. in checlistbox component existing property o function that show total row checked? No, that's not possible. You need to do this manually. 2. if possibile show if a row is checked if used enumerator (without using checlistbox.checked[i] in if

Re: [Lazarus] Generating a RPM installation file for my lazarus binary file (Linux)

2010-12-19 Thread Henry Vermaak
2010/12/19 Peter E Williams pewslinuxva...@gmail.com: Hi All, How can I use a binary linux application created by lazarus and generate an RPM installation package for the file? A google search shows me this link first: http://wiki.mandriva.com/en/Mandriva_RPM_HOWTO I think there was an idea

[Lazarus] Default debugging settings in project options

2010-12-19 Thread Juha Manninen
These 3 settings are in Project options - Linking page: Generate Debugging Info For GDB (Slows Compiling) (-g) [X] Display Line Numbers in Run-time Error Backtraces (-gl) Generate dwarf debug information (-gw) For a new project only -gl is selected by default. However, I am still able

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Michael Van Canneyt
On Sat, 18 Dec 2010, zeljko wrote: On Wednesday 15 December 2010 21:14, michael.vancann...@wisa.be wrote: I didn't pay attention on this the first time, but: the buttons no longer display the images associated with the modal results when a questiondialog is used: - start ide - Start new

Re: [Lazarus] Default debugging settings in project options

2010-12-19 Thread Michael Van Canneyt
On Sun, 19 Dec 2010, Juha Manninen wrote: These 3 settings are in Project options - Linking page: Generate Debugging Info For GDB (Slows Compiling) (-g) [X] Display Line Numbers in Run-time Error Backtraces (-gl) Generate dwarf debug information (-gw) For a new project only -gl is

Re: [Lazarus] Some questions about the development on GNU/Linux

2010-12-19 Thread ugaciaka
Application.ProcessMessages and Screen.Cursor: = crHourGlass work also with Linux. I guess you have a CPU-intensive task running. Cursor may change with a short delay and you may not see it if the task was short. I don't see cursor change and the time is almost a minute in to my while

[Lazarus] TTreeView and SortType

2010-12-19 Thread Sven Barth
Hello together! I've experimented a bit with TTreeView and the SortType property. Is it correct behavior that sorting is not applied when SortType is set to stText and nodes are added out of order? I need to do a SortType := stNone; SortType := stText; after the insertion to trigger the

Re: [Lazarus] Some questions about the development on GNU/Linux

2010-12-19 Thread Maxim Ganetsky
19.12.2010 16:31, ugaciaka пишет: Application.ProcessMessages and Screen.Cursor: = crHourGlass work also with Linux. I guess you have a CPU-intensive task running. Cursor may change with a short delay and you may not see it if the task was short. I don't see cursor change and the time is

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Vincent Snijders
2010/12/18 Graeme Geldenhuys graemeg.li...@gmail.com: To Vincent, This is the exact thing I am talking about. Saying a stable release is a few weeks away, things like this should not be happening in Trunk. The mailing list is full of such reports. I guess I am eager to release when it is

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread zeljko
On Sunday 19 December 2010 14:12, Michael Van Canneyt wrote: On Sat, 18 Dec 2010, zeljko wrote: On Wednesday 15 December 2010 21:14, michael.vancann...@wisa.be wrote: I didn't pay attention on this the first time, but: the buttons no longer display the images associated with the modal

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Michael Van Canneyt
On Sun, 19 Dec 2010, zeljko wrote: On Sunday 19 December 2010 14:12, Michael Van Canneyt wrote: On Sat, 18 Dec 2010, zeljko wrote: On Wednesday 15 December 2010 21:14, michael.vancann...@wisa.be wrote: I didn't pay attention on this the first time, but: the buttons no longer display the

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Brian Prentice
Vincent, That is a ridiculous statement and is one of the main reasons why this project is such a miserable failure. All formal releases should be stable. What is needed is a comprehensive test suit that covers all features of Lazarus. This test software should be used for regression

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Vincent Snijders
2010/12/19 Brian Prentice bprent...@webenet.net: Vincent, That is a ridiculous statement and is one of the main reasons  why this project is such a miserable failure.  All formal releases should be stable.   What is needed is a comprehensive test suit that covers all features of Lazarus.  

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Max Vlasov
On Sun, Dec 19, 2010 at 10:15 PM, Brian Prentice bprent...@webenet.netwrote: Vincent, That is a ridiculous statement and is one of the main reasons why this project is such a miserable failure. All formal releases should be stable. Brian, calm down, you have a moral right to have such

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Darius Blaszyk
Hi Brian, It's not my thing normally to reply to rants, but I simply could not resist. From time to time threads lead to discussions where people express their grief with Lazarus (to say it mildly). Perhaps we should create a FAQ on this ;) But to your remarks I can say only this; If you have

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Martin
On 19/12/2010 19:15, Brian Prentice wrote: Vincent, That is a ridiculous statement and is one of the main reasons why this project is such a miserable failure. All formal releases should be stable. What is In my opinion, at best this statement was out of context. It is not unawareness or

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Graeme Geldenhuys
On 18 December 2010 22:56, Sven Barth wrote: When they shouldn't happen in trunk then where do you propose them to happen? Exactly my point. Trunk is UNSTABLE - ALWAYS. So how can Vincent or any other developer think of cutting a stable release directly from Trunk. There is never a

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Graeme Geldenhuys
On 19 December 2010 17:06, zeljko zel...@holobit.net wrote: pls. tell that to Graeme ;) You missed the point I was trying to make Zeljko. -- Regards,   - Graeme - ___ fpGUI - a cross-platform Free Pascal GUI toolkit

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Vincent Snijders
2010/12/19 Graeme Geldenhuys graemeg.li...@gmail.com: On 18 December 2010 22:56, Sven Barth wrote: When they shouldn't happen in trunk then where do you propose them to happen? Exactly my point. Trunk is UNSTABLE - ALWAYS. So how can Vincent or any other developer think of cutting a stable

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Henry Vermaak
On 19 December 2010 19:15, Brian Prentice bprent...@webenet.net wrote: Vincent, That is a ridiculous statement and is one of the main reasons  why this project is such a miserable failure. You've failed to explain this premise. How have you come to the conclusion that this project is a

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread Sven Barth
On 19.12.2010 21:21, Graeme Geldenhuys wrote: And no, I won't take the developer him-/herself should test it good enough Excuse me, but that should happen without saying. If you don't, then something major is wrong in your work process! I'm not saying that the developer should test nothing

Re: [Lazarus] checklistbox: row checked, count row checked, enumerator and loop

2010-12-19 Thread Alexander Klenin
On Sun, Dec 19, 2010 at 20:52, Sven Barth pascaldra...@googlemail.com wrote: On 19.12.2010 11:10, ugaciaka wrote: 2. if  possibile show if a  row is checked if used enumerator (without using checlistbox.checked[i] in if statment)? I use enum := checlistbox.items.getenumerator and in a loop

Re: [Lazarus] console output

2010-12-19 Thread David Emerson
thanks, Martin probably Run menu: Run params, launcher application But: http://bugs.freepascal.org/view.php?id=7867 http://bugs.freepascal.org/view.php?id=12172 Under windows you can compile your application with -WC (actually uncheck -WC Gui App on the linker page) You may

Re: [Lazarus] Message dialogs in Lazarus

2010-12-19 Thread zeljko
On Sunday 19 December 2010 22:07, Sven Barth wrote: programs for such things could be written... but here the same problem applies as in every open source project: someone has to do it... +1 -- ___ Lazarus mailing list