I need to control the drawing of images without changing the code. One way I have found is using "ITriEditDocument" but I am at a dead end with this. I am...
Do a BeforeNavigate2 event like so: procedure TEmailForm.HTMLViewerBeforeNavigate2(ASender: TObject; const pDisp: IDispatch; var URL, Flags, TargetFrameName,...
I should mention I do have one solution but it is triggered by the onDocumentComplete, which is called after text & images have been drawn. I want to be able...
I wrestled and wrestled with this one. I only managed a cheap way round by saving to a temporary file and then streaming back in from the file. I still feel...
Come on - its not half as hard as you think - but remember dhtmledit is state of the art anno 1998, so off course there's a lack of build in features you'd...
I have form with TEmbeddedWB. In program menu I have "Home Page' item. When I select this item: ShellExecute(handle, 'open', 'http://www.homepage.com', '','', ...
Hi, Kurt. Question to you as experienced programmer in area of web browser hosting. Have you ever tried to develop rendering behaviors? I'm trying now and have...
Hi Serge, ... I got it to work in my KSDHTMLEdit component - you can se it work for highlighting of selected table cells in my demo exe. Just keep on trying...
... What do you mean? I've found your old email(Message #997 Jan 2, 2002): procedure DoDrawMarker(R: TRect); var DC: HDC; begin DC := GetDC(msHTMLwinHandle); ...
I just started with MS's render.cab demo and spend a log time doing the usual trial and error stuff - so I don't have the faintest idea of what's troubling...
Take a peep at :http://tech.groups.yahoo.com/group/KSDhtmlEdit/ Kurt ... From: delphi-dhtmledit@yahoogroups.com [mailto:delphi-dhtmledit@yahoogroups.com] On...
Hi ... render.cab is dll solution. So, microsoft gays had to go through coclass/custom tlb stuff. Marko Binic was doing the same. Is it important for rendering...
My KSDhtmlEdit component implements binary behaviors along the same road as you where describing - I don't use "cab-based" behaviors either Kurt ... From:...
Thanks a lot, Kurt. Some code from your forum has helped me. I didn't have working variant. So it was very complicated to understand wat's wrong. I have not...
hi in case the html im using contains 2 occurrences of <html> tag and <body> tag when switching to browse mode: if the page is already loaded, the content...
hi i have an html it contains windows-1255 in the html tag: <meta http-equiv='content-type' content='text/html; charset=windows-1255'> the content is in hebrew...
i have an html with the following code: <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.site.com" target="_blank"> i dont have...
Hello all, Maybe you know when you copy some content from a web page to the clipboard and if your browser is Internet Explorer, it can ben pasted onto the...
... the concept as such is simple enough but the actual implementation can be quit demanding :-) Although its not documented at MS the "HTML Clipboard Format"...
hi i have the following code rg := IHTMLTxtRange(wb.DOM.selection.CreateRange); tmp := rg.Text . . . rg.Text := result; it seems that the text loses its html...
Hello,Great Programmer, Now,I Edit HTML with the EmbeddedWB and EditDeigner.When press Enter key, it out <p>. May it out <br>? I do not need <P>. It is very...