Re: [fpc-pascal] Interactive process with TProcess

2008-12-16 Thread leledumbo
@michael: Reading part by part doesn't work, I got junks instead. @vincent: Thanks, I don't know if the page has been extended. I'll see if it fits my need. -- View this message in context: http://www.nabble.com/Interactive-process-with-TProcess-tp21029222p21047510.html Sent from the Free Pasca

Re: [fpc-pascal] Problems with Dynlibs.UnloadLibrary on Linux

2008-12-16 Thread Andrew Brunner
On Tue, Dec 16, 2008 at 3:29 PM, Jonas Maebe wrote: > In what code does it crash? Inside unloadlibrary, or (shortly) afterwards? > What is the backtrace at the point of the crash? It blows out right during the DynLibs.UnloadLibrary(FLibHandle) There is only a read access violation that is raise

Re: [fpc-pascal] Problems with Dynlibs.UnloadLibrary on Linux

2008-12-16 Thread Jonas Maebe
On 16 Dec 2008, at 13:58, Andrew Brunner wrote: I've been experiencing problems with SOs under Linux and am trying to develop a "Plugin" system for my Server I'm porting to Lazarus. I'm confident can get these Plug-ins to Load and Operate just fine at least in (Ubuntu). I can't however, Unloa

[fpc-pascal] Lazarus quit on me

2008-12-16 Thread Frank de Groot / Rent-a-Geek
While I was doing a build, I got the error: "The procedure entry point Nt could not be located in the dynamic link library ntdll.dll" I exited Lazarus, restarted, but now this error appears instead of Lazarus. Can this be solved without re-installing or rebooting? (It's a remotely operated nu

[fpc-pascal] Problems with Dynlibs.UnloadLibrary on Linux

2008-12-16 Thread Andrew Brunner
I've been experiencing problems with SOs under Linux and am trying to develop a "Plugin" system for my Server I'm porting to Lazarus. I'm confident can get these Plug-ins to Load and Operate just fine at least in (Ubuntu). I can't however, Unload them. I want to be able to use the DynLibs.Unload

Re: [fpc-pascal] Interactive process with TProcess

2008-12-16 Thread Vincent Snijders
leledumbo schreef: OK, since no one answers this in Lazarus forum, I'll ask here as it's more FPC (FCL, actually) related than LCL. I want to create an interactive process, so I need to read the output as soon as it's available and write it to the screen (or somewhere else). Here's the partial co

Re: [fpc-pascal] Interactive process with TProcess

2008-12-16 Thread Michael Van Canneyt
On Tue, 16 Dec 2008, leledumbo wrote: > > OK, since no one answers this in Lazarus forum, I'll ask here as it's more > FPC (FCL, actually) related than LCL. I want to create an interactive > process, so I need to read the output as soon as it's available and write it > to the screen (or somewhe

[fpc-pascal] Interactive process with TProcess

2008-12-16 Thread leledumbo
OK, since no one answers this in Lazarus forum, I'll ask here as it's more FPC (FCL, actually) related than LCL. I want to create an interactive process, so I need to read the output as soon as it's available and write it to the screen (or somewhere else). Here's the partial code (a little differe