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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1406 - 1435 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1406
... Try putting it inside a TPanel (no kidding.) Leonardo Herrera...
Leonardo Herrera
leherrer
Offline Send Email
Jul 1, 2003
4:41 pm
1407
when u r right u r right ... From: Leonardo Herrera [mailto:leonardo.herrera@...] Sent: Tuesday, July 01, 2003 6:46 PM To:...
Amos Szust
amosreut
Offline Send Email
Jul 1, 2003
4:57 pm
1408
In my program I'm trying to get the currently selected element in the browser. I am using the following code: function THTMLSimpleEdit.GetElement:...
Roy Sutton
dgateroy
Online Now Send Email
Jul 1, 2003
5:28 pm
1409
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 ...
Amos Szust
amosreut
Offline Send Email
Jul 1, 2003
5:34 pm
1410
hi i am looking for a delphi function that acts like escape and unescape in javascript. example: xmlstr:=encode('hello'); // xmlstr will contain hello ...
auser99fin
Offline Send Email
Jul 6, 2003
2:25 pm
1411
See httpEncode, HttpDecode in HttpApp.pas ... From: auser99fin [mailto:auser99fin@...] Sent: Monday, 7 July 2003 12:26 AM To:...
Tom Robertson
philfred00
Offline Send Email
Jul 6, 2003
10:41 pm
1412
only way i could solve this is like that: in DocumentComplete: ... if (BiDiMode = bdRightToLeft) then DOMInterface.body.setAttribute('dir', 'rtl', 0); // UI...
morgantop70
Offline Send Email
Jul 7, 2003
5:56 pm
1413
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 ... ...
morgantop70
Offline Send Email
Jul 7, 2003
6:06 pm
1414
use the Ononkeypress event: procedure TForm1.DHTMLEdit1onkeypress(Sender: TObject); var Event: IHTMLEventObj; begin if not DocComplete then Exit; try Event :=...
morgantop70
Offline Send Email
Jul 7, 2003
6:14 pm
1415
how can i make my own DECMD_HYPERLINK window for adding and editing hyper-links insted of the default control/IE window? thanks....
morgantop70
Offline Send Email
Jul 7, 2003
6:20 pm
1416
10x it worked !! ... From: morgantop70 [mailto:morgantop70@...] Sent: Monday, July 07, 2003 7:55 PM To: delphi-dhtmledit@yahoogroups.com Subject:...
Amos Szust
amosreut
Offline Send Email
Jul 8, 2003
6:12 am
1417
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...
fralolo
Offline Send Email
Jul 8, 2003
2:59 pm
1418
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 :=...
broesel2003
Offline Send Email
Jul 23, 2003
3:57 pm
1419
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...
jeremy
mjleppan2000
Offline Send Email
Jul 23, 2003
4:29 pm
1420
to use absolute links you should set base tag on you document in html i looks something like: <html> <head> <base href=http://www.yoursite.com...
Tomaž Cerar
jezek1
Offline Send Email
Jul 24, 2003
6:22 am
1421
I use the following code but don't work. DHTMLEdit.DOM.body.style.backgroundImage :='url(.\sample.jpg)'...
xtdalianxthe2003
xtdalianxthe...
Offline Send Email
Jul 25, 2003
3:29 pm
1422
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...
Graeme
graeme_gorman
Offline Send Email
Jul 30, 2003
3:02 pm
1423
If figured it out - so no worries people......
Graeme
graeme_gorman
Offline Send Email
Jul 31, 2003
10:34 am
1424
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...
mkcmrk
Offline Send Email
Jul 31, 2003
11:24 am
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
Messages 1406 - 1435 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