Hi,

> It's not me who's asking for winelib.  I'm just following the 
> instructions - either in monodevelop or on the Borland site that the 
> list was kind enough to refer me to.  And I'm afraid I don't even know 
> what SWF is!  Sorry.

SWF = System.Windows.Forms

> Perhaps we should go back a step.  What do I have to do to get a simple 
> program working that puts up a MessageBox with a message in it?

using System;
using System.Windows.Forms;

namespace WelcomeGUI
{
   class Welcome4
   {
      static void Main( string[] args )
      {
         MessageBox.Show( "Welcome\nto\nC#\nprogramming!" );
      }
   }
}

mcs hello.cs -r:System.Windows.Forms
mono hello.exe

This works fine with the current developer version. It will probably not
work with winelib SWF.

TTFN

Paul
-- 
"He's not the Messiah, he's a very naughty boy!"
- Life of Brian, Monty Python

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to