Re: [Gambas-user] WebView - Image/Picture.Save

2014-09-07 Thread abbat81
How can I use fixed revision #6444 ? -- View this message in context: http://gambas.8142.n7.nabble.com/WebView-Image-Picture-Save-tp47916p47984.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] WebView - Image/Picture.Save

2014-09-07 Thread Jussi Lahtinen
http://gambaswiki.org/wiki/howto/svn Jussi On Sun, Sep 7, 2014 at 2:57 PM, abbat81 abbat...@mail.ru wrote: How can I use fixed revision #6444 ? -- View this message in context: http://gambas.8142.n7.nabble.com/WebView-Image-Picture-Save-tp47916p47984.html Sent from the gambas-user

[Gambas-user] WebView - Image/Picture.Save

2014-09-02 Thread abbat81
Hi, Is it possible to transfer a WebView content to Image or Picture? Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/WebView-Image-Picture-Save-tp47916.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] WebView - Image/Picture.Save

2014-09-02 Thread Benoît Minisini
Le 02/09/2014 14:09, abbat81 a écrit : Hi, Is it possible to transfer a WebView content to Image or Picture? Thanks Yes, by using the MyWebView.Document.Paint() method. Regards, -- Benoît Minisini -- Slashdot

Re: [Gambas-user] WebView - Image/Picture.Save

2014-09-02 Thread Ru Vuott
using the MyWebView.Document.Paint() method. ...guide on line says Sub Paint ( [ Clip As Rect] ) If I write: MyWebView.Document.Paint(rect(0, 0, 200, 200)) I obtain this error: Type mismatch: wanted Rect], got Rect instead What's Rect] ? ...is it a bug ? Regards vuot

Re: [Gambas-user] WebView - Image/Picture.Save

2014-09-02 Thread Benoît Minisini
Le 02/09/2014 17:50, Ru Vuott a écrit : using the MyWebView.Document.Paint() method. ...guide on line says Sub Paint ( [ Clip As Rect] ) If I write: MyWebView.Document.Paint(rect(0, 0, 200, 200)) I obtain this error: Type mismatch: wanted Rect], got Rect instead What's Rect]