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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1594 - 1623 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1594
I am new to Delphi and am learning as I go along to make an open source HTML/PHP editor. As you know, most well-written editors are closed source, and would...
oo00_sleepy_00oo
oo00_sleepy_...
Offline Send Email
Nov 7, 2003
2:58 am
1595
Hi! I use DHTML Edit for some times now and there is something I would like to get resolved. When using the DHTMLEdit.PrintDocument() routine. The document is ...
vincentlemieux
Offline Send Email
Nov 8, 2003
1:25 am
1596
Printing has nothing to do with DHTML Edit - its the MSHTML Engine that does the printing and default it prints the documents path in the footer - in this case...
Kurt Senfer
lexicalis
Offline Send Email
Nov 10, 2003
7:34 am
1597
Hi all, I'd like to provide an interface for my customers which enables them to create additional html pages on the server (eg. adding new events onto their...
hudgi22
Offline Send Email
Nov 13, 2003
2:09 am
1598
Does somebody know how Left and Right methods of IMarkupPointer interface work with CONTEXT_TYPE_Text ?...
jmlgglmj
Offline Send Email
Nov 13, 2003
10:56 am
1599
... You have to add Variants in the uses in main.pas...
ovislibri
Offline Send Email
Nov 26, 2003
1:18 am
1600
Hi All, Can someone provide a 2 minute overview of adding a WYSIWYG HTML editor to a Delphi app. I know there are controls that are part of windows and some...
Brad
groups@...
Send Email
Dec 7, 2003
3:50 am
1601
Hi Brad, Its difficult to get all the information you need in a 2 minute overview. ... It depends on how much time you want to spend on writing your app. If...
Kurt Senfer
lexicalis
Offline Send Email
Dec 8, 2003
8:15 am
1602
Error Line 276 Error Variable name expected for this code: NullVariant: OleVariant absolute 0; Do I need a component.. it keeps opening up Thesaurus and spell...
powax1
Offline Send Email
Dec 10, 2003
7:44 am
1603
hi all, May I insert html code at cursor position? I can insert text at cursor position like this: IDoc1: IHTMLDocument2; rng: IHTMLTxtRange; r: IDispatch; . ....
wanxiaofang
Offline Send Email
Dec 10, 2003
4:21 pm
1604
hi all, May I insert html code at cursor position? I can insert text at cursor position like this: IDoc1: IHTMLDocument2; rng: IHTMLTxtRange; r: IDispatch;...
gamma
wanxiaofang
Offline Send Email
Dec 10, 2003
4:22 pm
1605
I'm trying to get HTML source code preservation functionality into my app. I'm using MSHTML. I'm trying to avoid the HTML round-trip problem, where user...
asimullah70
Offline Send Email
Dec 13, 2003
2:20 am
1606
Hi, wanxiaofang! maybe you should turn the IDoc1 to edit mode at first: IDoc1.designMode := 'On'; ... = = = = = = = = = = = = = = = = = = = = regards! ...
agui
agui_china
Offline Send Email
Dec 24, 2003
8:33 am
1607
Hi, powax1! I guess you are using D6 or D7, which don't allow declaring variables with absolute addresses. You'd better remove that line and replace all ...
agui
agui_china
Offline Send Email
Dec 24, 2003
8:41 am
1608
Hello!! To me will very pleasantly join group which is engaged works in the field of editing HTML by the integrated means. I am interested also with this...
WTLib
wtlib_developer
Offline Send Email
Dec 25, 2003
4:52 pm
1609
First, happy New Year to all of you! Now, a little call for help. Do anybody know how to catch an event when document is modified (using MSHTML IHTMLDocument...
Damir Simunovic
dsimun
Offline Send Email
Dec 31, 2003
2:14 am
1610
Damir, You need to read the SDK_Help.chm from A to Z - that's the only way to be familiar with DHTML Edit. You can get the help file from this groups file...
Kurt Senfer
lexicalis
Offline Send Email
Jan 2, 2004
6:34 am
1611
ie.Document.QueryInterface(IOleCommandTarget, CmdTarget); v:=TRUE; v1:=null; if CmdTarget <> nil then CmdTarget.Exec( PGuid(nil), IDM_SHOWALLTAGS,...
yarekc
Offline Send Email
Jan 6, 2004
2:06 am
1612
I use a DHTMLEdit to print something in the background so it does not need to be visible However as soon as I make it not visible I get a error about something...
netstop2000
Offline Send Email
Jan 10, 2004
10:41 pm
1613
Hi, I think you can make its width and height zero and non-tabstop, not invisible, and print. I haven't tried anyway. I have printed with zero-size WebBrowser....
agui
agui_china
Offline Send Email
Jan 13, 2004
9:38 am
1614
hi all, I would like to disable the right-clic on the webbrowser, and i use this method : on the DocumentComplete event, i tried this : var CurrentWB:...
phenixauthor
Offline Send Email
Jan 14, 2004
4:19 pm
1615
Hi, I just uploaded a new file "VCL Html Editor.zip", witch contains a VCL component called EmbeddedED. EmbeddedED wraps the MSHTML engine, and removes a lot...
Kurt Senfer
lexicalis
Offline Send Email
Jan 16, 2004
4:30 pm
1616
Hi Kurt, great and thank you - I understand this is a great work. I tried to install in D6PE, but failed because of missing QConsts. What must I have in my...
Donnerbauer
donnerbauer61
Offline Send Email
Jan 16, 2004
7:04 pm
1617
tks for any help....
Jaison Antoniazzi
katolllzi
Offline Send Email
Jan 17, 2004
1:44 am
1618
Ruediger, ... Open the KS_Lib unit and Find the line: uses {$IFDEF D6D7} RtlConsts, variants, QConsts, {$ENDIF} AXCtrls, KS_Procs; you can change it to: uses...
Kurt Senfer
lexicalis
Offline Send Email
Jan 19, 2004
9:50 am
1619
Hi Ruediger, ... If you have placed and unpacked the new zip in another folder than the pervious zip, and you haven't executed the DHTML.exe in the new...
Kurt Senfer
lexicalis
Offline Send Email
Jan 19, 2004
12:49 pm
1620
On the pain of being ridiculed: I understand you've developed a Delphi interface to IE. Has someone ported this to C#? Thanks A...
avi_nahir@...
avi_nahir
Offline Send Email
Jan 20, 2004
4:13 pm
1621
Hi, at least I haven't heard about it :-) You should be able to use the OCX version of my editor without great difficulties. Kurt ... From: avi_nahir@......
Kurt Senfer
lexicalis
Offline Send Email
Jan 21, 2004
6:20 am
1622
Has anyone ever tried to call a dhtml session from an asp page??? I dhtml compiled into a activex dll and I am trying to call the dll from an asp page. I can...
mew_work
Offline Send Email
Feb 18, 2004
1:27 am
1623
... What do you mean by this ? The dhtmled.ocx is an AxtiveX dll - just as it is ! If you a trying to wrap the dhtmled.ocx together with some additional ...
Kurt Senfer
lexicalis
Offline Send Email
Feb 18, 2004
6:33 am
Messages 1594 - 1623 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