Tagged Questions

GeckoFX is a Windows Forms control written in clean, commented C# that embeds the Mozilla Gecko browser control in any Windows Forms Application. It also contains a simple class model providing access to the HTML and CSS DOM.

learn more… | top users | synonyms

7
votes
3answers
290 views

Non-IE WebBrowser ActiveX control

Google searches are leading me down a bunch of dead ends with this one. I am developing an Excel add-in in VBA, and part of it involves the use of the WebBrowser control to display a (known) webpage ...
3
votes
1answer
145 views

Add listener to DOM element HTML update. Gecko, C#.Net, Java

I'm looking at the following site: www.example.com I'm navigating to the site with a GeckoWebBrowser object and taking a snapshot of the HTML of the object every second. Then I navigate the DOM to ...
3
votes
2answers
958 views

GeckoFX Update for Gecko 2.0?

I was really excited when I found GeckoFX last month. My employer wants to distribute an embedded browser with our desktop application (to smooth the transition from desktop-based apps to web-based ...
3
votes
5answers
2k views

Run multiple UI Threads

Skip to the bottom for the question; this is just some extra info I am using a component (GeckoFX) to render some websites, well fine, yet it can only be used in a Windows Form; as it has to bind to ...
2
votes
2answers
1k views

Help With Proxy Username & Pass with GeckoFX?

I am trying to set the proxy username and password. I saw this posting (http://geckofx.org/viewtopic.php?id=832) and I thought it might be a similar setting for the username/password, such as : ...
2
votes
1answer
916 views

How do I enable Javascript to function properly in GeckoFX?

I've started to use GeckoFX but I got a major issue with javascript:void(0) that acts as anchor which lets JS to pop new window and load url. How do I tell browser to do this INSIDE the geckobrowser ...
1
vote
2answers
16 views

Gecko WebBrowser, getting the url from a selected hyperlink

This is a real 2%er but here goes, I have created a winform in VS2010 with Gecko 2.0.1-0.10 (latest release) webbrowser control, I am using a touch screen to navigate. Sometimes when clicking a ...
1
vote
1answer
87 views

GeckoFX WebBrowser page height and width

Does anyone know how I get the full page height and width in GeckoFX? In the IE WebBrowser object, I can look at WebBrowser.Document.Body.ScrollRectangle. (The objective here is to take a screenshot ...
1
vote
2answers
170 views

Creating a website thumbnail with geckoFx leads to error

I'm trying to create an image of a website using geckoFX in WPF/c#. When I run the code I get an error. error is a Bitmap Width and height using from geckoWebBorwser (int)wWidth and (int) wHeight ...
1
vote
1answer
407 views

Alternatives to the .NET WebBrowser control?

I'm developing a .NET 2.0 WinForms application. It previously included the standard Microsoft ActiveX WebBrowser control, but I'm investigating alternatives. What I need to do: Use the WebBrowser ...
1
vote
1answer
672 views

C# interop to XPCOM

Before asking my question, I should admit that my knowledge of .NET interop is sparse, so I realize that I might be making a newbie error. I am using the GeckoFx library to create a C# application ...
1
vote
3answers
845 views

How can I use WebKit.NET or GeckoFX in a .NET WinForms application with dynamically loaded assemblies?

I'm working on a .NET WinForms application that loads forms and other UI elements from separate assemblies at runtime. This works well. However, one of the assemblies I'm loading has a form that ...
1
vote
3answers
982 views

Gecko usage in C# (geckofx)

There are some things that I didn't find how to do using geckofx: Get the URL of a clicked link. Display print preview window. Does this functionality exist in geckofx? If not, what's the best way ...
1
vote
3answers
1k views

How to get Dom tree in GeckoFX

I started to play with GeckoFX. Unfortunately I didn't found any big documentation for that. I need to get DOM tree for the page. Iterate every element and get it's information. Can someone please ...
0
votes
0answers
26 views

GeckoFX and Direct X in .NET don't play well together

I have been using the GeckoFX web control for a few weeks, the code for the GeckoFX web browser works correctly until we instansiate managed Direct X attached to a part of the form. At this point the ...
0
votes
1answer
28 views

Building a leaner XulRunner for HTML/JavaScript usage?

Is there a way to make a leaner HTML/Javascript -oriented build/package of the Mozilla XulRunner components, excluding some of the heavier XUL-platform features? Background: We are building a ...
0
votes
1answer
43 views

.NET WebBrowser control with good performance and automatic NTLM authentication

For our project we need .NET WebBrowser control that supports automatic Windows authentication (like IE does). We have reviewed a number of options, but still can't select proper one: 1) Standard ...
0
votes
1answer
20 views

GeckoFX 7.0, 8.0 and 9.0 on Linux crash very frequently

I cloned GeckoFX 7.0, 8.0 and 9.0 from https://bitbucket.org/geckofx/ and use MonoDevelop 2.6 to build and debug it. I only change xulrunner path in GeckoFxTest/GeckoFxTest.csproj and ...
0
votes
0answers
59 views

GeckoFx, Rhino, HtmlUnit + DOM Element.add InnerHtmlChangedListener

Is there any way I can use a headless browser such as htmlunit or gecko, put them into a java Frame, hook a 'innerhtmlChangedListener' up to a DOM Element such as table or row and trap the events? ...
0
votes
0answers
85 views

HTTP HEADERS COMException

i'm using wrapper .net GeckoFx. I need Http Header using only Gecko (or any other Wrapper), i cant use HttpWebResponse for some reasons. So i read in mozilla doc that i can do it with ...
0
votes
0answers
32 views

Http Headers with GeckoFX and similar

i didnt understand how can i get response with a GeckoWebBrowser. I use OpenGeckoSharp and GeckoFX 2 as Wrapper. I need get the Headers response from the Navigate(). How could i do this? Someone ...
0
votes
0answers
62 views

Progress Bar GeckoFx C# Stuck 99%

Hi i have done a webBrowser with GeckoFX. All work execpt for Process Bar that doesnt work properly. With Default WebBrowser work fine , but when i use GeckoFX 2.0 dont work good. It stuck like 99% ...
0
votes
0answers
239 views

Gecko Fx javascript

Gecko fx does nothing when i click on any type of java script new window ; does anyone know how to fix this? i also take note that gecko window function is disabled and has been for some time. I have ...
0
votes
1answer
372 views

Using GeckoFX in a multithreaded application

I'm having issues grasping how exactly to handle threads when using GeckoFX- it seems to throw errors constantly when trying to use the GeckoWebBrowser in other threads. Specifically what I'm trying ...
0
votes
1answer
176 views

How to properly return values from unmanaged interface method?

I'm in the process of extending GeckoFx (http://geckofx.org) and am having some problems returning array values from unmanaged interfaces provided by XPCom. I've added a great amount of new feature ...
0
votes
2answers
784 views

Pass GeckoFX DOM elements to JavaScript navigation calls

using GeckoFX web browser, is it possible to pass a GeckoElement through JavaScript like this, WebBrowser.Navigate("javascript:void("+ele.DomObject+".onclick())"); I'm selecting the DOM element ...
0
votes
1answer
174 views

How to cache images in GeckoFX

I use GeckoFX to render some web application's GUI. There are many repetitive small 16x16 images here and there injected into single HTML page by javascript. All these IMG instances are downloaded ...
0
votes
1answer
493 views

Get source of page from GeckoFX web browser component

Html code from GeckoWebBrowser.Document.DocumentElement.InnerHtml property differs from html downloaded from server because it is converted to DOM and there could be Javascript that changes document ...
0
votes
2answers
405 views

Whats a better solution for Web Automation - Geckofx or WebBrowser Control in .NET

Iam coding a solution for web automation, I have been using the default web browser control in some of my past projects. However I have found that the performance of web browser control is not very ...
0
votes
1answer
657 views

Skybound Gecko Project: Attempted to read or write protected memory

I am starting out a pretty simple project - essentially a web browser with a hard-coded URL for public terminal use. That is to say, it WOULD HAVE been simple if the C# web browser control didn't make ...
0
votes
1answer
351 views

Retrieve selected elements in GeckoWebBrowser

I am using GeckoFX version 1.9.1.0 with C#.NET. I have a placed a GeckoWebBrowser Component (geckoWebBrowser1) and a Button (button1) in a form and have navigated the browser to a page. Some text in ...
0
votes
1answer
78 views

Directory tree in a Resource without extraction…

i am looking for a way to store a complete directory including sub directories in an application's resource and not have to extract it to use it. Details: We would like to use GeckoFx (Gecko as C# ...
0
votes
2answers
683 views

Why doesn't GeckoFX Navigate() request work if launched in a seperate thread?

Why does this work, private void buttonBoo_Click(object sender, EventArgs e) { GeckoBrowser.Navigate("http://www.google.com/"); } and this not? private void buttonBoo_Click(object sender, ...
-2
votes
2answers
40 views

how to use Gecko in C#

I need a gecko webbrowser control I need a sample code or a link which explains how to use GECKO If anyone has used Gecko, I could do with some advice
-2
votes
0answers
53 views

Save state of vb.net geckofx webbrowser control

How would i save the state of a geckofx webbrowser control in VB.NET? I want to save the exact state of the geckofx webbrowser control. I don't mind how it saves it, i just want to save the ...