hi! I wrote after code for inserting comment(<!-- -->) to dhtml's DOM. var Dispatch : IDispatch; S : String; begin Dispatch :=...
wideeye@...
Jan 2, 2001 8:39 pm
426
in my experience the problem isn't the dhtml dom, it's the IHTMLElement interface that the dom utilizes. try doing this with an IHTMLElement: var Element:...
Adam Milligan
adam@...
Jan 2, 2001 10:26 pm
427
Thanks adam. so, how can i insert comment to dhtml Editor without using dom? please help me! ... IHTMLElement ... cdata...
wideeye@...
Jan 3, 2001 2:13 am
428
really it depends on what you're looking for in a final result. you could stuff it all into the xml dom, which is much better behaved, and use the ...
Adam Milligan
adam@...
Jan 3, 2001 5:11 am
429
There is a special interface fore comment elements. Look up the IHTMLCommentElement in MSHTML_TLB.pas. I think you have to insert a new IHTMLCommentElement...
Kurt Senfer
ks@...
Jan 3, 2001 7:25 am
430
Thanks Kurt. But I don't know how Insert IHTMLCommentElement to DHTMLEdit.DOM. What I knew is using IHTMLTxtRange Interface. IHTMLTxtRange Interface does not...
wideeye@...
Jan 3, 2001 8:49 am
431
Hi there, There is two major sources to get enough information's to do whatever you wants with the mshtml-engine: First: search for words that matches your...
Kurt Senfer
ks@...
Jan 3, 2001 12:02 pm
432
It is not just comments. try adding user defined elements
Dispatch := DHTMLEdit.Dom.Selection.createRange;
S := '<mytag> hello world </mytag';
(Dispatch...
Chaim Turkel
cyturel@...
Jan 3, 2001 6:19 pm
433
The mshtml-engine does a lot of work behind the seen to keep the loaded / generated HTML valid (according to its own set of standards !) Try loading a...
Kurt Senfer
ks@...
Jan 4, 2001 8:59 am
434
thanks kurt. Your Answer is well working. But my object is not that. My object is inserting comment string(<!--... -->) at selection point. not inserting a...
wideeye@...
Jan 4, 2001 12:28 pm
435
Sticky problem :-) Looking a little around at MS I found that its a known problem - but they don't consider it a bug, its a feature ! The problem exist fore...
Kurt Senfer
ks@...
Jan 4, 2001 3:14 pm
436
I am author of application which can to do data for web from Access databases.. For preparing my data I am doing editor which using DHTMLEdit1... I have some...
Milan Kajnar
techno@...
Jan 8, 2001 12:09 pm
437
For Marcos and others... How to get informations about some object under mouse? Or selected? Under mouse: procedure MyForm.DHTMLEdit1onmousemove(Sender:...
Milan Kajnar
techno@...
Jan 8, 2001 1:41 pm
438
Do not repeat the same question. If someone can help you they will, posting it again will only annoy those who are forced to download your repeated messages. ...
Henri Fournier
hfournier@...
Jan 8, 2001 1:50 pm
439
Hello Henri, I am very sorry for my big snapshot... :) I will wait for advice of another programmer now... only... I will not send pictures again... Bye.. ...
Milan Kajnar
techno@...
Jan 8, 2001 2:23 pm
440
HI, I hope you can help me with the following: I use the IhtmlDocument2 to get the links and images etc but I got stuck at the frames. I use code like...
rob.da.praia@...
Jan 8, 2001 4:17 pm
441
There's an example in my FAQs - WebBrowser - DOM -- Henri Fournier http://members.home.net/hfournier ... From: rob.da.praia@......
Henri Fournier
hfournier@...
Jan 8, 2001 4:31 pm
442
Hello Henri and other friends, I have a big troubles with installing my app to another computer than my own... Something in my app must be wrong... How I must...
Milan Kajnar
techno@...
Jan 9, 2001 7:25 am
443
I have copied *.bpl, *.dll and *.ocx files for my application in one directory. Questions is: *.bpl and *.dll files can be placed directly to the app drawer? ...
Milan Kajnar
techno@...
Jan 9, 2001 9:39 am
444
Go to MS site and find deployment instructions for DHTMLEdit component. You can't just copy those two files. Plus, IE (v4 or greater) has to be installed on...
Henri Fournier
hfournier@...
Jan 9, 2001 3:02 pm
445
Hi all, I am hoping someone may be able to help me. I am using the DHTML control to display the body of HTML email. This works fine. Where I run into trouble...
paul_dow@...
Jan 10, 2001 4:12 am
446
hello, how can I insert a tag like div, span, layer, or an other tag? Can anyone help me? thanks, Alex Romijn...
ar@...
Jan 10, 2001 8:16 pm
447
hi.. I want to merging cell! but cells in table are not selected by mouse-dragging. how select the cells and how merge cells? please answer for me....
wideeye@...
Jan 11, 2001 6:32 am
448
Alex, take a look at my earlier answer on how to insert a <comment> tag, and you'll be on your way. Kurt ... From: ar@... [mailto:ar@...] ...
Kurt Senfer
ks@...
Jan 11, 2001 7:29 am
449
Hello... My example is here... FSelectionRange:=IHTMLTxtRange(DHTMLEdit1.DOM.selection.CreateRange); FSelectionRange.pasteHTML('<div align=center><form...
Milan Kajnar
techno@...
Jan 12, 2001 10:12 am
450
I have the same problem with joining cells.. When I want join cells in which not are chars then it can not be selected... ... From: <wideeye@...> To:...
Milan Kajnar
techno@...
Jan 12, 2001 10:20 am
451
It can be selected but can't see. if cells hava chars then selection is visible. but if it have not chars, Selection state is not visible. ... selected......
wideeye@...
Jan 13, 2001 9:51 am
453
This message is clearly off-topic and therefore not allowed in this group, please post your message in a more appropriate group. If you have forgotten the...
Henri Fournier
hfournier@...
Jan 14, 2001 2:53 pm
454
Hello, I have an one small problem... When I want resize my application window in which is DHTMLEdit1 with some selected object, it crashing (OLE error)... (it...
Milan Kajnar
techno@...
Jan 15, 2001 11:07 am
455
Hi I work on a app that Currently uses MSHTML Edit in an IFrame as a basic editor. We are working on upgrading our product for IE 5.5 and This editor doesn't...