Hello everybody. I am developing the application for handling HTML clips (like NetSnippers, OnFolio, MS OneNote)...... The user reported the error..... it...
Hello, I cant add a background with dhtmledit1.DOM.body.style.backgroundimage := 'http://www.google.fr/in tl/fr_fr/images/logo.gif'; Error is : Argument...
Here's somethig useful for all ya happy people! 1* function TForm1.QueryLatched(tagName: string): boolean; var r: IHTMLTxtRange; ct: IHTMLControlRange; e, c:...
... **WebBrowser1.OleObject.Document.Body.InnerHTML** is involved...... Try checking if the WebBrowser is busy, if it is busy when you try to mess with the...
... Here's a procedure I'm using to do it, the only catch is - you have to know the element's index. You can get it via IHTMLElement.sourceIndex procedure...
... Well, I don't know if you wanna create and insert a new marquee or just modify an existing one, but here's how to create and insert a new one: var r:...
... in my form i see source code of html. I change some code, press "visual" and see my changes. Just drop a TMemo on the form and fill it with DocumentHTML,...
Hi, I'm realizing a wrapper for DHTML Edit that use actions and allow handling of source code by components... I've just a little problem: when i try to copy...
Massimo, Take a look at the demo project in the folder "Open Source Project" in the file section - the copy & paste functions work in that project. You may...
Hi I have an html editing component built on a TWebBrowser. An annoying problem i am having is that the MSHTML object prompts to save whenever I want to...
Toggel de edit mode off (WebBrowser.Document as IHTMLDocument2).designMode:='Off'; then load new page WebBrowser.Navigate(FileName); works file for me ... ...
Hi, i'm using the imported active-x component, and i got a problem. when i load a file, the images don't show, they show as Xs, like they don't exist, but...
Hello everyone, I am new to the group. I have one question – I have a simple application that is using the EmbeddedWB. When I navigate to web pages that use...
Hi , I've seen some fancy MSHTML editors that use the MSHTML.dll, but I can't figure out how they do this. They can drag image elements in realtime and stack...
Hi everyone, I downloaded and installed the latest THTMLEdit Control and got it compiling. After placing the Control on my Form and running the App it throws...
Hi I'm a newbie to this newsgroup. I'm trying to contruct a html offline editor using Delphi 5 standard edition. I've looked at the sample files, but I can't...
Hi everybody, I'm trying to use frames like this in browsemode. Code sample: <FRAMESET border=0 frameSpacing=0 rows=70,* frameBorder=NO cols=*> <FRAME...
You can turn the IsDirty property OFF (and ON) this way: pCmd: OleVariant; pValue: OleVariant; begin pCMD := 2342; //IDM_SETDIRTY pValue := Fals; //turn...
It sound like you have relative addresses in your document. Take a look at the BaseURL Property - you'll have to set it to proper path. Cheers Kurt ... they...
I know there have been a couple of issues to fix over the last couple of Delphi versions. I've just uploaded a new updated source that will compile with D5, D6...
Thanks Kurt This worked!!! I'd take my hat off to you Kurt, this has helped a lot. Rob Web Man P.S. I noticed the was a small error when changing the...
is there anybody who knows about using this feature? i'd like to implement into an application the editing of tag's properties within a window property. i will...
I am using this code to change the color of my selection in dhtml, but when I finish my application , it generates an error, why? What's is the correct form to...
If I use any command like : ColorText := '#ffffff' ; DHTMLEdit1.ExecCommand(DECMD_SETFORECOLOR, OLECMDEXECOPT_DONTPROMPTUSER, ColorText); when I close the...