Hi, Kurt. Question to you as experienced programmer in area of web browser hosting. Have you ever tried to develop rendering behaviors? I'm trying now and have...
Hi Serge, ... I got it to work in my KSDHTMLEdit component - you can se it work for highlighting of selected table cells in my demo exe. Just keep on trying...
... What do you mean? I've found your old email(Message #997 Jan 2, 2002): procedure DoDrawMarker(R: TRect); var DC: HDC; begin DC := GetDC(msHTMLwinHandle); ...
I just started with MS's render.cab demo and spend a log time doing the usual trial and error stuff - so I don't have the faintest idea of what's troubling...
Take a peep at :http://tech.groups.yahoo.com/group/KSDhtmlEdit/ Kurt ... From: delphi-dhtmledit@yahoogroups.com [mailto:delphi-dhtmledit@yahoogroups.com] On...
Hi ... render.cab is dll solution. So, microsoft gays had to go through coclass/custom tlb stuff. Marko Binic was doing the same. Is it important for rendering...
My KSDhtmlEdit component implements binary behaviors along the same road as you where describing - I don't use "cab-based" behaviors either Kurt ... From:...
Thanks a lot, Kurt. Some code from your forum has helped me. I didn't have working variant. So it was very complicated to understand wat's wrong. I have not...
hi in case the html im using contains 2 occurrences of <html> tag and <body> tag when switching to browse mode: if the page is already loaded, the content...
hi i have an html it contains windows-1255 in the html tag: <meta http-equiv='content-type' content='text/html; charset=windows-1255'> the content is in hebrew...
i have an html with the following code: <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.site.com" target="_blank"> i dont have...
Hello all, Maybe you know when you copy some content from a web page to the clipboard and if your browser is Internet Explorer, it can ben pasted onto the...
... the concept as such is simple enough but the actual implementation can be quit demanding :-) Although its not documented at MS the "HTML Clipboard Format"...
hi i have the following code rg := IHTMLTxtRange(wb.DOM.selection.CreateRange); tmp := rg.Text . . . rg.Text := result; it seems that the text loses its html...
Hello,Great Programmer, Now,I Edit HTML with the EmbeddedWB and EditDeigner.When press Enter key, it out <p>. May it out <br>? I do not need <P>. It is very...
Hi Mars, I think you already have seen my message about this theem ... From: delphi-dhtmledit@yahoogroups.com [mailto:delphi-dhtmledit@yahoogroups.com] On...
Hi xh, ... correctly. It works like a charm - I've just tested it in my old DHTMLEdit project. As you don't explain what kind problems your having with the...
Hi Mars, As you ask this question after having read my posting from late February I recon you have decide to take the easy road instead of implementing all the...
Or just press Shift+Enter :) (it works with MSHTML ...) ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has...
... Oh yes its the nearly universally accepted but sparsely documented "non inserting cursor return" Keyboard Accelerator, witch mshtml converts to the command...
Here is another alternative that may work for you. Seems that anytime the cursor is within a "<DIV>...</DIV>" then pressing return always creates <DIV> lines...
... take a look at this old massage: http://tech.groups.yahoo.com/group/delphi-dhtmledit/message/1455 If you don't want to use an external style sheet you can...
I use 'DHTML Editing Control' in C# , add the control in winform and run the program. In program , if I input ENTER(or Shift + ENTER),the program show nothing....