[Mono-list] Using Wine
max
aranym@adelphia.net
Sun, 1 Feb 2004 17:35:25 -0800
Hi,
I have been trying for the past week to make Wine work properly on my system.
I am running a Slackware 9.1 linux, I have compiled mono from CVS (mono, mcs
and gtk-sharp) and everything works correctly so far.
Gtk# works well. Although, I'd like to make my executables usable on Windows
(like everyone else does), and I just can't get wine to run the simpliest
code:
using System;
using System.Windows.Forms;
namespace MyTest {
class Test {
public static void Main(string []args) {
Form form = new Form();
form.ShowDialog();
}
}
i have tried everything. and my progs always get stucked on the system menu
that it fails to load.
Can someone walk me through a typical installation of wine (and its
dependencies), from bottom up ?
I'd really appreciate that
thanks
max