[Mono-dev] QProcess alternative in mono

2006-05-05 Thread Sharique uddin Ahmed Farooqui
Hi, I'm a Qt developer. I want to port my application to mono since my client want to sell it as comercial application. I have problem. I uses QProcess object in Qt to execute system process or application (such as mplayer). I can give commands to application while it is running (such as

Re: [Mono-dev] QProcess alternative in mono

2006-05-05 Thread Mario Carrión
On 5/5/06, Sharique uddin Ahmed Farooqui [EMAIL PROTECTED] wrote: Hi, I'm a Qt developer. I want to port my application to mono since my client want to sell it as comercial application. I have problem. I uses QProcess object in Qt to execute system process or application (such as mplayer). I can

[Mono-dev] Mono.GetOptions Option Bundles

2006-05-05 Thread Almann T. Goo
I've been using Mono.GetOptions for a compiler project of mine and it is a great library for option parsing. However, there is an issue that I've run into that is slightly troublesome. I wanted to run this issue by the community in case I missed a workaround or a solution--documentation is a bit

[Mono-dev] How to get Mono running on NetBSD 3.x

2006-05-05 Thread Manfred Braun
Hi All, I am new to everything:Using NetBSD and also Mono. I found one reday-to-use binary of mono for NetBSD [mono-1.1.8.3nb1.tgz], but this crashes apps with runtime error. So I tried to build my own binaries from source. But this does not compile. At first, I got compile error:

Re: [Mono-dev] Mono.GetOptions Option Bundles

2006-05-05 Thread Rafael Teixeira
Currently we are API and ABI frozen. You may change local copy and submit a patch to be considered in some future version. Personally I would like not to make things non-declarative, specífically for those two debugging itens we can have some global disabler for such features, so that a release

Re: [Mono-dev] Mono.GetOptions Option Bundles

2006-05-05 Thread Rafael Teixeira
Sorry forgot to think :( Nothing mandates that you use the standard bundle as the basis, you can create your own with just the needed options. The down side is that some functionality would have to be duplicated in that case. :) On 5/5/06, Almann T. Goo [EMAIL PROTECTED] wrote: I've been

[Mono-dev] Re: QProcess alternative in mono

2006-05-05 Thread Miguel de Icaza
Hello, I'm a Qt developer. I want to port my application to mono since my client want to sell it as comercial application. I have problem. I uses QProcess object in Qt to execute system process or application (such as mplayer). I can give commands to application while it is running (such as

Re: [Mono-dev] Mono.GetOptions Option Bundles

2006-05-05 Thread Almann T. Goo
On 5/5/06, Rafael Teixeira [EMAIL PROTECTED] wrote: Nothing mandates that you use the standard bundle as the basis, youcan create your own with just the needed options. The down side isthat some functionality would have to be duplicated in that case. With the current architecture, I am not sure

Re: [Mono-dev] Mono.GetOptions Option Bundles

2006-05-05 Thread Almann T. Goo
This affects the VerboseParsingOfOptions and DebuggingOfOptions members in particular since these are non-virtual properties and you will always have these options regardless of what you may desire. Incidentally, I think the issue would be resolved more or less if the properties in question were

Re: [Mono-dev] QProcess alternative in mono

2006-05-05 Thread Michael L Torrie
On Fri, 2006-05-05 at 17:12 +0530, Sharique uddin Ahmed Farooqui wrote: Hi, I'm a Qt developer. I want to port my application to mono since my client want to sell it as comercial application. I have problem. I uses QProcess object in Qt to execute system process or application (such as

Re: [Mono-dev] QProcess alternative in mono

2006-05-05 Thread Michael Hutchinson
On 5/5/06, Michael L Torrie [EMAIL PROTECTED] wrote: One thing QProcess does implement is the emission of Qt Signals that you can catch with slots to get notification as to when the process has started, when it's ready for standard in, when it has standard out available, and when the process

[Mono-dev] Problem with Console.In.Peek() [hungs]

2006-05-05 Thread Manfred Braun
Hi All! I am new on the road to make some things on my Unix box [which is NetBSD 3.0/i386] and I started using some simple console programs. My problem is, that the method Console.In.Peek() hungs, if no input stream is provided and I just execute the application. If I pipe over like echo 'a' |

[Mono-dev] QProcess alternative in mono

2006-05-05 Thread Manfred Braun
Hi ! I am not an indepth-developer ... The mentioned events are only relevant, to control the I/O-streams of the started process and, on start of the process, they were assigne by the creator of the process. This is not directly an IPC mechnisme and - so far for windows - the most process do

[Mono-dev] AppDomain from unmanaged code and handle_thunk

2006-05-05 Thread Joachim Ante
Hi, We are embedding mono in our application, whenever a user changes a C# file we recompile and reload the assembly. Whenever i reload an assembly i want to create a new AppDomain and activate it. The problem is i need to do this or at least start the process from c code. Optimally i want to:

[Mono-dev] Re: AppDomain from unmanaged code and handle_thunk

2006-05-05 Thread Robert Jordan
What is the recommended way of activating/creating/unloading an appdomain from c code? The recommended way is to do it from managed code. Please search the archive, because there was a discussion about this a couple of months ago.