Search the web
Sign In
New User? Sign Up
delphi-dhtmledit · Delphi: Using MS DHTMLEdit
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1425 - 1454 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1425
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...
Amos Szust
amosreut
Offline Send Email
Aug 4, 2003
2:40 pm
1426
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. ...
jeremy
mjleppan2000
Offline Send Email
Aug 4, 2003
2:55 pm
1427
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) ...
Amos Szust
amosreut
Offline Send Email
Aug 4, 2003
2:59 pm
1428
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...
Alexandre Gonzales
charlyolegfr
Offline Send Email
Aug 4, 2003
3:09 pm
1429
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...
Amos Szust
amosreut
Offline Send Email
Aug 4, 2003
3:21 pm
1430
HTMLEd.body.innerHTML := myhtmlcode HTMLEd is a IHTMLDocument2 {Create/invoke the MSHTML document interface} HTMLEd := Document as IHTMLDocument2; ... ...
Alexandre Gonzales
charlyolegfr
Offline Send Email
Aug 4, 2003
3:27 pm
1431
Something like that except take an instance of the body innerHTML first then Body = mycode + body ... From: Alexandre Gonzales...
jeremy
mjleppan2000
Offline Send Email
Aug 4, 2003
3:36 pm
1432
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...
jeremy
mjleppan2000
Offline Send Email
Aug 4, 2003
3:37 pm
1433
... it's not hard, with the good command. and the msdn website and this group :-) ... [Non-text portions of this message have been removed]...
Alexandre Gonzales
charlyolegfr
Offline Send Email
Aug 4, 2003
3:39 pm
1434
yeah exactly that 10x to u and alexandre it worked :-) ... From: jeremy [mailto:jeremy@...] Sent: Monday, August 04, 2003 5:38 PM To:...
Amos Szust
amosreut
Offline Send Email
Aug 4, 2003
3:42 pm
1435
how can the above be done? 10x...
Amos Szust
amosreut
Offline Send Email
Aug 4, 2003
4:52 pm
1436
var rg : IHTMLTxtRange; begin rg := DHTMLEdit.DOM.selection.createRange as IHTMLTxtRange; rg.text := 'Text'; end; Prahal. V ... From: Amos Szust...
Prahalathan Viswanath
hiprahal
Offline Send Email
Aug 5, 2003
3:21 pm
1437
Hi i want to insert an image into the control but not by specifying the path, but the picture is in the ImageList component HTMLEdit.execCommand(DECMD_IMAGE,...
Amos Szust
amosreut
Offline Send Email
Aug 6, 2003
6:40 am
1438
HI is there a way to embed an imag into the HTML instead of just linking to it? i mean, for example: i put an image in the control and send it to a friend (i...
Amos Szust
amosreut
Offline Send Email
Aug 6, 2003
7:08 am
1439
HI 1) when inserting an image the caret disappears and the image get focus (a square around it), is there a way to avoid it so the caret will be right after...
Amos Szust
amosreut
Offline Send Email
Aug 6, 2003
8:15 am
1440
This is a bit of a tricky one, A bit like asking, is there a way to get a binary file into a text file. Without going way over board, I don't think this is...
jeremy
mjleppan2000
Offline Send Email
Aug 6, 2003
10:47 am
1441
Hello Amos, Wednesday, August 6, 2003, 11:03:46 AM, you wrote: AS> HI AS> is there a way to embed an imag into the HTML instead of just linking to it? AS> i...
Ion Silvestru
silvestru@...
Send Email
Aug 6, 2003
12:08 pm
1442
I'm trying to make a descendant component od the TDHTMEdit Component that will have the default "Enter" behavior reversed: It will add <BR> tags on Enter, and...
Wekoslav Stefanovski
sweko
Offline Send Email
Aug 6, 2003
2:54 pm
1443
Hello, normally this happens if you have flash or some other embedded objects in your document. To solve your problem simply start a timer and look for a...
Franz Plato
fun467x
Offline Send Email
Aug 9, 2003
3:21 am
1444
Hello, you have to implement the IHTMLEditDesigner Interface to achieve this behaviour. Regards {IHTMLEditDesigner} function PreHandleEvent(inEvtDispId:...
Franz Plato
fun467x
Offline Send Email
Aug 9, 2003
3:21 am
1445
Hello, you have to use following interfaces: IMarkServices IMarkupPointer IHTMLCaret IHTMLDisplayPointer 1. Place the markup pointer retrieved from markup ...
Franz Plato
fun467x
Offline Send Email
Aug 9, 2003
3:21 am
1446
according to a help i got from here, i did the following: var Mark: IMarkupServices; Markup: IMarkupPointer; Caret: IHTMLCaret; Disp: IDisplayPointer; Disps:...
Amos Szust
amosreut
Offline Send Email
Aug 10, 2003
8:21 am
1447
HI how can i initialize the control? meaning to set the html code of the component to be exactly when it was first created i have the following code: if...
Amos Szust
amosreut
Offline Send Email
Aug 10, 2003
1:05 pm
1448
HI is there a problem placing 2 dhtmledit components in 2 different forms ? for some reason, if i touch the documenthtml of the second component, i get access...
Amos Szust
amosreut
Offline Send Email
Aug 10, 2003
2:12 pm
1449
Hi, You have to retrieve the IMarkupServices & IDisplayServices pointers by calling QueryInterface. I have placed the calls within your code example. Regards ...
fun467x
Offline Send Email
Aug 10, 2003
7:41 pm
1450
HI how can i delete 2 characters before the current position of the caret?...
Amos Szust
amosreut
Offline Send Email
Aug 11, 2003
6:23 am
1451
HI i have 2 dhtmledit components in 2 different forms in same app. when there was one, everything was ok now i added another one, and when i use...
Amos Szust
amosreut
Offline Send Email
Aug 11, 2003
8:26 am
1452
I've put on WebBrowser and other components on form, and made the browser editing mode by setting contenteditable. When browser get focus, caret does not show...
suhkuhuh
Offline Send Email
Aug 17, 2003
4:27 am
1453
HI there is a component called THTMLLite, in which there is an event onimagerequest with which i can play a little so it will display the image even for cases...
Amos Szust
amosreut
Offline Send Email
Aug 17, 2003
12:15 pm
1454
HI even though i marked "usedivoncarriagereturn" to TRUE. lots of times, i still get <p>, usually it happens when using a previous HTML code and continue from...
Amos Szust
amosreut
Offline Send Email
Aug 17, 2003
1:49 pm
Messages 1425 - 1454 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help