Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
130 views

I have a project that requires me to convert a web app into an Android application. My solution was that instead of recreating the app from scratch, I proposed making a Delphi FireMonkey Android ...
Zakaria Mimeche's user avatar
0 votes
2 answers
106 views

In Delphi XE7, I'm saving content of a TWebBrowser to a local HTML file: function WB_SaveAs_HTML(WB:TWebBrowser; const FileName : string):boolean; var PersistStream: IPersistStreamInit; Stream: ...
Jacek U's user avatar
  • 83
2 votes
2 answers
187 views

I think I'm one of the few using Delphi 12.2 / Firemonkey for a real cross-platform app also on Linux. My app contains a TWebBrowser for viewing markdown code, no complex web content or JavaScript is ...
Mockminister's user avatar
1 vote
2 answers
239 views

I built a simple Delphi program to test two solutions provided by Martin Schneider on StackOverflow here: Enabling TWebBrowser High DPI support ... but when the program is dragged to a monitor scaled ...
CaptureWiz's user avatar
  • 1,933
1 vote
0 answers
109 views

is it possible to get the result of a call to LWebView.evaluateJavascript(StringToJString('test'), fJavaScriptValueCallback); instantly? My problem is that the event of the fJavaScriptValueCallback ...
sn00py's user avatar
  • 49
-1 votes
1 answer
312 views

I use TWebBrowser to insert data into a web form. My application is written in Delphi FMX and runs on Android. The element type text is not inserting the value string. HTML: <input type="...
Alisson Cristhian's user avatar
0 votes
1 answer
178 views

In my Delphi application, I can use the following code to show the Page Setup dialog to my users before printing. //WebHTML is a TWebBrowser with a Document loaded. WebHTML.ExecWB(OLECMDID_PRINT, ...
Kyle Williamson's user avatar
0 votes
1 answer
119 views

I'm using a TWebBrowser component to render a TinyMCE rich text editor. This works fine, however, I've found that some of the fonts in the TinyMCE editor are not being rendered as they should. This is ...
Héctor C.'s user avatar
0 votes
0 answers
317 views

I am trying to incorporate a TwebBrowser into my Windows FMX application to display Leaflet Maps and openstreetmap .png tiles. The libraries for Leaflet Maps are available locally and when I view ...
WobblyBob's user avatar
  • 154
0 votes
1 answer
585 views

I'm trying to scroll to the bottom of my displayed TWebBrowser document programmatically. I've tried using the scroll method: uses MSHTML; procedure TForm1.Button1Click(Sender: TObject); var ...
Kyle Williamson's user avatar
0 votes
1 answer
700 views

I have an application that uses a TWebBrowser to display an HTML report. I use a TCanvas, named PrintCanvas to print a page header, footer, and images. Now I'd like to add the content from the ...
Kyle Williamson's user avatar
0 votes
0 answers
1k views

I want to use the MSHTML interfaces IHTMLDocument2, IHTMLElement2, IHTMLElementCollection, etc with TWebBrowser. In Document := WebBrowser.Document as IHTMLDocument2; when TWebbrowser.SelectedEngine = ...
Ahmet's user avatar
  • 1
2 votes
1 answer
752 views

I am attempting to convert some code from TWebBrowser to use TEdgeBrowser, but I am having trouble figuring out how to send post and header data with an HTTP request. Below is the TWebBrowser ...
Christophe B's user avatar
1 vote
0 answers
170 views

I have a embeded web app in native FMX app (ios / android) via TWebBrowser. All works ok, except Window.print. I use PDF js for viewer and print if I use web app directly on safari / chrome printing ...
Carlos Z.'s user avatar
0 votes
1 answer
217 views

I try to inbound a fmx.TWebbrowser (Delphi 11) for displaying an youtube stream in an iphone app. If I click the stream picture, the stream opens in the iphone movieplayer-window. So I have to zoom ...
padi73's user avatar
  • 1
1 vote
1 answer
894 views

I'm currently developing an app on Android using Delphi, and a part of the authentification is done using the native TWebBrowser component, which as I'm understanding pulls from android's native ...
Surox's user avatar
  • 25
0 votes
1 answer
747 views

When using TEdgeBrowser directly it is possible to set custom UserDataFolder property value. Is there a way to set it when using TWebBrowser with Edge engine? Edit: found workaround: set ...
EugeneK's user avatar
  • 2,223
2 votes
1 answer
162 views

I am loading an local disk drive _test.htm file through IPersistMoniker Load method. From what I believe, it is supposed to add the path to the relative URLs as base path. Problem is - it does not do ...
Coder12345's user avatar
  • 3,803
0 votes
1 answer
219 views

I am attempting to load HTML from URL using IPersistMoniker to add relative URLs base path, for example <img src="foo.jpg"> to load from mypath/images/ (or any other path). From what I ...
Coder12345's user avatar
  • 3,803
1 vote
1 answer
131 views

If I am using OleVariant instead of VARIANTARG to store VT_BSTR (VOleStr in OleVariant), do I still need to call SafeSysFreeString when I am done with the string, or is it called automatically by ...
Coder12345's user avatar
  • 3,803
0 votes
0 answers
491 views

<div id="lowbtn"> <a href="javascript:;" class="start" a2s="click" obj="MAIN_START" opt="{&quot;Name&quot;:&quot;...
PNT's user avatar
  • 11
2 votes
1 answer
160 views

I'm using a TWebBrowser to display a WYSIWYG HTML editor and I've added some handlers to catch keyboard and mouse events so I can integrate this editor into my application flow. This browser is ...
Héctor C.'s user avatar
0 votes
0 answers
145 views

There have been many answers over the years about memory leaks and the TWebBrowser component, none of which helped me. I simplified the problem to one line of code. WebBrowser1.Navigate2('https://www....
Kevin Davidson's user avatar
1 vote
2 answers
489 views

In a Delphi 10.4.2 Win32 VCL Application, I need to insert an SVG document manually into a TWebBrowser (wb1.SelectedEngine := IEOnly;) at run-time: procedure TForm1.btnLoadSVGDocClick(Sender: TObject);...
user1580348's user avatar
  • 6,099
0 votes
0 answers
647 views

I have a extracted an URL from an iframe in an HTML page online with TWebBrowser and this URL retrieves a PDF file. How can I save this reply in a File locally by using TWebBrowser? The line in the ...
Walter Schrabmair's user avatar

1
2 3 4 5
10