how to save image from webBrowser Control
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
Hi everybody I'm trying to save image from webBrowser control which I have in my project. I could do it by right clicking on the image and selecting "Save Picture As..." context menu, except I wanted to do it programmatically. I found a solution like this: this->webBrowser1->Document->execcommand("Save As", false, strFilePath); but it doesn't work (it always show save as dialog box - I do not want a save as dialog box to show up). Some one has better idea?