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.
Questions tagged [geckofx]
465 questions
0
votes
1 answer
GeckoFx can only be called from the same thread on which it was initialized (normally the UI thread)
GeckoBrowserForm clasc
protected override void OnLoad(EventArgs e)
{
m_GeckoWebBrowser.Parent = this;
m_GeckoWebBrowser.Dock = DockStyle.Fill;
…

senzacionale
- 20,448
- 67
- 204
- 316
0
votes
1 answer
VB.NET Gecko WebBrowser Link Click to get URL
So I am trying to get the URL of a link that I click while using the Gecko WebBrowser. So if I were to click on a .DLL file in my directory (URL = File://C:/File.DLL) it would then give me the URL of what I clicked. I can right click on it and get…

user3000836
- 1
- 3
0
votes
1 answer
Key Down Event not firing in C# a geckofx 22
For some reason the Key down event is not firing in geckofx 22. The user must hold down the enter key and then release before the program will initial the keydown event on the input they are on. This has been and issue with binding as well as just…

user2997301
- 3
- 3
0
votes
3 answers
how to handle downloads on gecko15 with mozilla xul15 in visual basic?
I am using gecko15 with mozilla xul15 as a web browser on my visual basic application
anyone knows how i can handle downloads please ?
because, when i click on a file to download from that browser nothing happens.
thanks a lot for any help.

zonks01
- 1
- 2
0
votes
2 answers
Gecko Browser wont fill inputs on load
I've got this little collection of all the Inputs on the loaded site.
The program searches for a text input that is specified by a list of html names
GeckoElementCollection _Ellements = geckoWebBrowser1.Document.GetElementsByTagName("input");
The…

Merceyz
- 25
- 1
- 3
- 12
0
votes
2 answers
Can't manage to get the value of a textbox after userinput
C# code:
GeckoElementCollection _Ellements = geckoWebBrowser1.Document
.GetElementsByTagName("input");
foreach (GeckoElement _e in _Ellements)
{
if (_e.GetAttribute("value") == "username"
{
// Code here if statement = true
…

Merceyz
- 25
- 1
- 3
- 12
0
votes
0 answers
C# web browser save search engine settings
I'm working on a web browser where the default search engine is Google until the user clicks on the Yahoo (or another search engine) button. The problem is, after you start a new session, it opens with Google again. How to you save that?
I'm aware…

CCCP
- 215
- 3
- 14
0
votes
1 answer
Geckofx VB.net Obtain the url from Hyperlink vb.net
I use Geckofx and I Want to know, How can I obtain the url from a hyperlink in geckowebbrowser.
Thank You
0
votes
1 answer
C# GeckoFX web browser - Remove http from textbox
I'm working on a web browser. Once the textbox isn't selected anymore it should remove http:// and the last /. To do that I'm using the leave method of the textbox. This code works perfectly fine with the normal WebBrowser.
if…

CCCP
- 215
- 3
- 14
0
votes
1 answer
C#: Block ads in GeckoFX based browser?
I'm wondering if it is possible to block ads on my GeckoFX (https://bitbucket.org/geckofx) based browser?

CCCP
- 215
- 3
- 14
0
votes
1 answer
How can scroll a div use GeckoFX and C#
I want to scroll a div via Gecko and C#
My code is
GeckoDivElement div1 = new GeckoDivElement(icdIFrameElement.ContentDocument.GetHtmlElementById("t1::scroller").DomObject);
GeckoElementCollection divs =…

A. Zalonis
- 1,599
- 6
- 26
- 41
0
votes
1 answer
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# Component) in one of our applications.
GeckoFX…

Tobias Boschek
- 2,158
- 3
- 18
- 22
0
votes
0 answers
Is it possible to make a client software by using C# as shell and rendering view by html + css?
I want to write a client software, that can be installed on user's desktop machine.
I want to write a shell in C# and involve GeckoFX as embedded WebBrowser to render view by using html + css.
The problem is, if i do like i said, i need a…

Howard
- 4,474
- 6
- 29
- 42
0
votes
1 answer
How to get link clicked event in geckofx18?
I am writing a tabbed web browser in Visual Basic and cannot figure out how to get the link address from a web page so I can open it in a new tab.

user2376149
- 1
- 1
0
votes
1 answer
C# GeckoFX Proxy Doesn't Set
I am trying to set proxy in GeckoFX (Version 18.0.1.0). And Visit http://www.ipchicken.com/ to check if its work or not. But it won't work for me! I tried Google as well but don't sucessed.
Here is my code.
private void Browser_Load(object sender,…

Capripio
- 474
- 11
- 21