зеркало из https://github.com/mono/mail-archives.git
153 строки
6.6 KiB
HTML
153 строки
6.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Gtk-sharp-list] ok you got me, I'm lost!
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:craig%40ip80.com">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
|
|
<LINK REL="Previous" HREF="003403.html">
|
|
<LINK REL="Next" HREF="003409.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Gtk-sharp-list] ok you got me, I'm lost!
|
|
</H1>
|
|
<B>Craig Williams
|
|
</B>
|
|
<A HREF="mailto:craig%40ip80.com"
|
|
TITLE="[Gtk-sharp-list] ok you got me, I'm lost!">craig@ip80.com
|
|
</A><BR>
|
|
<I>Tue, 17 Feb 2004 12:08:26 -0500</I>
|
|
<P><UL>
|
|
<LI> Previous message: <A HREF="003403.html">[Gtk-sharp-list] ok you got me, I'm lost!
|
|
</A></li>
|
|
<LI> Next message: <A HREF="003409.html">[Gtk-sharp-list] ok you got me, I'm lost!
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#3405">[ date ]</a>
|
|
<a href="thread.html#3405">[ thread ]</a>
|
|
<a href="subject.html#3405">[ subject ]</a>
|
|
<a href="author.html#3405">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>Thanks Jon and Shantanu - I managed to get gtk on and the application now
|
|
seems to find everything.
|
|
|
|
It doesn't do anything and thats because I based the starting thread code on
|
|
what I know of ms.net and so I'm guessing it's
|
|
different.
|
|
|
|
How did you guys learn this ? The docs are well non existant as far as do
|
|
you use glade or something else or art? Maybe it will help if I tell you I
|
|
want to develop a gui that doesn't conform to any present standards but must
|
|
run inside gnome.
|
|
|
|
thanks a lot
|
|
|
|
C
|
|
|
|
|
|
----- Original Message -----
|
|
From: "Jonathan Pryor" <<A HREF="mailto:jonpryor@vt.edu">jonpryor@vt.edu</A>>
|
|
To: "Nick Van Eeckhout" <<A HREF="mailto:kaoskoder@pandora.be">kaoskoder@pandora.be</A>>
|
|
Cc: <<A HREF="mailto:gtk-sharp-list@lists.ximian.com">gtk-sharp-list@lists.ximian.com</A>>
|
|
Sent: Tuesday, February 17, 2004 7:23 AM
|
|
Subject: Re: [Gtk-sharp-list] ok you got me, I'm lost!
|
|
|
|
|
|
><i> Below...
|
|
</I>><i>
|
|
</I>><i> On Tue, 2004-02-17 at 04:05, Nick Van Eeckhout wrote:
|
|
</I>><i> > I messed a bit around with sqlsharp.exe (on win) and the program would
|
|
</I>><i> > run if i copied it to the bin dir with all the necessary dll's but not
|
|
</I>><i> > out of that directory.
|
|
</I>><i> > So it makes me think that this has something to do with the fact that
|
|
</I>><i> > the mono GAC is not yet finished. You can put .net dll's in the Global
|
|
</I>><i> > Assembly Cache so they come widely available. I don't know if this
|
|
</I>><i> > affects other dll's like GTK+.
|
|
</I>><i>
|
|
</I>><i> It has less to do with Mono's GAC not being finished, and more to do
|
|
</I>><i> with the Gtk# DLLs not being Shared Assemblies (meaning, they're not
|
|
</I>><i> signed, don't have a public key, and thus couldn't be placed in the GAC
|
|
</I>><i> even if Mono had one).
|
|
</I>><i>
|
|
</I>><i> I'm not sure when this will be fixed (hopefully before Mono's GAC is
|
|
</I>><i> complete, so we can have a test case ;-), but for the time being,
|
|
</I>><i> they're private assemblies, and thus *must* be in the same directory as
|
|
</I>><i> the executable.
|
|
</I>><i>
|
|
</I>><i> <snip/>
|
|
</I>><i> > I have gtk# installed but I can't get it to work. Seems it wants some
|
|
</I>><i> > gtk+ files and even though I have the dll's it can't use them, hell I
|
|
</I>><i> > can't
|
|
</I>><i> > even register them using regsvr32.
|
|
</I>><i>
|
|
</I>><i> `regsvr32' is used to register COM DLLs (DLLs with a DllRegisterServer()
|
|
</I>><i> export, among others), which doesn't describe GTK+ or Gtk#. So it's
|
|
</I>><i> perfectly sensible that regsvr32 wouldn't do anything. :-)
|
|
</I>><i>
|
|
</I>><i> > I've read all the docs I could find, I've search google and the lack
|
|
</I>><i> > of material on exactly how to go about using gtk# is a little
|
|
</I>><i> > worrying! Is this project well supported and is development moving
|
|
</I>><i> > forward? I tried looking at the gtk+ website and I'm not sure what the
|
|
</I>><i> > hell I'm looking at.
|
|
</I>><i>
|
|
</I>><i> Gtk# is a managed wrapper over GTK+. Thus, you need GTK+ installed and
|
|
</I>><i> working, and the GTK+ libraries either need to be (1) in the same
|
|
</I>><i> directory as your application, or (2) in the PATH, or (3) installed in a
|
|
</I>><i> well-known location, like %WINDIR%\system32.
|
|
</I>><i>
|
|
</I>><i> It's been awhile since I've done anything with Windows, though, so
|
|
</I>><i> hopefully someone else can elaborate.
|
|
</I>><i>
|
|
</I>><i> You can find a GTK+ for Windows install here, as part of the Gimp:
|
|
</I>><i>
|
|
</I>><i> <A HREF="http://www.gimp.org/~tml/gimp/win32/downloads.html">http://www.gimp.org/~tml/gimp/win32/downloads.html</A>
|
|
</I>><i>
|
|
</I>><i> - Jon
|
|
</I>><i>
|
|
</I>><i> > I don't want to compile gtk+ on my machine because I need a deployment
|
|
</I>><i> > path for this new application.
|
|
</I>><i> >
|
|
</I>><i> > Many of you work very hard towards mono and a free net but there must
|
|
</I>><i> > be an easier path for x-windows developers to follow otherwise all
|
|
</I>><i> > your newbies are going to stay away.
|
|
</I>><i> >
|
|
</I>><i> > thanks - sorry for the rant ;)
|
|
</I>><i> >
|
|
</I>><i> > Craig
|
|
</I>><i> >
|
|
</I>><i> > [quote]
|
|
</I>><i> >
|
|
</I>><i> >
|
|
</I>><i> >
|
|
</I>><i> > _______________________________________________
|
|
</I>><i> > Gtk-sharp-list maillist - <A HREF="mailto:Gtk-sharp-list@lists.ximian.com">Gtk-sharp-list@lists.ximian.com</A>
|
|
</I>><i> > <A HREF="http://lists.ximian.com/mailman/listinfo/gtk-sharp-list">http://lists.ximian.com/mailman/listinfo/gtk-sharp-list</A>
|
|
</I>><i>
|
|
</I>><i> _______________________________________________
|
|
</I>><i> Gtk-sharp-list maillist - <A HREF="mailto:Gtk-sharp-list@lists.ximian.com">Gtk-sharp-list@lists.ximian.com</A>
|
|
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/gtk-sharp-list">http://lists.ximian.com/mailman/listinfo/gtk-sharp-list</A>
|
|
</I>><i>
|
|
</I>
|
|
</PRE>
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI> Previous message: <A HREF="003403.html">[Gtk-sharp-list] ok you got me, I'm lost!
|
|
</A></li>
|
|
<LI> Next message: <A HREF="003409.html">[Gtk-sharp-list] ok you got me, I'm lost!
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#3405">[ date ]</a>
|
|
<a href="thread.html#3405">[ thread ]</a>
|
|
<a href="subject.html#3405">[ subject ]</a>
|
|
<a href="author.html#3405">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
</body></html>
|