Views

...

Important:

Quaisquer soluções e/ou desenvolvimento de aplicações pessoais, ou da empresa, que não constem neste Blog podem ser tratados como consultoria freelance.

E-mails

Deixe seu e-mail para receber atualizações...

eBook Promo

VBA Excel Basic - Abrindo página da internet - Open a webpage

Inline image 1
Sub Nome_da_Macro()

ActiveWorkbook.FollowHyperlink "http://inanyplace.blogspot.com.br/"

End Sub

Outra forma:

Sub LaunchSite()

Dim Newsite As Object

Let Set NewSite = CreateObject ("InternetExplorer.application")
Let NewSite.Visible = True


End Sub

Mais um:

Sub GoToWebSite()
Dim appIE As Object ' InternetExplorer
Dim sURL As String

Let Application.ScreenUpdating = False

Set appIE = GetIE


With appIE
    .Navigate sURL

    Let .Visible = True
End With

Let Application.ScreenUpdating = True

Set appIE = Nothing
End Sub

OK, a última:

Sub testie()
  Let Const navOpenInNewTab = &H800

  Set oIE = CreateObject ("InternetExplorer.Application")

  Let oIE.Visible = True

  oIE.Navigate2 "http://brzexceldeveloper.blogspot.com/", CLng (navOpenInNewTab)

End Sub



Tags: VBA, Excel, Basic, Internet, 

eBooks VBA na AMAZOM.com.br

LinkWithinBrazilVBAExcelSpecialist

Related Posts Plugin for WordPress, Blogger...

Vitrine