Click here to Skip to main content
15,912,204 members
Everything / Chromium embedded

Chromium embedded

Chromium-embedded

Great Reads

by Marius Bancila
Chromium Embedded Framework (CEF) v3 to embed a Chromium browser in an MFC application
by mattkol
Build .NET/.NET Core HTML5 desktop apps using cross-platform native GUI API

Latest Articles

by Marius Bancila
Chromium Embedded Framework (CEF) v3 to embed a Chromium browser in an MFC application
by mattkol
Build .NET/.NET Core HTML5 desktop apps using cross-platform native GUI API

All Articles

Sort by Score

Chromium embedded 

15 Nov 2020 by Richard Deeming
Quote: Private WithEvents browser As ChromiumWebBrowser ... Private Sub InitializeChromium() ... Dim browser As New ChromiumWebBrowser("https://www.facebook.com") Panel1.Controls.Add(browser) browser.Dock = DockStyle.Fill End...
2 Jul 2012 by Lecter11
In the recent time. I use the chromiumembedded project to finish my task about webbrowser. Now I wanna make own menu for right button, but I do not know how to use the cef_menu_handler to create? need your advice or examples. Thanks!
4 Jul 2012 by Lecter11
Hi, all. Recently I build a WTL project. In order to finish the editing function, I import the CEF1 project! and I compile it and it can run. but it will appear three times "XXX has triggered a breakpoint" in the libecf.dll. Is there some problems to use the CEF1 in the WTL project? by the way,...
16 Jul 2012 by kartikdasani
Hi,I am trying to develop a custom automation solution for my software client which involves testcases where there is interaction with html pages in embedded browser windows. The chromium embedded framework is being used in this client and I want to know if there is a way to Click a button...
17 Jul 2012 by armagedescu
First of all, see in the chromium project, there are many unit tests. Look inside and do the same.But if you like to test the HTML page, then you would better use plain JavaScript. You will have full access to all HTML functionality.
26 Nov 2014 by sachi Dash
Firstly I am a beginner with Chromium Embedded Framework. Ican browse an webpage through the following code. Now I want to access an webpage as a Document. My target is that after browsing an webpage I want a table or high chart represented in that page and as well as all the css used in that...
18 Dec 2014 by bconline2002
Had anybody worked with CEF3 CefCookieManager?I just want to study the usage of CefCookieManager,so I test my code in cefSimple project packed wtih Cef3 downloads.I use cef3.1750,vs2013(vc12)First,I write a class(WXRequestContextHandler) which inherited form CefRequestContextHandler,like...
18 Dec 2014 by Richard MacCutchan
See http://magpcss.org/ceforum/apidocs3/projects/%28default%29/CefCookieManager.html[^].
18 Dec 2014 by bconline2002
Well,thank your reply,Richard. In fact,I had read the documents and googled many times,but the documents really simple,it only told me " Cookies managers can be unique per browser or shared across multiple browsers" and didn't give any code or example about it.maybe they think it's so easy...
19 Dec 2014 by bconline2002
I had solved this problem through CEF' forum,here's the link:http://www.magpcss.org/ceforum/viewtopic.php?f=6&t=12534[^]
26 Mar 2015 by Mohamed Ahmed Sayed
i want to use cefsimple how can i export it's files from cef binary on visual studio 2013 or how can i make cefsimple from scratch thanks in advance
20 Nov 2015 by Member 12108486
I have refereed to the link http://www.magpcss.net/cef_downloads/ from where I have got a project named cefclient and cefsimple. I did not receive the source code for the same. I want to do a simple application using this framework. I have been trying to add the .h and .cpp obtained from the...
20 Nov 2015 by Richard MacCutchan
See https://bitbucket.org/chromiumembedded/cef/wiki/Home[^].
24 Sep 2016 by BasmaSH
I using Quote:ChromiumWebBrowser in winform c# .I want to open a video in a form it run but i want to mute sound in the form .What I have tried:browser = new CefSharp.WinForms.ChromiumWebBrowser("mylink") { Dock = DockStyle.Fill, ...
30 Sep 2016 by Alex Banu
Have a lookc# - Webbrowser disable all audio output - from online radio to youtube - Stack Overflow[^]
21 Nov 2020 by Member 14993280
Hi, I'm trying to use this chromium webbrowser and enter my textbox.text to one of the textbox inside the website. I'm having trouble on doing that as it always display Object reference not set to an instance of an object.' I'm sure I got the...
14 Nov 2020 by OriginalGriff
This is one of the most common problems we get asked, and it's also the one we are least equipped to answer, but you are most equipped to answer yourself. Let me just explain what the error means: You have tried to use a variable, property, or a...
6 Nov 2021 by #realJSOP
If I were you, I'd ask this question on their github page. CEF representatives probably don't monitor CodeProject for questions about their code. Discussions · cefsharp/CefSharp · GitHub[^]
4 Mar 2023 by ionMEMBER
Hi everyone I have made a browser with cefsharp chromium and want to save html or to open it on textbox. Tried: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ...
27 Nov 2019 by Marius Bancila
Chromium Embedded Framework (CEF) v3 to embed a Chromium browser in an MFC application
30 May 2018 by mattkol
Build .NET/.NET Core HTML5 desktop apps using cross-platform native GUI API
24 Oct 2019 by Member 14073346
Estoy intentando lo mismo en una aplicacion de escritorio, sin embargo a veces me carga todos los chromiumWebBrowser a veces no, esta perdiendo los eventos y no se como agrearle o setearle al browser.load("root.html") un evento para siempre los dibuje, si lo resolviste te agradeceria...
15 Feb 2022 by Boy Imba
i am trying to open 2 tabpages as default when user open my app. This is codes for just 1 tabpage: ChromiumWebBrowser chrome; private void BrowserForm_Load(object sender, EventArgs e) { //initialize the browser this.initialize_browser(); chrome.Parent = tabPage1; ...
21 Nov 2020 by Member 14993280
All your answers to my query are very much appreciated. The only code that makes the browser empty is because there's a Dim on declaring the browser Thanks anyways!