[Gtk-sharp-list] Error derive from class gtk.window

Pieter Greyling pieter.greyling@bluewin.ch
Fri, 23 May 2003 14:28:43 +0200


/* regarding
*********************************************************************
> ** (<unknown>:2692): WARNING **: Failed to load library
libgtksharpglue.so.dll (libgtksharpglue.so): Das angegebene Modul wurde
nicht gefunden.
Not sure about this, are you sure Gtk# is built correctly for windows
and the DLL is somewhere mono can find it?
****************************************************************************
******/
Yes, it is probably built correctly and you are probably right that it
cannot be found.

I say this since I run as follows using 2 "rules":
1 - .NET Managed dll's (assemblies) - always in my (current) application
directory (i copy them)
These are generaly GTK# plus glue assemblies.
2 - native dll's - always on my %PATH%
These are generaly GTK+ dll's itself.

To confirm whether "something" is managed try to use the MS.NET Framework IL
disassembler
(ILDASM.exe) to open it - managed can - native cannot.

Incidentaly, are GTK# assemblies on win32 built as shared assemblies or as
private?
I use the binaries but will no doubt get to building them myself. If built
as shared
they could be deployed once per system so my "rules" will go away.

also worth mentioning the following page on GTK# Wiki in this regard:
http://www.nullenvoid.com/gtksharp/wiki/index.php/InstallingBeginnersGuideFo
rWindows

Regards,
Pieter Greyling [-pg-]


-----Original Message-----
From: gtk-sharp-list-admin@lists.ximian.com
[mailto:gtk-sharp-list-admin@lists.ximian.com]On Behalf Of Rachel
Hestilow
Sent: Friday, May 23, 2003 01:37
To: Peter Börding
Cc: gtk-sharp-list@lists.ximian.com
Subject: Re: [Gtk-sharp-list] Error derive from class gtk.window


On Thu, 2003-05-22 at 07:20, Peter Börding wrote:
> ** (<unknown>:2692): WARNING **: Failed to load library
libgobject-2.0.so.dll (libgobject-2.0.so): Das angegebene Modul wurde nicht
gefunden.
This warning is my fault, I just committed an update to CVS which should
fix it.

> ** (<unknown>:2692): WARNING **: Failed to load library
libgtksharpglue.so.dll (libgtksharpglue.so): Das angegebene Modul wurde
nicht gefunden.
Not sure about this, are you sure Gtk# is built correctly for windows
and the DLL is somewhere mono can find it?

> public class CMyWin:Gtk.Window {
> public CMyWin(string str) {}
> }

I see this has already been answered on-list.

-- Rachel