[Mono-winforms-list] SWF failed to start in Linux-Mandrake 9.1
Alexandre Pigolkine
pigolkine@gmx.de
02 Jun 2003 21:59:02 +0200
On Mon, 2003-06-02 at 12:36, Mohammad DAMT wrote:
> > But check please that you use latest CVS version of Mono runtime &
> > class
> > libraries,
> > and not 0.24 release.
>
> your solutions by adding dlopen didn't work in my place
> still hang. and I used latest cvs
>
> [mdamt@gordon Coba]$ mono coba.exe
> ** (coba.exe:29733): WARNING **: Failed to load library
> libuxtheme.dll.so (uxtheme.dll): libuxtheme.dll.so: cannot open shared
> object file: No such file or directory
> ** (coba.exe:29733): WARNING **: Failed to load library
> libuxtheme.dll.so (uxtheme.dll): libuxtheme.dll.so: cannot open shared
> object file: No such file or directory
Current CVS has an #if around uxtheme in win32function.cs:
#if USE_UXTHEME
[DllImport("uxtheme.dll")]
static public extern int SetWindowTheme(IntPtr hWnd, StringBuilder
AppID, StringBuilder ClassID);
static public void DisableWindowsXPTheme(IntPtr hWnd)
{
// Disable using the Window XP Theme for the Window handle
// passed as a parameter
StringBuilder applicationName = new StringBuilder(" ", 1);
StringBuilder classIDs = new StringBuilder(" " , 1);
Win32.SetWindowTheme(hWnd, applicationName, classIDs);
}
#endif
So, those warnings should not appear in output :)
Alexandre