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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1392 - 1421 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1392
I would prefer that you ask questions here, rather than my personal e-mail. -- Henri ... From: Aleksey [mailto:alklkim@...] Sent: May 28, 2003 4:15 AM To:...
IE Delphi
hhfournier
Offline Send Email
Jun 4, 2003
6:13 am
1393
After Cell Props modification of bgcolor DhtmlEdit component doesn't show the new colour. But if i close and reload this document the new colour appears Why ?...
alain962
Offline Send Email
Jun 11, 2003
5:42 am
1394
... var I: Integer; Elem: OleVariant; begin for i := 0 to DHTMLEdit1.OleObject.DOM.body.all.Length - 1 DO begin Elem:=...
alain962
Offline Send Email
Jun 11, 2003
5:42 am
1395
For your information. Do some research on tristate on the MSHTML , not DHTMLEDIT. Its slightly related to what you want to do ... From: alain962...
Jeremy
mjleppan2000
Offline Send Email
Jun 11, 2003
8:25 am
1396
i have resolved in this mode procedure THTMLEdit.ApplicationEvents1Message(var Msg: tagMSG; var Handled: Boolean); begin if (Msg.message = WM_KEYDown) then ...
GCPC14
Offline Send Email
Jun 11, 2003
2:44 pm
1397
Replace SHDocVw_TLB with SHDocVw ... Da: jamorenoruiz [mailto:jamoreno@...] Inviato: mercoledì 21 maggio 2003 13.02 A: delphi-dhtmledit@yahoogroups.com ...
Giovanni Chiocchio
GCPC14
Offline Send Email
Jun 11, 2003
6:03 pm
1398
How would I do this? An example would be good. Also when in Editmode, how do I insert text. I would have thought I could just type and it would insert what I...
schumacheristoofast
schumacheris...
Offline Send Email
Jun 12, 2003
6:39 am
1399
Hi Everybody, I am trying to load a HTML file that contains Frameset, like so: <FRAMESET ROWS="150,*"> <FRAME NAME="control"> <FRAME NAME="main"> </FRAMESET> ...
natanfrie
Offline Send Email
Jun 13, 2003
1:14 am
1400
Hi folks, after a long and unexpected struggle with the Delphi type library editor, the OCX I've spoken of several times is available in beta. The OCX is...
Kurt Senfer
lexicalis
Offline Send Email
Jun 18, 2003
3:57 pm
1401
As you know, a DHTMLEDIT control will disable function keys if it is embedded in another ActiveX control. Here is the solution. The source code is for C++, but...
leowang317
Offline Send Email
Jun 25, 2003
2:22 pm
1402
HI 1) if im pressing UP key in the first line of the control or the DOWN key in the last line of the control the cursor disappears from it, and i need to click...
amosreut
Offline Send Email
Jun 30, 2003
6:11 am
1403
HI how come that the Event OnKeyPress does not include the values for the key that was pressed? any other control includes the Key that was pressed and the...
Amos Szust
amosreut
Offline Send Email
Jun 30, 2003
7:32 am
1404
HI for some reason no matter how i declare the BidiMode (at runtime since it has no property with this name) the control's scrollbars are always on the right...
Amos Szust
amosreut
Offline Send Email
Jun 30, 2003
9:58 am
1405
HI as continue to my previous post about losing focus after going up from first line or down from last line, i tried .setfocus after each keypress/down/up the...
Amos Szust
amosreut
Offline Send Email
Jul 1, 2003
6:16 am
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
Messages 1392 - 1421 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