Google and HTMLViewer

Hello. Its possibly to see google in the HTMLViewer like this? , because, when i displey Google in windows i can see it like this, but in Mac no, shows the Old Google (I am using webkit) Thanks In Advance

.

What do you mean by “the old Google”?

Did you use Native or WebKit Renderer?

Web Kit, but in Native and WebKit i see the same

He said Webkit.

I tried both Native or Webkit, the result is the same for http://google.com.ar. : a black bar on top No black bar on top in Chrome or Firefox, but a black bar in Safari . Looks like it depends on the browser.

Here is the solution. With this in the Open event of HTMLViewer I get what the OP shows in the first screen shot :

Sub Open() me.UserAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36" me.loadurl("http://google.com.ar") End Sub

Thank you @Michel Bujardet
Well done :slight_smile:

[quote=189804:@Michel Bujardet]He said Webkit.

I tried both Native or Webkit, the result is the same for http://google.com.ar. : a black bar on top No black bar on top in Chrome or Firefox, but a black bar in Safari . Looks like it depends on the browser.

Here is the solution. With this in the Open event of HTMLViewer I get what the OP shows in the first screen shot :

Sub Open() me.UserAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36" me.loadurl("http://google.com.ar") End Sub [/quote]
Thanks so much!