[Lazarus] compile sqldblaz.lpk for add component palette

2010-10-26 Thread ugaciaka
I want add in palette components component for database: /usr/lib/lazarus/components/sqldb/sqldblaz.lpk but I Wheh compiled this from lazarus: Unable to find the unit of component class TSQLQUERY However I did not understand, you should rebuild lazarus for add a component palette? but if I

Re: [Lazarus] compile sqldblaz.lpk for add component palette

2010-10-27 Thread ugaciaka
You must rebuild lazarus if you want to install additional packages. The package manager automatically suggests to recompile lazarus when you install a new package. Michael. Hi Micheal, in Ubuntu 10.04 component palette for data access and other (sqlite, postgresql, mysql) is already

Re: [Lazarus] gnu debugger

2010-11-27 Thread ugaciaka
You may need to find how to upgrade gdb for linux. Not sure what minimum version is required on linux. Current GDB version for ArchLinux (both i686 and x86_64) is 7.2 (of course the thread starter might have an older version if he has not updated his system). Just for information, as I'm

[Lazarus] regex and lazarus

2010-12-18 Thread ugaciaka
Hi, I know regex and I write program in python and c# with regex. For lazarus I see this http://wiki.lazarus.freepascal.org/Regexpr but but I have not found examples Can someone write me a bit examples? Thank's -- ___ Lazarus mailing list

[Lazarus] send complex command to linux

2010-12-18 Thread ugaciaka
:= TProcess.Create(nil); AStringList := TStringList.Create; while enumFile.MoveNext do begin AProcess.CommandLine := 'flac -cd /home/ugaciaka/prova/prova.flac + | lame -h -b 320 - /home/ugaciaka/prova.mp3'; AProcess.Options := AProcess.Options + [poWaitOnExit, poUsePipes

[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] 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] 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

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

2010-12-22 Thread ugaciaka
2010/12/19 ugaciaka ugaci...@gmail.com: 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