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 552 - 581 of 1923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
552
Hello, I want to start off with saying I seacrhed other messages but I did not find with what I need. I want to creat an object inspector. I want to it so when...
Andrew
THe_Wizard@...
Send Email
Mar 1, 2001
3:19 pm
553
If you are using IE5 only, then you can use the Attributes collection: http://msdn.microsoft.com/workshop/author/dhtml/reference/collections/attrib utes.asp --...
Henri Fournier
hfournier@...
Send Email
Mar 1, 2001
4:07 pm
554
Thank You Very Much. But are there any samples that you know of that have a working property inspector. Andrew...
Andrew
THe_Wizard@...
Send Email
Mar 1, 2001
5:15 pm
555
Hello, How in PopupMenu to create Submenu? Alex Markov vicont@......
Aleksander Markov
vicont@...
Send Email
Mar 1, 2001
5:28 pm
556
Hello, I went to microsoft and i think this is what you use: DHTMlEdit1.DOM.activeElement.SetAttribute(); But i don't know what to put in here SetAttribute(...
Andrew
THe_Wizard@...
Send Email
Mar 1, 2001
7:43 pm
557
Try DHTMlEdit1.DOM.activeElement.SetAttribute ('border', '1', 0); You can find very good documentation in MSDN Petr ... From: "Andrew"...
Petr Langer
p.langer@...
Send Email
Mar 2, 2001
7:51 am
558
Hello Petr, ... Could you please send me the url because MSDN is so big and it is hard to find one thing. Thank You for Your Help, Andrew ... Andrew CBuilder...
Andrew
THe_Wizard@...
Send Email
Mar 2, 2001
1:12 pm
559
No problem: http://msdn.microsoft.com/workshop/Author/dhtml/reference/methods/setAttribu te.asp I usually use off-line MSDN (on CDs), but this works if you go...
Petr Langer
p.langer@...
Send Email
Mar 2, 2001
2:59 pm
560
Thank You For All of Your Help Petr!!! Andrew...
Andrew
THe_Wizard@...
Send Email
Mar 2, 2001
5:18 pm
561
Hello, My first problem is I can't seem to my popup menu to work. I have it difiend but when i right click on the DHTMLEdit component nothing happens. My...
Andrew
THe_Wizard@...
Send Email
Mar 3, 2001
6:47 pm
562
I think if there is no way to set charset with DHTMLEdit control. Has anyone solved it?...
tjacvic@...
Send Email
Mar 5, 2001
2:41 am
563
Hi there, for the popup menu you should do like following : Double-click on the event ShowContext Menu and enter the following code : // --- Beginning --- ...
Alex HANIN
Alex.hanin@...
Send Email
Mar 5, 2001
9:11 am
564
there are codes in my program like follows: DHTMLEdit.NewDocument; DocComplete := False; while (not DocComplete) do Application.ProcessMessages; ...
tjacvic@...
Send Email
Mar 7, 2001
10:15 am
565
Just modified the last sentence like follows: DHTMLEdit.OleObject.DOM.body.InnerHTML := '<DIV>anytext...</DIV>'; then everything is OK (include double...
tjacvic@...
Send Email
Mar 7, 2001
10:55 am
566
Hello, Can I just get the text. For exeample I to put a spell checker in and I want it to check the text not the tags. How can I do that? Andrew...
THe_Wizard@...
Send Email
Mar 7, 2001
7:45 pm
567
DHTMLEdit.OleObject.DOM.body.InnerText ... in...
tjacvic@...
Send Email
Mar 8, 2001
6:08 am
568
I'am using the activex component TDHTMLEdit in C-Builder. Now i was trying to access the IOleCommandTarget object. I was trying to do ptr =...
Andreas Wehner
andreas_wehner@...
Send Email
Mar 9, 2001
4:29 pm
569
Hello, I want to create an onject inspector like Delphi's what component should I use for by WYSIWYG HTML Editor. Andrew...
Andrew Fry
THe_Wizard@...
Send Email
Mar 12, 2001
7:50 pm
570
Hi everyone, I\'m using DHTMLEdit to make a wordprocessor and i would like to protect some part of the text (with the contenteditable option of M$) from being...
Laurent Frisee
frisee@...
Send Email
Mar 15, 2001
2:58 pm
571
Hello, I have an application and i have the DHTMLEdit component in the application. It works fine on the computer that I created it with but when i use it on...
Andrew Fry
THe_Wizard@...
Send Email
Mar 19, 2001
4:33 pm
572
Hello, The fix is at Henri's Website at: http://members.home.net/hfournier Hope That Helps, Andrew...
THe_Wizard@...
Send Email
Mar 19, 2001
7:57 pm
573
The target machine has to have IE installed. IE4 didn't come with DHTMLEdit so you have to install it too. IE5 already has it. ...
Henri Fournier
hfournier@...
Send Email
Mar 20, 2001
2:06 am
574
Hello, I want to use the GetAttribute command. Can someone please show me an example in Delphi please. thank You, Andrew...
Andrew Fry
THe_Wizard@...
Send Email
Mar 20, 2001
9:30 pm
575
http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/getattribu te.asp var ovBGColor: OleVariant; begin ovBGColor :=...
Henri Fournier
hfournier@...
Send Email
Mar 21, 2001
1:21 am
576
I've tried the followed sentence, but no effect. DOM.charset = WideString(xxxx); Does anyone know how to set the charset? Thanks....
tjacvic@...
Send Email
Mar 21, 2001
10:33 am
577
Hello, I have created a small Object Inspector for my application but I want the current property to show in the object inspector. I figured that out but when...
Andrew Fry
THe_Wizard@...
Send Email
Mar 21, 2001
10:05 pm
578
Hello Andrew, the function getattribute returns an OleVariant not a string. in some cases the olevariant can convert to a string in other cases the value is...
Tony Speed
tspeed@...
Send Email
Mar 22, 2001
12:21 am
579
Hello, I am still confused. I used a OleVariant varible to hold the data but I got the error cannot convert OleVariant with a procedure. i used the following...
Andrew Fry
THe_Wizard@...
Send Email
Mar 22, 2001
12:41 am
580
Hello, I have seen this problem alot and I have not found a really good answer. I would like tofind if the selected object is a table, an image or a div etc. I...
Andrew Fry
THe_Wizard@...
Send Email
Mar 22, 2001
2:17 am
581
I have an dbgrid an a embeddedwb on a form. If a go with mouse to the embeddedwb and click on it and then return with the mouse to the grid and try to click on...
Bram van der Voet / A&V
bram@...
Send Email
Mar 22, 2001
9:01 am
Messages 552 - 581 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