Questions tagged [tchromium]

TChromium is a VCL control wrapping around the "Chromium" web browser.It is defined in the cefvcl.pas unit. It's included in the Delphi "Chromium Embedded project" by Henri Gourvest.

Websites:

129 questions
1
vote
2 answers

How to set focus of a TChromium browser window in DCEF 3?

In DCEF 1 (Delphi Chromium Embedded 1), I've used TChromium.Browser.SetFocus(True); to set focus of a browser window, but in DCEF 3 I can't find a way to set focus of this window. Does anyone know how to set focus of a TChromium browser window in…
1
vote
1 answer

Error while creating the TChromium in Inno Setup

I'm trying to create a DLL of TChromium to use in Inno Setup, equal to TLama made ​​with TWebBrowser, creating inno-web-browser, but I can not, I'm following the same logic of the basic procedures, but during the creation, is created window within…
D3F4ULT
  • 926
  • 1
  • 12
  • 20
1
vote
1 answer

Clear Cookies in TChromium

How to clear cookies in CEF3.1547 I have tried the following solution however this simply does nothing. Cookies are still present. Is there a better solution than this? procedure TForm1.Button1Click(Sender: TObject); var CookieManager:…
user1647411
1
vote
1 answer

TCefStreamReaderRef Usage

I am trying to replace the data that webbrowser requests with a local file but the result is not displayed in the browser. So how to properly use TCefStreamReaderRef? procedure TForm1.Chromium1BeforeResourceLoad(Sender: TObject; const browser:…
user1647411
1
vote
1 answer

TChromium how to block middle mouse click on the links?

How to block middle mouse click on the links in TChromium? I want to handle this middle mouse click by my own to open it in new tab, so i need to block this middle mouse click in TChromium, and then hook middle mouse, and then open selected link in…
Priler
  • 149
  • 1
  • 10
1
vote
0 answers

Installation GMLib in Delphi 7 with TChromiun

I try to install GMLib to work with TChromium browser in Delphi 7. During the compilation compiler shows this code: TChromium(FWebBrowser).Browser.MainFrame.VisitDomProc( procedure (const doc: ICefDomDocument) //compiler higtlights this row …
1
vote
1 answer

TChromium GetDevToolsUrl returns nothing

I'm trying to call Chromium Dev Tools with this code from dcef3 demos: procedure TMainForm.actDevToolExecute(Sender: TObject); begin actDevTool.Checked := not actDevTool.Checked; debug.Visible := actDevTool.Checked; Splitter1.Visible :=…
Priler
  • 55
  • 1
  • 10
1
vote
0 answers

TChromium how to add "Save Picture" item in Context Menu?

I have TChromium Browser, but when Im visiting web sites, and trying to save pictures, like in Google Chrome, i can't see "Save Picture" item :( How to add this item ? Thanks.
Priler
  • 55
  • 1
  • 10
1
vote
3 answers

Delphi TChromium Load From Variable Function Not Working

I'm trying to execute this code in Form1.Activate Event: Chromium.Browser.MainFrame.LoadString('erg', ''); But i get ACCESS VIOLATION error, whats a problem? What i'm doing wrong? Here is Code(not full): …
Priler
  • 55
  • 1
  • 10
1
vote
1 answer

How to overlap TImage over TChromium component

I'm having a little bit of a headache here since I can't really realize what's going on. So I have this TChromium element set as aligned to alClient. Now, since my borderStyle is bsNone (fullscreen app), I created 2 buttons to simulate minimize and…
Eduard
  • 3,395
  • 8
  • 37
  • 62
1
vote
1 answer

Why can't I set TChromium cookie storage path in chrome browser default path?

I have read this thread about how to set cookie storage path, and I want to set my cookie in the same path with chrome browser default cookie path. This is my code. var CookieManager: ICefCookieManager; dir: string; setSuccess: Boolean; begin …
user151465464
  • 93
  • 1
  • 5
1
vote
1 answer

Delphi XE3 and TChromium

Make out the work with a component in Delphi XE3 TChromium need to get to the content of the page is loaded forums found examples of working code: procedure DoWork (const doc: ICefDomDocument); var   q: ICefDomNode; begin   q: = doc.GetElementById…
LuckyD
  • 11
  • 2
1
vote
1 answer

download a page into memory using chromium embedded

I have an application with DCEF (Chromium Embedded). During a browser session I want to download a specific page into memory, without displaying it in Chromium (the page to download is an xml file which I want to encrypt before writing it to…
Martijn
  • 35
  • 7
1
vote
1 answer

How to iterate DOM nodes in Delphi Chromium Embedded without use of anonymous method?

Delphi Embedded Chrome Due to my limited skill, I cannot figure out how to do the same thing in Delphi 7, as it doesn't support an anonymous method!
user1262167
  • 81
  • 2
  • 5
1
vote
1 answer

Chromium and Silverlight (Delphi)?

Has anyone ever tried integrating Silverlight with Chromium? If so, do you know of a document listing the steps to make it work? I'm using Delphi 6 and the TChromium component.
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
1 2 3
8 9