>You could copy your variable to the clipboard and then use the webbrowser Execwb method to paste it into the document, but this may fail if the security settings prevent clipboard
access.
Diese Idee funktioniert dann nicht immer?!
Also bei mir wenn ich die
html code in Webbrowser so lade :
Webbrowser1.Navigate('c:\formular.htm');
Dann funktioniert immer
Ich lade aber mein
html code in Webbrowser von einem memo :
LoadHTMLToWebbrowser(Webbrowser1,memo1.Lines);
darum klappt mit dem Code nicht nach Hide der Form
> Die Idee in dem Link, konnte ich nicht gut verstehen :
> Try adding a reference in your bho to mshtml.dll and create a region object (this will be the insertion point where > the carrot is positioned or the current text selection) and then set the innerText property of the region with your > variable's contents. You should be able to test if the region is within a tag of a certain type or class (Textarea).
hier ist my delphi Projekt :