Hey,

> [EMAIL PROTECTED]:~/programacion/mono/MORCILIA $ mono morcilia.exe
> 
> Unhandled Exception: GLib.GException: No se ha podido abrir el archivo
> �images/logo_ilias.png�: No existe el fichero o el directorio
> in <0x000a4> Gdk.Pixbuf:.ctor (string)
> in <0x000a4> MORCILIA.DruidInstaller:.ctor (string[])
> in <0x00020> MORCILIA.GtkMorcilia:Main (string[])
> 
> Why is it keeping path information? I want the png embedded, not
> referencing any path...
> 
> I can't understand why it happens. I'm calling Gdk.Pixbuf like:
> 
> logo = new Gdk.Pixbuf("images/logo_ilias.png");
> 
> but i tried logo = new Gdk.Pixbuf(null,"images/logo_ilias.png"), as i
> saw it in Edd Dumbill excelent book, but don't know its effect, it also
> fails on execution time. This method isn't still documented in monodoc.

The constructor you are using expects a file name;  you must use the
constructor that takes an assembly and a resource name:

        pixbuf = new Gdk.Pixbuf (assembly, "logo_ilias.png");
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to