Re: [Lazarus] StringGrid performance problems

2011-05-21 Thread zeljko
On Friday 20 of May 2011 19:19:30 Julio César Gázquez wrote: El 20/05/11 11:24, Alexsander Rosa escribió: I've noticed that (native Listview is slow in Windows) the hard way: I was proud about how fast my app were on Linux then ran it on Windows and the hourglass became the leading actor.

[Lazarus] compile errors trying to create array of tbutton.

2011-05-21 Thread Peter Williams
type Tarray_of_tbutton = array of tbutton; TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); procedure MyArrayButtonsClick(Sender: TObject); procedure define_3x3_button_array; private { private declarations } public { public

Re: [Lazarus] TIBConnection + LCLNoGui + FreeBSD

2011-05-21 Thread Marco van de Voort
On Wed, May 18, 2011 at 03:45:43PM -0300, Leonardo M. Ram? wrote: The conflict is between interfaces unit and FreeBSD on a headless machine (without graphical user interface). There is an open bugreport for that. http://bugs.freepascal.org/view.php?id=6259 I never looked into it, since I

Re: [Lazarus] compile errors trying to create array of tbutton.

2011-05-21 Thread Mattias Gaertner
On Sun, 22 May 2011 01:37:35 +1000 Peter Williams peterericwilli...@gmail.com wrote: type Tarray_of_tbutton = array of tbutton; TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); procedure MyArrayButtonsClick(Sender: TObject); procedure

Re: [Lazarus] TIBConnection + LCLNoGui + FreeBSD

2011-05-21 Thread Alexander Klenin
On Thu, May 19, 2011 at 23:53, Michael Schnell mschn...@lumino.de wrote: Now as said somehow implicitly within TAChart (what I cant comment on, as I don't know it),event driven programming or an external GUI framework might be used. This seems likely, as otherwise it would not request for the

[Lazarus] Need help about lhelp

2011-05-21 Thread Salvatore Coppola
Hi i need to show a particular hcontext helpfile: filechm.chm hcontext: 25 tried with lhelp filechm.chm --context 25 but doesn't work (always the same page was showed) TIA Salvatore -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] compile errors trying to create array of tbutton.

2011-05-21 Thread Peter Williams
Hi Mattias, On Sun, May 22, 2011 at 2:46 AM, Mattias Gaertner nc-gaert...@netcologne.de wrote: On Sun, 22 May 2011 01:37:35 +1000 Peter Williams peterericwilli...@gmail.com wrote: [...]        my_array_of_tbutton[ array_count ].OnClick :=          myArrayButtonsClick; You forgot the

[Lazarus] IDE Options implementation question

2011-05-21 Thread John Repucci
I would like to mimic the Lazarus IDE Options window for my program. Can anyone point me to an example with a similar implementation? What object is used on the left side and how is it populated? Is there a way I could open the editor or the IDE Options inside the Lazarus editor? --

Re: [Lazarus] Need help about lhelp

2011-05-21 Thread Andrew Haines
On 05/21/11 17:18, Salvatore Coppola wrote: Hi i need to show a particular hcontext helpfile: filechm.chm hcontext: 25 tried with lhelp filechm.chm --context 25 but doesn't work (always the same page was showed) TIA Salvatore -- I will try to fix this. Can you send me the chm

Re: [Lazarus] IDE Options implementation question

2011-05-21 Thread Mattias Gaertner
On Sat, 21 May 2011 16:56:26 -0500 John Repucci john.repu...@gmail.com wrote: I would like to mimic the Lazarus IDE Options window for my program. Can anyone point me to an example with a similar implementation? What object is used on the left side and how is it populated? A TTreeView. See

Re: [Lazarus] IDE Options implementation question

2011-05-21 Thread Martin
On 21/05/2011 22:56, John Repucci wrote: I would like to mimic the Lazarus IDE Options window for my program. Can anyone point me to an example with a similar implementation? What object is used on the left side and how is it populated? Is there a way I could open the editor or the IDE Options