Re: [fpc-pascal] TProcess vs RunProcess()

2017-01-28 Thread Lars
On Thu, January 26, 2017 7:28 am, Michael Van Canneyt wrote: > > > On Thu, 26 Jan 2017, Graeme Geldenhuys wrote: > > >> Hi, >> >> >> Whats the differences or pros and cons between using TProcess vs >> RunProcess(). >> > > TProcess gives you full access to the process. You can kill it, > pause it,

[fpc-pascal] DBLib was updated, rev 35345, where I can found the new dblib.dll?

2017-01-28 Thread Marcos Douglas B. Santos
Hi, I'm using FPC 3.0.1. I've updated my sources and saw that dblib was updated, specifically in revision 35345. My doubts are: 1. I need to update my dblib.dll too? 2. If so, I could get this new version compiled in some FTP? I checked this link below and didn't find a new compiled version. ft

Re: [fpc-pascal] Feature announcement: Interface RTTI

2017-01-28 Thread Anthony Walter
This is fantastic news. Thank you for all you work Sven. This has been committed to the main branch? I'll be testing shortly. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Feature announcement: Interface RTTI

2017-01-28 Thread silvioprog
On Sat, Jan 28, 2017 at 9:29 AM, Sven Barth wrote: > Hello together! > > I'm pleased to finally announce the addition of Interface RTTI to Free > Pascal. > > Interface RTTI essentially provides a list of all methods available in > an interface if it's declared is parsed with $M+ or has such an >

Re: [fpc-pascal] Feature announcement: Interface RTTI

2017-01-28 Thread Sven Barth
On 28.01.2017 15:25, Michael Van Canneyt wrote: > > > On Sat, 28 Jan 2017, Sven Barth wrote: > >> Hello together! >> >> I'm pleased to finally announce the addition of Interface RTTI to Free >> Pascal. >> >> Interface RTTI essentially provides a list of all methods available in >> an interface i

Re: [fpc-pascal] Feature announcement: Interface RTTI

2017-01-28 Thread Michael Van Canneyt
On Sat, 28 Jan 2017, Sven Barth wrote: Hello together! I'm pleased to finally announce the addition of Interface RTTI to Free Pascal. Interface RTTI essentially provides a list of all methods available in an interface if it's declared is parsed with $M+ or has such an interface as parent.

Re: [fpc-pascal] Any use notes for javapp

2017-01-28 Thread Jonas Maebe
On 27/01/17 02:34, Jon Foster wrote: So does anyone have any hints, tips, use notes, instructions, ... for how to use the "javapp" tool? I had accidentally disabled my subscription when you sent your previous question about this. At first sight, the problem is that javapp does not work right

Re: [fpc-pascal] Pipe vs Memory buffer.

2017-01-28 Thread fredvs
Hello. Some other news from the front: var BufferURL, buffadd: tbytes; ... setlength(BufferURL, PipeBufferSize); setlength(buffadd, PipeBufferSize); CreatePipeHandles(InHandle, OutHandle, PipeBufferSize); InPipe := TInputPipeStream.Create(InHandle); OutPipe := TOutputPipeStream.

[fpc-pascal] Feature announcement: Interface RTTI

2017-01-28 Thread Sven Barth
Hello together! I'm pleased to finally announce the addition of Interface RTTI to Free Pascal. Interface RTTI essentially provides a list of all methods available in an interface if it's declared is parsed with $M+ or has such an interface as parent. For now however this only applies to COM styl