Using Office 365 - Excel.
I have a form ESTPAYMENTWMAPfrm, on which I have some textboxes with data and a WebBrowser object. WebBrowser object is named MAPBLOCK.
All I want to do is when the form opens, I want the WebBrowser object to navigate to a url. Eventually I'll use a cell value, but just to get it to work, I've been trying to hard code it... and it won't work. I keep getting a browser like error saying "You seem to be using an unsupported browser". My code is as follows:
The thing is, IT WAS WORKING.... so I know it's not an unsupported issue. Don't know what I did to make it not work.
[*EDIT* oh and it does work for but not for maps. But IT DID before.]
When I had it working, I had followed this video....changing the address from a .com.au to just a .com. And it was working after the change. But now for some reason, it's not working.
Any thoughts would be greatly appreciated.
SnayJ
I have a form ESTPAYMENTWMAPfrm, on which I have some textboxes with data and a WebBrowser object. WebBrowser object is named MAPBLOCK.
All I want to do is when the form opens, I want the WebBrowser object to navigate to a url. Eventually I'll use a cell value, but just to get it to work, I've been trying to hard code it... and it won't work. I keep getting a browser like error saying "You seem to be using an unsupported browser". My code is as follows:
Code:
Dim mb As WebBrowser
Set mb = MAPBLOCK
mb.Navigate "[URL unfurl="true"]http://maps.google.com/?q=college+station+texas"[/URL]
The thing is, IT WAS WORKING.... so I know it's not an unsupported issue. Don't know what I did to make it not work.
[*EDIT* oh and it does work for but not for maps. But IT DID before.]
When I had it working, I had followed this video....changing the address from a .com.au to just a .com. And it was working after the change. But now for some reason, it's not working.
Any thoughts would be greatly appreciated.
SnayJ