Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-25 Thread Miguel de Icaza
Problem is that the app ends immediately, I don't see anything on the screen... Maybe I'm just misunderstanding the whole thing, I don't know... That is usually a crash, but you do not see it. Miguel ___ Mono-devel-list mailing list

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-25 Thread Miguel de Icaza
Application.Iteration += delegate { Application.Refresh(); }; With the above you will be busy-looping. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-25 Thread Miguel de Icaza
Problem is that the app ends immediately, I don't see anything on the screen... Maybe I'm just misunderstanding the whole thing, I don't know... It works fine for me. I bet the problem is that you did not install the shared library in a place where your dynamic linker can find it.

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-25 Thread Miguel de Icaza
...@terra.es Sent: 11 May 2010 08:21 To: Miguel de Icaza Cc: mono-devel-list@lists.ximian.com; miguel.nov...@gmail.com Subject: Re: [Mono-dev] Playing with Mono.Terminal, no success Hi Miguel, Well, here's my code (I tried a different example than the one sent before) using System

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-20 Thread pablosantosl...@terra.es
Hi, Any updates on this? Thanks, pablo On 11/05/2010 9:21, pablosantosl...@terra.es wrote: Hi Miguel, Well, here's my code (I tried a different example than the one sent before) using System; using Mono.Terminal; namespace clustermgr { class MainClass { public

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-13 Thread Russ Clarke
May 2010 08:21 To: Miguel de Icaza Cc: mono-devel-list@lists.ximian.com; miguel.nov...@gmail.com Subject: Re: [Mono-dev] Playing with Mono.Terminal, no success Hi Miguel, Well, here's my code (I tried a different example than the one sent before) using System; using Mono.Terminal; namespace

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-11 Thread pablosantosl...@terra.es
Hi Miguel, Well, here's my code (I tried a different example than the one sent before) using System; using Mono.Terminal; namespace clustermgr { class MainClass { public static void Main(string[] args) { Application.Init(false); Dialog d = new

Re: [Mono-dev] Playing with Mono.Terminal, no success

2010-05-10 Thread Miguel de Icaza
Hello, I'm trying the simple sample at: http://www.mono-project.com/MonoCurses Application.Init (false); Dialog d = new Dialog (40, 8, Hello); d.Add (new Label (0, 0, Hello World)); Application.Run (d); on an OpenSuse box. But it doesn't work for me, it just exits and

[Mono-dev] Playing with Mono.Terminal, no success

2010-05-08 Thread pablosantosl...@terra.es
Hi there, I'm trying the simple sample at: http://www.mono-project.com/MonoCurses Application.Init (false); Dialog d = new Dialog (40, 8, Hello); d.Add (new Label (0, 0, Hello World)); Application.Run (d); on an OpenSuse box. But it doesn't work for me, it just exits and breaks the