Re: [Lazarus] SQLDB - Can't attach second SQLite database because transaction

2013-01-11 Thread Reinier Olislagers
On 8-1-2013 13:14, Reinier Olislagers wrote: On Monday, January 7, 2013, Michael Van Canneyt wrote: On Mon, 7 Jan 2013, Ludo Brands wrote: On 07/01/2013 16:01, Michael Van Canneyt wrote: On Mon, 7 Jan 2013, Krzysztof wrote: 2013/1/7 Michael Van Canneyt

Re: [Lazarus] What is GeckoPort version 2 status?

2013-01-11 Thread Joost van der Sluis
On Sat, 2012-11-03 at 02:39 +0400, Maxim Ganetsky wrote: As far as I can see latest SVN version of GeckoPort version 2 is broken. It cannot be compiled via Lazarus package (e.g. each-version directory is missing). Also GeckoPort version 2 cannot be installed via FpPkg (at least with FPC

[Lazarus] Got Pointer, expected Open Array Of Char

2013-01-11 Thread Dave Coventry
Hi, I have a procedure defined as follows: procedure Copybytes(var dst: array of Char; src: array of Char; len: integer); If I call it using the following: Copybytes(@dst[dloc],@src[sloc],16); I get an error: dwg.pas(116,36) Error: Incompatible type for arg no. 2: Got Pointer, expected Open

Re: [Lazarus] Got Pointer, expected Open Array Of Char

2013-01-11 Thread leledumbo
What's the type of dst and src that you pass to the function? Array is not pointer, and I have no idea about open array with var modifier. Open array is compatible with any array (and its subarrays through slicing). -- View this message in context:

Re: [Lazarus] Got Pointer, expected Open Array Of Char

2013-01-11 Thread Dave Coventry
Hi, thanks for the response. On 12 January 2013 07:51, leledumbo leledumbo_c...@yahoo.co.id wrote: What's the type of dst and src that you pass to the function? Array is not pointer, and I have no idea about open array with var modifier. Open array is compatible with any array (and its