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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1209 - 1240 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1209
Can you upload the source code of TDHTMLEventHandler? Or provide a method to do that. ... programming :-) ... job - then ... number of ways ... tables ... show...
lgshareware
Offline Send Email
Nov 3, 2002
6:31 pm
1210
Try Alexei's place at http://www.geocities.com/amreatov/index.htm <http://www.geocities.com/amreatov/index.htm> Kurt ... From: lgshareware...
Kurt Senfer
senfery
Offline Send Email
Nov 4, 2002
7:12 am
1211
I see.But I can't find the page. Can you email me?Or give me a proxy server address to visit http://www.geocities.com/...
lgshareware
Offline Send Email
Nov 5, 2002
6:15 am
1212
This is the only way in I know of I just tryed again and I find the TDHTMLEventHandler without any troubles. Kurt ... From: lgshareware...
Kurt Senfer
senfery
Offline Send Email
Nov 5, 2002
7:22 am
1213
The problem seems to be the line iOIPAO._Release; I changed it into iOIPAO:=nil; and have no exceptions anymore. As far as I know, in Delphi 6 Interfaces are...
jamesbrown772000
jamesbrown77...
Offline Send Email
Nov 5, 2002
3:36 pm
1214
... The problem is in GetAvailableStyles : Change it to this : procedure TfrmMain.GetAvailableStyles; var varRange: OleVariant; b: TBStr; a: PSafeArray; l, h,...
jamesbrown772000
jamesbrown77...
Offline Send Email
Nov 5, 2002
3:36 pm
1215
Hi all I use MSHTML for builing a editor. Now I want to enable the users to Copy/Paste or Drag/Drop text from MS Word. It's working, but it generates horrible...
broesel2003
Offline Send Email
Nov 5, 2002
3:36 pm
1216
... TVariantArg(VarRange).VT := VT_Variant; !!! ... Before the Variant is cleared, the type must be changed. I think it's a Delphi bug....
jamesbrown772000
jamesbrown77...
Offline Send Email
Nov 5, 2002
4:50 pm
1217
Hi all, I am new to using dhtmledit and am just learning to program delphi so this is probably a stupid question. I have inserted a table into my dhtmledit...
KS
dksihota
Offline Send Email
Nov 6, 2002
8:18 am
1218
I need to make a function that changes the background color of a table cell in DHTMLEdit .... but i can't find out on what IHTMLElement is the Keyboard cursor...
Dorin Ciobanu
root@...
Send Email
Nov 6, 2002
1:39 pm
1219
Hi, I would like to use the WYSIWYG editor MSHTML. I read, that dropping a TWebBrowser component would be the beginning. In the following, the interface...
ikwteam
Offline Send Email
Nov 8, 2002
5:25 pm
1220
inport MSHTML type librery from menu project|install type library and install component then you 'll get MSHTML2_tlb.pas or somethink like that than put that...
Tomaž Cerar
jezek1
Offline Send Email
Nov 8, 2002
7:11 pm
1221
Ok, and finally a uses mshtml_tlb; Thanks Tomaz. This seems to work :-) Ingmar ... like that ... beginning. ... ...
ikwteam
Offline Send Email
Nov 9, 2002
10:31 am
1222
F***, I'm nearly getting desparate with that thing... I just want to insert some simple text to a new document... //New Document ...
ikwteam
Offline Send Email
Nov 9, 2002
2:43 pm
1223
Hi there ... you may try replacing while w.Busy do Application.ProcessMessages; with while Browser.Busy do Application.ProcessMessages; An alternative method...
SorinV
Offline Send Email
Nov 10, 2002
11:48 am
1224
Replied directly to him, but will post here for all of you to see :) This piece of code will give you the currently selected element. var range: OleVariant; ...
SorinV
Offline Send Email
Nov 10, 2002
11:54 am
1225
Hello Sorin, of what type is your variable "range"? And I'm not sure if I understand your second alternative which seems to insert an image... Do you use this...
ikwteam
Offline Send Email
Nov 10, 2002
12:37 pm
1226
Hi, Range is of type OleVariant. For inserting simple text, you can either embed the text in a <span> object or use Range.Text := 'mynewtext'; (this will...
SorinV
Offline Send Email
Nov 11, 2002
11:24 am
1227
Thanks Sorin, I will have a try :-) Regards Ingmar ... <span> ... image) ... as...
ikwteam
Offline Send Email
Nov 11, 2002
6:11 pm
1228
Hi, Have you tried: rg.parentElement.outerHTML := new_html; ? Regards, Sorin ... so this ... like to ... table, ... selection. Since ... working with ... don't...
SorinV
Offline Send Email
Nov 13, 2002
7:39 am
1230
Hello. You. I am the student to begin the study to make the uebeditu now. I inserted leul DHTML component TABLE leul to use. The size adjustment of the cloumn...
ehfus
Offline Send Email
Nov 13, 2002
3:04 pm
1231
Hi Sorin Thanks for the response. I figured out what I was doing wrong. Instead of treating the items as objects which I could then assign attributes to, I...
KS
dksihota
Offline Send Email
Nov 14, 2002
7:15 am
1232
Hi, MSHtml is truly not my world :-( Can anybody please tell me how to set a style like <H1> in a MSHtml component? A piece of code would be very helpful. I...
ikwteam
Offline Send Email
Nov 14, 2002
9:48 am
1233
Hi, Have you tried (wb.Document as IHTMLDocument2).execCommand('FormatBlock', false, '<H1>'); ? Regards, Sorin...
SorinV
Offline Send Email
Nov 14, 2002
7:16 pm
1234
Hi, I would really recommend altering the TD and TR tags directly instead of setting COL tags in the table. It is more flexible. Regards, Sorin ... Instead of...
SorinV
Offline Send Email
Nov 14, 2002
7:19 pm
1235
Hello Sorin, it's you again! Well, no I didn't try that. Nobody told me ;-) It's working, thanks very much again. Ingmar ... MSHtml ... on,...
ikwteam
Offline Send Email
Nov 14, 2002
7:27 pm
1236
I alter the TD tag when I change the Cell attributes and the TR tag when I set the Row attributes. I want to alter the col tag when I set the Column...
KS
dksihota
Offline Send Email
Nov 14, 2002
11:16 pm
1237
Ok, I've figured out how to set the COL attributes (DUH!! setattribute.) Can someone give me an easy way to specify which Column of the table the cursor is in...
KS
dksihota
Offline Send Email
Nov 15, 2002
1:49 am
1239
Ok, I've now figured out how to use the RowIndex and CellIndex to obtain my Row and Column and can now format the currently selected Row, Column, and Cell of a...
KS
dksihota
Offline Send Email
Nov 18, 2002
2:56 am
1240
Hi, I've search on this newsgroup, and found many similar queries, but no answers. I'm hoping to get lucky on this one :) Okay, the problem is: When I press...
dirty_blue_jeans
dirty_blue_j...
Offline Send Email
Nov 19, 2002
6:42 pm
Messages 1209 - 1240 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