Questions tagged [geckofx]

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.

465 questions
3
votes
1 answer

Disable GeckoFX confirm messages

I am using Gecko Web browser version 21.0.1 and .net Framework 4.0 in my windows application. When I navigate to certain web pages I get Pop up confirm message: This web page is being redirected to a new location. Would you like to resend the…
FireFalcon
  • 831
  • 11
  • 23
3
votes
1 answer

How to use getUserMedia with geckofx

How does one enable webrtc with geckofx? I've tried var perm = Xpcom.CreateInstance("@mozilla.org/permissionmanager;1"); nsIURI pwcom =…
Demur Rumed
  • 421
  • 6
  • 17
3
votes
1 answer

C# geckoFX (AutoJSContext not Wοrking)

I'm new here hoping for some help with geckoFX in C# So I just downloaded the geckoFX and did the following. Downloaded: geckofx.dll downloaded: XULRunner I added the geckofx browser successfully and works fine but when I try to run this code to…
Leslie Jones
  • 540
  • 2
  • 9
  • 22
3
votes
5 answers

xul.dll not found error when using GeckoFX browser control

I am using "GeckoFx-29.0-0.6" for having a firefox web browser control in Windows Form application. When I run my Windows form application which have GeckoFX browser control everyting is working fine. I use the following code in my…
Praveen Kumar
  • 55
  • 1
  • 7
3
votes
1 answer

GeckoFX - implement search function - how to use nsIWebBrowserFind interface

Could anyone perhaps tell me how should I use the nsIWebBrowserFind interface in GeckoFX to find strings on a webpage? I tried the following code, but this throws me an ArgumentNullException - parameter cannot be null (pUnk). I have no idea what…
3
votes
1 answer

how to hide scrollbar in gecko webbrowser control in c#

i am trying to hide scrollbar of GeckoFx WebBrowser control,in Windows forms there is method to hide scrollbar webBrowser1.ScrollBarsEnabled = false; but in GeckoFx Webbrowser there is no property like that i am using Navigate…
3
votes
2 answers

C# How to get cookies from GeckoWebBrowser control

I am using the GeckoWebBrowser control for navigate an URL. It actually should have cookies when that page is loaded. But if I tried to get the cookie, I get a blank text even the page is loaded. GeckoWebBrowser m_Browser = ... // ... after…
user3060369
  • 33
  • 1
  • 4
3
votes
0 answers

How can I get the HTML5 GeoLocation feature to work on GeckoFX v22 web browser control for WinForms using C#?

I wanted to implement a web browser control to Geo-location enable my WinForm desktop application. I have successfully implemented the GeckoFX web browser in my WinForm project. The problem is when visiting a HTML5 Gelocation enabled website/address…
user2876638
  • 31
  • 1
  • 2
3
votes
1 answer

Install Flash Player plugin on xulrunner 22.0

I am using GeckoFX running on xulrunner 22.0, and it works fine. But when it comes to load a website with Flash, then it does not load the Flash content. I have been trying to install the Flash Player plugin to the xulrunner but I've failed…
Joe Almore
  • 4,036
  • 9
  • 52
  • 77
3
votes
1 answer

How to make Gecko use seperate CookieContainer per instance?

Since GeckoWebBrowser in .Net shares cookies with all other instances of GeckoWebBrowsers I would like for a GeckoWebBrowser to have it's own cookie container which doesn't share any cookies that was created previously in other GeckoWebBrowsers or…
EBAG
  • 21,625
  • 14
  • 59
  • 93
3
votes
1 answer

C# Using Tor with GeckoFX Control

How do I get a GeckoFX control based browser to use Tor as a proxy? I have set the GeckoPreferences for: network.proxy.type to 1 network.proxy.socks to 127.0.0.1 network.proxy.socks_port to 9150 and the socks_version to…
Dave Gordon
  • 1,815
  • 4
  • 30
  • 52
3
votes
1 answer

How do I handle file downloads in GeckoFX?

I am using the latest GeckoFX 18 (hindlemail's fork) and have tried hard to achieve this simple method : Handle file downloads. I want to know if there is a file download happening in the GeckoWebBrowser. There is no file download event, and even…
user1779764
  • 91
  • 2
  • 5
3
votes
4 answers

geckofx button click

i have integrated skybound gecckofx into my application . i am able to fill up textbox GeckoElement username = null; username = checkDoc.GetElementById("ctl00_contentPlaceHolder_txtUserName"); username.SetAttribute("value",…
Kinnan Nawaz
  • 399
  • 2
  • 7
  • 24
3
votes
1 answer

Facebook Like button doesn't work in GeckoFX browser

I wanted to implement the Facebook Like button into my C# application using the Web Browser control but i encountred a problem with Internet Explorer (After clicking on like button, the facebook login popup appears) but iexplore block and ask me…
Rafik Bari
  • 4,867
  • 18
  • 73
  • 123
2
votes
1 answer

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 cross-platform application with a HTML/JavaScript GUI.…
jevakallio
  • 35,324
  • 3
  • 105
  • 112
1 2
3
30 31