On Sat, Nov 8, 2008 at 5:07 PM, phallos <[EMAIL PROTECTED]> wrote: > > Hi, > I downloaded tarball of UsingWebbrowser project and compiled it in Mono > 2.0.1 Command Prompt using the command below: > gmcs *.cs -pkg:dotnet > > It works perfectly in my Windows machine where both .NET Framework and Mono > are installed. But it does not work on my second Windows machine where Mono > is installed but .NET framework is not installed. The message "libgluezilla > not found. To have webbrowser support, you need libgluezilla installed" is > shown on console. > > I could not figure out the problem. Can't we use webbrowser control on a > Windows machine where .NET framework is not installed?
It is not a matter of whether you have .net installed or not: if you run the sample in the mono commandline on the machine where you have both, it will use mono and libgluezilla to run it, it won't use .net. Does it run correctly on the mono command line on the machine where you have both installed? On the machine where you don't have .net, did the mono install work correctly? Go to the directory where you installed it to and check if there is a "xulrunner" directory inside it, and if there is a "bin/gluezilla.dll" file, too. gluezilla is probably exiting with an error, and that's why you get that message. Try also to run the application with the --debug flag and see if it gives you more information. andreia gaita mono hacker _______________________________________________ Mono-winforms-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-winforms-list
