Re: [Gambas-user] R: Font style in Printing Example

2014-09-02 Thread abbat81
Randall, I didn't give any attachment because this is the Example Printing, which everybody can open in his own Gambas. Thanks in advance. -- View this message in context: http://gambas.8142.n7.nabble.com/Font-style-in-Printing-Example-tp47901p47913.html Sent from the gambas-user mailing

[Gambas-user] Issue 554 in gambas: Cannot seem to catch an error from a Exec[] process anymore

2014-09-02 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 554 by r...@cyberjunky.nl: Cannot seem to catch an error from a Exec[] process anymore https://code.google.com/p/gambas/issues/detail?id=554 1) Describe the problem. If

[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

[Gambas-user] WebView can not Reload/Refresh

2014-09-02 Thread abbat81
Hi, AIfter once WebView loaded a content I can't renew those content which is changed. Public Sub Button1_Click() Webview_Form.Show WebView1.Html = file:///home/admin/999.jpg End Then: Webview_Form.Close Then: Change the 999.jpg Then again: Button1_Click() And here we have

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]

Re: [Gambas-user] WebView can not Reload/Refresh

2014-09-02 Thread Randall Morgan
Is the page being cached? If so, you will need to empty the cache to see the new content. On Tue, Sep 2, 2014 at 7:45 AM, abbat81 abbat...@mail.ru wrote: Hi, AIfter once WebView loaded a content I can't renew those content which is changed. Public Sub Button1_Click()

[Gambas-user] Drawing Areas, painting on them, and printing the results...

2014-09-02 Thread Stephen
Has anyone got some good documentation on how to use a Drawing Area, quite frankly I've gone cross-eyed trying to make sense of it by parsing the paint example. Steve. -- Slashdot TV. Video for Nerds. Stuff that

Re: [Gambas-user] Drawing Areas, painting on them, and printing the results...

2014-09-02 Thread Jussi Lahtinen
FMain contains subs named Example## (where ## are numbers). These subs are executed in Draw event DrawingArea1_Draw(), with command Object.Call(Me, $sFunctionName). So that Example1 is same as Arc , Example2 is Arc negative, Example3 is Clip, etc. You can write all the content of those subs

Re: [Gambas-user] Drawing Areas, painting on them, and printing the results...

2014-09-02 Thread Stephen
I guess it is the need to use the draw event in order to do anything with the drawing area that had me spun. I think in terms of methods, properties and events, but I do not think in terms of events being the very thing that actually does the work. I'm thinking of it now in terms of Macros,

Re: [Gambas-user] Drawing Areas, painting on them, and printing the results...

2014-09-02 Thread Jussi Lahtinen
I guess it is the need to use the draw event in order to do anything with the drawing area that had me spun. I think in terms of methods, properties and events, but I do not think in terms of events being the very thing that actually does the work. Draw event is called every time drawingarea

Re: [Gambas-user] Drawing Areas, painting on them, and printing the results...

2014-09-02 Thread Stephen
On 09/02/2014 06:22 PM, Jussi Lahtinen wrote: I guess it is the need to use the draw event in order to do anything with the drawing area that had me spun. I think in terms of methods, properties and events, but I do not think in terms of events being the very thing that actually does the work.