Search 5,000,000+ questions and answers.

Frequently Asked Questions

How do I use Gecko or Mozilla with Gtk#?

FAQ: Gtk - Mono
You can use pkg-config to auto-detect whether the Mozilla development libraries are installed, the pkg-config module name is: gecko-sharp-2.0 To test it, you can write: if pkg-config gecko-sharp-2.0; then echo Gecko# is installed else echo Gecko# is not installed fi To run the applications, you should set the environment variable, run the application like this: export MOZILLA_HOME="'pkg-config --variable=libdir mozilla-gtkmozembed'" mono demo.
Related Questions

Can I use Gtk# on Windows?

FAQ: Gtk - Mono
In addition, when you install Gtk# for .NET if Visual Studio is installed templates for VB.NET and C# are installed, so you can create Gtk# based applications right from Visual Studio.
Related Questions

What can I do with Gtk#?

FAQ: General - Mono
Gtk# is becoming very usable and you can create applications and applets like those you see in a GNOME desktop environment. It's easy to install so it's worth a try.
Related Questions

Who can use Gecko and how do you sign in to Gecko?

FAQ: Gecko - Gateway to Library Databases
Curtin University staff and students can sign in to Gecko with their Curtin ID and Password. This will allow you to access resources subscribed to by Curtin University Library.
Related Questions

Where can I learn more about Gtk#?

FAQ: General - Mono
See the Gtk# page for more information about Gtk# or jump on over to the Gtk# Beginners Guide to get started.
Related Questions

What is Gecko?

Frequently Asked Questions
Gecko is the layout engine lying at the heart of the Mozilla application. It consists of those DLLs that take Internet content (such as HTML/XML/CSS etc.) and render it into a window. Typically, Gecko talks to Necko which is the network layer that fetches the content from remote servers.
Related Questions

Can I use the control in Mozilla Firefox?

Frequently Asked Questions
Some builds of Firefox may contain the control, but Firefox statically links most of the GRE runtime into firefox.exe. The control won't work without the runtime. From Mozilla 1.5 onwards the control is installed in the GRE directory but see the last question which explains why the control does not work from the Mozilla installer executable.
Related Questions

Why would I want to use the Mozilla control over the IE one?

Frequently Asked Questions
You get a standards compliant HTML rendering engine with full support for HTML, XML, CSS 1, CSS 2 (and some CSS 3), DOM 1 & 2 with optional support for SVG, MathML and XSL. Contrast this with the half-baked implementation of these standards in IE 4, 5, & 6. Small distributable - Anywhere from 4 megabytes (for the control plus embedding distribution) compared to 30Mb+ for IE. No redistribution licence - You don't have to register your product with Mozilla.
Related Questions

Why don't I see Excel Export as an option when I use Mozilla Firefox?

Business Valuation Market Data | FMV Faqs
A:Currently the Excel Export feature on BVMarketdata.com is only supported in Internet Explorer. The Excel Export uses VBScript which is only supported in Internet Explorer. We are in the process of updating the export function to be compatible with other web browsers. An alternative would be to use the Email to Me option which will email the data to you in a comma separated file. A:This typically happens when the subscriber is using a pop-up blocker.
Related Questions

What is Netscape "Gecko" and how do I use it in TopStyle?

TopStyle FAQ
Gecko is the code-name of Mozilla's layout engine. Click here for details on using Gecko with TopStyle. Before moving TopStyle, go to the Options menu and select "Export Settings." This will create a small .REG file that contains your configuration (toolbars, mappings, etc.). After you move TopStyle, copy the .REG file to the second computer, then double-click on it. This will update the second computer's registry with your original TopStyle settings.
Related Questions

Can I use any SD Card in my Gecko?

SD Gecko - Secure Media adapter for Gamecube and Wii for loa...
You can use any Full size and Mini SD Card (adapter included). However branded media have faster speeds.
Related Questions

Does this mean my compiled product will work with all future versions of the GRE / Gecko / Mozilla?

Mozilla Embedding FAQ
long as you use frozen interfaces, the answer is: "Almost." Unfortunately vtable layout can vary from compiler to compiler. This mostly affects Linux compilers such as gcc which have changed their vtable layout more than once in the past few years. See the document on binary compatibility.
Related Questions

Dr. Gecko's Guide To Superworms
We have tried to compile a list of the most commonly asked questions that people have regarding the keeping and raising of superworms as a food source. If you have a question that you would like to ask and see here, please email it to us as we are always adding to this list!
Related Questions

Mozilla Embedding FAQ
Gecko is the browser engine, networking, parsers, content models, chrome and the other technologies that Mozilla and other applications are built from. In other words, all the stuff which is not application specific.
Related Questions

I have a binary that already uses IE, can I make it use Mozilla?

Frequently Asked Questions
Note that I won't accept bugs reported against patched apps. I must have reproducible test cases and source code. For example, please try and reproduce the problem with some simple VB or in the CBrowse test application.
Related Questions

What do I need to do to use the control after I install Mozilla?

Frequently Asked Questions
You must register it. Once you have registered the control you should be able to insert it into your VB application as you might any other control.
Related Questions

How do I port some C++ to use the Mozilla control?

Frequently Asked Questions
That depends on the classes you are using. In general it requires replacing references to the Internet Explorer CLSID with the Mozilla one. MFC & ATL provide classes for using the IE control, you may have to make duplicate these classes, making your implementation reference the Mozilla CLSID.
Related Questions

How can I export bookmarks to use them with Mozilla?

Epiphany ??" FAQ
To export your bookmarks into the format used by Mozilla, you need to save this XSL stylesheet as ephy2moz.xsl, and issue the following command on a shell prompt:
Related Questions

Can I use Mozilla with the STI Accelerator?

Sierra Tel Internet - Central California's Internet Provider
In the Port field, enter the STI Accelerator port number (by default 8080, but this number may be different on your system). Click here for instructions on verifying the STI Accelerator HTTP proxy port number.
Related Questions

How do I use KDEPrint in Mozilla?

KDEPrint Homepage - KDEPrint FAQ
Click on the "Print" icon (or select File... --> Print... from the menu bar -- or hit the [Ctrl]+[P] shortcut.) In the opened print dialog you'll see the presently active print command. Edit it to read "kprinter" (maybe you need to use the full path, i.e. /opt/kde2/bin/kprinter). Click [Print]. This will pipe the Mozilla-generated PostScript-output into "kprinter", which will then open its dialog box. Choose your settings. Then print. Mozilla will remember this.
Related Questions

Can I use the Mozilla or Firefox browsers?

Frequently Asked Questions
The Mozilla browser is not "officially supported" but many users use it with success with CM/ECF. You should have access to an ???officially supported??? browser.
Related Questions

LDAD EMDS FAQ
Mozilla is an organization that maintains and releases new versions of Netscape and Communicator code. See the Systems Requirements page for more details.
Related Questions

Why use gtkmm instead of GTK+?

gtkmm Frequently Asked Questions
gtkmm allows you to write code using normal C++ techniques such as encapsulation, derivation, and polymorphism. As a C++ programmer you probably already realise that this leads to clearer and better organised code. gtkmm is more type-safe, so the compiler can detect errors that would only be detected at run time when using C. This use of specific types also makes the API clearer because you can see what types should be used just by looking at a method's declaration.
Related Questions

How do I migrate a Gtk# 1.0 to Gtk# 2.0 application?

FAQ: Gtk - Mono
If you are getting errors like this: generated/PangoHelper.cs(17,55): error CS0039: Cannot convert type 'GLib.Object' to 'Pango.Context' via a built-in conversion generated/PangoHelper.cs(52,55): error CS0039: Cannot convert type 'GLib.Object' to 'Pango.Context' via a built-in conversion generated/PangoRenderer.cs(19,47): error CS1502: The best overloaded method match for 'Pango.Renderer.Renderer(GLib.GType)' has some invalid arguments generated/PangoRenderer.
Related Questions

edit] How is Netscape planning to use Gecko?

Gecko FAQ - MDC
Gecko lies at the heart of the Netscape 6 browser suite, powering all of the individual components including Navigator and Messenger. Gecko technologies will also power the display of the Netscape.com portal site, speedily delivering more exciting content and services. Gecko's architecture will serve Netscape well into the future, enabling faster time to market, more innovation, less costly development, easier distribution and updating, and better cross platform support.
Related Questions

edit] How can other companies and organizations use Gecko?

Gecko FAQ - MDC
Because Gecko is small, lightweight, and open source, other companies and organizations can easily reuse it. Many hardware vendors are creating devices with network access and wish to include web browsing functionality. Likewise, many software developers want to include Web browsing capability in their applications, but don't want to independently develop browser software.
Related Questions

Why don't you use Gtk+2? / When will XMMS go Gtk+2?

TNSP - XMMS - Unofficial Additional FAQ
There are multiple of reasons why XMMS does not use Gtk2. Probably the major reason is that porting XMMS to Gtk2 would require all the plugins to be ported too. Some independent people are working on this, however: Audacious (http://audacious-media-player.org/) is a fork, or rather a direct descendant of "classic" BMP, thus originally based on XMMS1 code, but with heavy modifications. Again, XMMS plugins do not directly work on Audacious, but are relatively easy to port.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact