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

2014-09-05 Thread Benoît Minisini
Le 05/09/2014 14:07, Benoît Minisini a écrit : > Le 05/09/2014 13:51, abbat81 a écrit : >> Thanks Antonio, >> >> I downloded the attachment and I could not any solution in your link. >> >> Can tou tell me here? how to relod WebView? >> >> Thanks >> > > OK, I finally found out how to reload the page

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

2014-09-05 Thread Antonio Sánchez
It must be a misunderstanding, I do not have the solution, just wondering if my problem in that project would have the same solution as yours. 2014-09-05 13:51 GMT+02:00 abbat81 : > Thanks Antonio, > > I downloded the attachment and I could not any solution in your link. > > Can tou tell me he

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

2014-09-05 Thread abbat81
Benoît, I have a Form1 and Form2, which has that cahed WebView1. How can I Close-Quit-Kill a Form2 with WebView1 to drop WebView1. I mean, how to Close Form2 from Form1 to get new content in Form2.WebView1 openin next time Form2? Thanks -- View this message in context: http://gambas.814

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

2014-09-05 Thread Benoît Minisini
Le 05/09/2014 13:51, abbat81 a écrit : > Thanks Antonio, > > I downloded the attachment and I could not any solution in your link. > > Can tou tell me here? how to relod WebView? > > Thanks > OK, I finally found out how to reload the page without using the cache. This is just a QT API omission in

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

2014-09-05 Thread abbat81
Thanks Antonio, I downloded the attachment and I could not any solution in your link. Can tou tell me here? how to relod WebView? Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/WebView-can-not-Reload-Refresh-tp47918p47959.html Sent from the gambas-user mailing list

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

2014-09-05 Thread Antonio Sánchez
Hi, this method could help me with my problem? http://sourceforge.net/p/gambas/mailman/message/32793455/ 2014-09-05 12:53 GMT+02:00 abbat81 : > Thanks Benoît, > > how can I use it now? > > I have a Gambas 3.5.1 and I get "Unknown symbol "Clear"" . > > If I update my Gambas to 3.5.4 - will I get

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

2014-09-05 Thread abbat81
Thanks Benoît, how can I use it now? I have a Gambas 3.5.1 and I get "Unknown symbol "Clear"" . If I update my Gambas to 3.5.4 - will I get the "WebSettings.Cache.Clear()" ? I'd clear the cache by myself but WebSettings.Cache.Path gives me nothing Regards. -- View this message in context:

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

2014-09-05 Thread Benoît Minisini
Le 05/09/2014 11:50, abbat81 a écrit : > And where is cach for WebView1? > How can I clear it? > > This is very bad way: > "Shell "rm -rf " & Shell$(WebSettings.Cache.Path) &/ "*" Wait" > In the last revisions, I added the method WebSettings.Cache.Clear() to clear the cache correctly. Regards,

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

2014-09-05 Thread abbat81
And where is cach for WebView1? How can I clear it? This is very bad way: "Shell "rm -rf " & Shell$(WebSettings.Cache.Path) &/ "*" Wait" -- View this message in context: http://gambas.8142.n7.nabble.com/WebView-can-not-Reload-Refresh-tp47918p47952.html Sent from the gambas-user mailing list a

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 wrote: > Hi, > > AIfter once WebView loaded a content I can't renew those content which is > changed. > > > > > Public Sub Button1_Click() > > Webview_Form.Show

[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 = " " End Then: Webview_Form.Close Then: Change the "999.jpg" Then again: Button1_Click() And here we have an old image, not new, j