HI i want to write in hebrew in the dhtmledit i set the Align Right and its ok, the thing is the scrollbars are on the right so when im doing spaces and signs ...
hi i am looking for a delphi function that acts like escape and unescape in javascript. example: xmlstr:=encode('hello'); // xmlstr will contain hello ...
only way i could solve this is like that: in DocumentComplete: ... if (BiDiMode = bdRightToLeft) then DOMInterface.body.setAttribute('dir', 'rtl', 0); // UI...
the real question is how to *programaticaly* set focus on the DHTMLEDIT control :-P i still unable to do this... ... from first line ... keypress/down/up ... ...
use the Ononkeypress event: procedure TForm1.DHTMLEdit1onkeypress(Sender: TObject); var Event: IHTMLEventObj; begin if not DocComplete then Exit; try Event :=...
Hello, I downloaded the DHTML Editor Frame in the files section. It's great, it works almost OK... but it hasn't any Table Insert... It also gives some weird...
Hello I've got a problem with MSHTML. I insert a relative link and mshtml does automaticly replace the target of the link with an absolute link: txtRange :=...
You could try using a ./ in that link. Else I just do not know. But I have another tip. I found a way to get a relatively positioned span/div or font for that...
Hello I've just put the DHTML Component onto a form (after importing it) and found that the keys 'S' and 'C' don't seem to work when trying to type something...
Hi... I have big problem with some pages in DHTMEditor... OnDocumentComplete is not finished - never ending.. When I want to get DomInterface - is nil... What...
HI i want to insert text in the begining of the body text. i already have a text there which i want to preserve put 1 line with crlf in the end of it. how can...
Why not pastehtml after the body. Failing this try using a range object. If you do not understand range objects. You should get used to working with them. ...
PasteHTML is under what object? html edit? dom or body? i didnt find it under any of them. i believe this should be a simple task (to the one who knows it) ...
Hi, go here for information : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmshtml/html/mshtmleditplatf.asp bye ... [Non-text portions of...
HI im sorry but i didnt find what i want plz direct me more specific on how to add text right after the BODY tag (not attribute, regular text) like in the...
HTMLEd.body.innerHTML := myhtmlcode HTMLEd is a IHTMLDocument2 {Create/invoke the MSHTML document interface} HTMLEd := Document as IHTMLDocument2; ... ...
Also don't assume anything is easy regarding this DHTML control. Usually you end up doing hard labour to get anything working. ... From: Alexandre Gonzales...