Questions tagged [open-webkit-sharp]

OpenWebKitSharp is a .NET wrapper for the Webkit browser engine.

OpenWebKitSharp is a .NET wrapper for the Webkit browser engine. It is open source, and licensed under the GNU Lesser GPL.

Links

16 questions
5
votes
2 answers

OpenWebKitSharp and click once?

I am trying to use the OpenWebKitSharp as a browser in my application. I managed to make it work but I can't find a way to deply it via click-once. When I put files from the library's Core directory to my debug dir app works but those files are not…
Joe
  • 2,551
  • 6
  • 38
  • 60
5
votes
2 answers

C# OpenWebKitSharp .NET 4 - How to call javascript

I am trying to call javascript using OpenWebKitSharp from WinForms with .NET 4 Here is the code I am trying to use. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using…
David Eaton
  • 564
  • 2
  • 10
  • 22
2
votes
1 answer

Openwebkitsharp - COMException was unhandled?

I am making a c# app that get a website I have and views it in the app. For this I am using OpenWebKitSharp to get the web view with HTML5. I followed all the instructions in the How-to-use.txt but, it runs with a popup saying it is not initialized…
arodebaugh
  • 538
  • 1
  • 8
  • 26
2
votes
0 answers

openwebkitsharp Text Search function

I am trying to implement a Text Search function. Is there a Find function in openwebkitsharp. I tried uint totalmatches; webKitBrowser1.Find(textBox1.Text, out totalmatches); The Visual Studio IDE couldn't find the Find function. Am i missing an…
user2018756
  • 327
  • 4
  • 16
2
votes
0 answers

How to set the nomerge option in .NET WebBrowser control?

I launch IE with the "nomerge" option while testing our web applications, when I need to login as two different users at the same time. I would like to know if the same option is available with the .NET web browser control? (or for that matter with…
2
votes
1 answer

Webkit.net opening new tabs and windows

I can easily do this by using webkit.net's context menu: private void browser1_NewWindowRequest(object sender, WebKit.NewWindowRequestEventArgs e) { ((Form1)MdiParent).AddTab(e.Url.ToString()); } However newWindowrequesteventargs e returns null…
user2319683
  • 79
  • 1
  • 7
1
vote
0 answers

How to use OpenWebKitSharp library in x64 Bit Windows Forms Application

I want to show web pages in winforms (x64 Bit) application that is running on .Net Framework 4.7.2. For the achieving above objective I am trying to use OpenWebKitSharp library (OpenWebKitSharp.dll & WebKit.Interop.dll) but I am unable to get their…
1
vote
1 answer

Get final HTML content after javascript finished by Open Webkit Sharp

I'm writing a software that gets the content from URL. When working on that, I run into to problem that I can not get exactly the HTML content after the java script finished. There are some websites that renders HTML by java-script, some do not…
nguyenhoai890
  • 1,189
  • 15
  • 20
1
vote
0 answers

Deployment packaging for open-webkit-sharp libraries

I have created an application which uses open webkit sharp library to show some web pages. But while deploying I am facing the issue of moving so many files and folders. So what are my options here? Installing dlls into the GAC. I might consider…
Chaturvedi Dewashish
  • 1,469
  • 2
  • 15
  • 39
1
vote
0 answers

OpenWebkitSharp and html5 local storage

I'm trying embed the openWebkitSharp (3.0.1.0023) library in a Windows Forms application. Essentially, the app displays html pages and makes requests to the server through ajax. We have a webserver which responses with html pages/css and javascript.…
Ruudt
  • 800
  • 2
  • 7
  • 11
1
vote
1 answer

Implementing a progress bar with open-webkit-sharp

Is it possible to implement a progress bar when using open-webkit-sharp? I tried doing it the way you would do it with the normal WebBrowser control, but it's not possible. There is no e.CurrentProgress and e.MaximumProgress. Is there another way of…
Sega dude
  • 1,103
  • 3
  • 12
  • 29
0
votes
0 answers

Minimal Browser - HTML, CSS, JS or Wrapper?

I'm making a web app and need a web browser (a wrapper) in .NET. It will run inside a wrapper like a native browser for my app. My current goal is to make it as small as possible in size (maximum 30mb). Only features I need is html, css and js. No…
0
votes
1 answer

Calling a C# function from Java Script for the Webkit Browser and .NET 20

I have to call a C# function from Java Script in an embedded Webkit browser (OpenWebkitSharp). For .NET 4.0 this can be easily done with: .GetScriptManager.GlobalContext.GetGlobalObject().SetProperty("CallbackHandler", new…
Tom Torell
  • 51
  • 5
0
votes
1 answer

OpenWebkitSharp for .NET -- any trick for getting Javascript to work with it in this scenario?

I am using the OpenWebkitSharp browser in a VB.NET project. What I am trying to do is use WebkitBrowser1.Navigate to display some HTML in the browser "on the fly". This works great for basic HTML, but Javascript does not appear to work at all in…
NotQuiteThereYet
  • 477
  • 3
  • 13
  • 25
0
votes
2 answers

Retrieve element attribute value when not initially defined in document text

Say we have a WebKitBrowser control and we set the DocumentText as such... wkb.DocumentText = @"
Ray Alex
  • 475
  • 2
  • 5
  • 17
1
2