Re: [Lazarus] Open file dialog speed

2014-05-28 Thread Chris Crori
From: Martin Frb Sent: Wednesday, May 28, 2014 3:31 AM To: Lazarus mailing list Subject: Re: [Lazarus] Open file dialog speed On 27/05/2014 18:15, Chris Crori wrote: Hi guys, Is there anything I can do to speed up the TOpenDialog window in windows? It takes more than 2

Re: [Lazarus] how to set two memos for parallel text editing ?

2014-05-28 Thread Howard Page-Clark
On 28/05/2014 00:46, Etienne Leblois wrote: how to manage that scrolling or arrowing up in one memo will also scroll up the other one ? The following Windows example shows how to synchronise scrolling between two memos (Memo1, Memo2) using scrollbar movement. Responding to memo caret

Re: [Lazarus] EpikTimer v1.0.1 released

2014-05-28 Thread Michael Schnell
On 05/26/2014 05:23 PM, Graeme Geldenhuys wrote: Like its always been done. So it will be a ZIP file containing a directory with the source code and an lpk file to allow using it as a Lazarus package. This is OK for me, provided there is a documentation file that briefly explains how to

Re: [Lazarus] EpikTimer v1.0.1 released

2014-05-28 Thread Michael Schnell
On 05/27/2014 03:54 AM, Paul Breneman wrote: Will EpikTimer work in a console app? If so, an example on the wiki page would sure be appreciated. I need it now (for an Android Linux console program)! :) Soft answer: Yes Long answer: My current test-state of the interfaces.pas unit

Re: [Lazarus] EpikTimer v1.0.1 released

2014-05-28 Thread hinstance
I used EpikTimer on Android ARM, it works Well, at least it seems to work. Why you need an example? Just use it; the process is obvious and straightforward. Add epiktimer unit to uses seciton of ur source file; clear timer, start timer, stop timer, read result 28.05.2014, 13:26, Michael

Re: [Lazarus] Gdb and openocd via lazarus

2014-05-28 Thread Koenraad Lelong
op 21-05-14 20:17, Martin Schreiber schreef: In MSEide the procedure is as follows - I assume same as in Lazarus: In 'Start gdb server command run target' write the command or script which starts the OpenOCD gdb proxy server (I don't know the command). Set 'Wait before connect' to the GDB

Re: [Lazarus] Gdb and openocd via lazarus

2014-05-28 Thread Martin Schreiber
On Wednesday 28 May 2014 12:36:57 Koenraad Lelong wrote: I tried to debug my arm-board with MSEide. I manually started openocd (I need to be root). Maybe it could be done by a root script with setuser flag in 'Project'-'Options'-'Debugger'-'Target'-'Start gdb server command run target'. I

Re: [Lazarus] Gdb and openocd via lazarus

2014-05-28 Thread Koenraad Lelong
op 28-05-14 13:21, Martin Schreiber schreef: I don't think the theme is appropriate for this list. ;-) I hesitated to post in the Lazarus-list, because it's indeed not lazarus-related anymore. I find the theme is appopriate : gdb-debugging of pascal-source. I'll subscribe to yet another

Re: [Lazarus] Gdb and openocd via lazarus

2014-05-28 Thread Michael Ring
If I were you I would try to start as low-level as possible. To do so, please check if your gdb is configured with textui enabled ( try starting it with arm-none-eabi-gdb --tui ) if only commandline shows up then download gdb and recompile it: cd gdb

[Lazarus] what is function header problem ?

2014-05-28 Thread FreeMan
I'm trying port some code, I get this error. IDE code complied is work, rename tool working. what is wrong? Thank you Kubuntu 14.04 x64, fpc svn r27818 lazarus svn r45213 /comp/asg.pas(100,10) Error: function header doesn't match the previous declaration

Re: [Lazarus] what is function header problem ?

2014-05-28 Thread Hans-Peter Diettrich
FreeMan schrieb: I'm trying port some code, I get this error. IDE code complied is work, rename tool working. what is wrong? Thank you Kubuntu 14.04 x64, fpc svn r27818 lazarus svn r45213 /comp/asg.pas(100,10) Error: function header doesn't match the previous declaration

Re: [Lazarus] [FIXED] what is function header problem ?

2014-05-28 Thread FreeMan
interface uses //Graphics, PictureContainer, Classes, Controls, ComCtrls, Dialogs, ImgList, Messages,LCLType, types, InterfaceBase; LCLType, {LCLIntf, LMessages,} Graphics, PictureContainer, Classes, Controls , ImgList, SysUtils, Messages, Types, InterfaceBase; Just changed uses

Re: [Lazarus] what is function header problem ?

2014-05-28 Thread Sven Barth
Am 28.05.2014 16:07 schrieb FreeMan freema...@delphiturkiye.com: /comp/asg.pas(100,10) Error: function header doesn't match the previous declaration

[Lazarus] OpenGL

2014-05-28 Thread Chavoux Luyt
Hi Lazarati I have two questions: 1. Have there ever been a Free Pascal implementation of OpenGL? I would like to learn OpenGL and was wondering if I will be forced to use C++/C or if there are other options. 2. I know there are (or have been) various OpenGL Lazarus components (e.g. GLScene, NX

Re: [Lazarus] OpenGL

2014-05-28 Thread Dmitry Boyarintsev
On Wed, May 28, 2014 at 11:34 AM, Chavoux Luyt chav...@gmail.com wrote: I have two questions: Here're two answers: 1. Have there ever been a Free Pascal implementation of OpenGL? I would like to learn OpenGL and was wondering if I will be forced to use C++/C or if there are other options.

Re: [Lazarus] what is function header problem ?

2014-05-28 Thread FreeMan
It was not any class's part, just normal function, (previous declaration) mean at this moment, define in upper on implementation area. for can use other units. Thank you for answer 28-05-2014 17:51 tarihinde, Hans-Peter Diettrich yazdı: When you override a method in a derived class, the method

Re: [Lazarus] Gdb and openocd via lazarus

2014-05-28 Thread Martin Schreiber
On Wednesday 28 May 2014 12:36:57 Koenraad Lelong wrote: I tried to debug my arm-board with MSEide. I manually started openocd (I need to be root). Is the debug interface connected by USB? Then it is possible to setup an udev rule in order to allow non-root access. Copy a file to

Re: [Lazarus] EpikTimer v1.0.1 released

2014-05-28 Thread Graeme Geldenhuys
On 28/05/14 10:16, Michael Schnell wrote: So it will be a ZIP file containing a directory with the source code and an lpk file to allow using it as a Lazarus package. https://github.com/graemeg/epiktimer/releases This is OK for me, provided there is a documentation file that briefly

Re: [Lazarus] EpikTimer v1.0.1 released

2014-05-28 Thread Tom Lisjac
On Mon, May 26, 2014 at 3:38 AM, Michael Schnell mschn...@lumino.de wrote: I use EpikTimer in my (soon to be released) work on the ActiveNoGUI Widget Type. Here I found, that it is a rather appropriate use for EpikTimer to handle it in a static way, not creating an instance of TEpikTimer