Typing directly into the WebBrowser Control
After spending a long time trying to find (there is nothing else on VBC)this code and eventually sourcing it, I thought I would share this with you all! Did you know it is possible to type directly into the WebBrowser control in VB with just 3 lines of code?
Rate Typing directly into the WebBrowser Control
(2(2 Vote))
'INITIALISE THE CONTROL TO A BLANK PAGE
WebBrowser1.Navigate2 "about:blank"
'ENABLED DESIGN MODE
Set doc = WebBrowser1.Document
doc.DesignMode = "On"
Typing directly into the WebBrowser Control Comments
No comments yet — be the first to post one!
Post a Comment