Hi, I am looking a way to take events when something is changing in the document (MSHTML editable mode).... Any ideas? Thanks anyway Andreas Gortsilas...
Hi I have a document with some anchor tags acting as bookmarks, for example: <a name="BOOKMARK1">Some text</a> <a name="BOOKMARK2">Other text</a> How do I...
Nidi, I know that with my DHTMLEDLib_TLB I had to modify a line in the CreateControl procedure (I am using Delphi 5). I cannot remember exactly why the error...
Hi Mark, You have to iterate through the dhtmlEdit.document.body tags. The MSDN docs have all the functions documented for iterating through the tags in the...
Thanks Justin, that did the trick! ... MSDN docs ... the html ... the ability ... http://msdn.microsoft.com/workshop/browser/mshtml/reference/ifaces/doc ument2...
Hi, I am trying to make a file open dialog for HTML pages. I would like to put a little preview area on the dialog so the user can see the web page before it...
Hi All I have looked on this list to find info about stylesheets and have used the code examples presented, however, I am struggling to get user defined styles...
markjakes, if you take a look at the IHTMLStyleSheetsCollection interface and drill down from there its simple enough. //get styles from stylesheets ...
Take a look at using the WebBrowser component to do this. I think that the TEmbeddedWB component has some stuff that might be useful... Maybe not. I am not...
Here you go http://groups.yahoo.com/group/delphi-webbrowser/message/3053 Someone else was trying to do it also :-) Justin ... From: "andrew_j_elliott"...
Hey this link is very informative, may just start using previews myself in the form of thumbnails. Anyone know how to find out the width/height of the page...
Hey this link is very informative, may just start using previews myself in the form of thumbnails. Anyone know how to find out the width/height of the page...
Thanks for your reply Kurt With your help I have finally started to get some of the user defined tags working, albeit a little tricky. I'll keep investigating...
Hi all, I want fill fields (input and text area) of an form in dhtmledit (or Twebbrowser) directly with delphi and then send the form in simulate an action on...
Try this, I don't remember exactly how I did it but it should give you an idea, Doc is an IHTMLDocument2 // Get Forms Forms:= Doc.forms; // Get 1st Form Form:=...
Beginner! Hi, im looking for a procudure to find the links to images contained in a HTML Document. I wrote this procedure to find the image links and putting...
Can anyone tell me why this doesn't work ? procedure FindText; Var InVar : OleVariant; Begin InVar := dlgFindReplace.FindText; If InVar <> '' Then Begin ...
Hello, I read all archive for solving this problem, but problem is not solved. If I remove line DhtmlEdit1.free from finalization section - no more error ...
I don't think that the width and height of the page are relevant as this is HTML... i.e. the width and height are determined by how large you set the Browser...
I don't think you need to call _AddRef within your application... This should all be handled within DHTMLEDIT_TLB.pas.... Try removing all your _AddRef's and...
I've written two applications for web content editing. The first uses MSHTML, the second DHTML. There are many things I prefer about MSHTML, but there are...
Thanks Kurt for the response. However I've been searching but I'm not finding any real resolution to the inserting of tables in MSHTML. I'm writting this...