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@...
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@...
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@...
Mar 1, 2001 5:15 pm
555
Hello, How in PopupMenu to create Submenu? Alex Markov vicont@......
Aleksander Markov
vicont@...
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@...
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@...
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@...
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@...
Mar 2, 2001 2:59 pm
560
Thank You For All of Your Help Petr!!! Andrew...
Andrew
THe_Wizard@...
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@...
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@...
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@...
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@...
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@...
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@...
Mar 7, 2001 7:45 pm
567
DHTMLEdit.OleObject.DOM.body.InnerText ... in...
tjacvic@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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...