- Katılım
- 26 Ocak 2006
- Mesajlar
- 754
- Excel Vers. ve Dili
- Office 365 İngilizce 64 Bit
- Altın Üyelik Bitiş Tarihi
- 31-01-2025
Makro ile http:\\www.google.com.tr sayfasını nasıl açabilirim.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Const URL3 As String = "[URL]http://www.google.com.tr[/URL]"
Sub WebPageOpen()
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = False 'True olursa web sayfası görüntülenir.
.Navigate URL3 'Web adresi açılıyor.
Do Until .ReadyState = 4: DoEvents: Loop 'Yükleme tamamlayıncaya
Do While .Busy: DoEvents: Loop 'kadar bekleme
'.Quit 'Kapat
End With
Set IE = Nothing
End Sub
Sub webac()
web = Array("[URL="http://www.excel.web.tr"]www.excel.web.tr[/URL]", "[URL="http://www.google.com.tr"]www.google.com.tr[/URL]")
For a = 0 To UBound(web)
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Navigate web(a)
Do Until .ReadyState = 4: DoEvents: Loop
Do While .Busy: DoEvents: Loop
End With
Next
Set IE = Nothing
End Sub
Sub webac()
web = Array("www.excel.web.tr", "www.google.com.tr")
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
For a = 0 To UBound(web)
With IE
.Navigate web(a)
Do Until .ReadyState = 4: DoEvents: Loop
Do While .Busy: DoEvents: Loop
End With
If a < UBound(web) Then Application.Wait Now + TimeValue("00:00:[B][COLOR=red]30[/COLOR][/B]")
Next
Set IE = Nothing
End Sub
Application.Wait Now + TimeValue("00:05:00")
Sub webac()
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
For a = 1 To [a65536].end(3).row
With IE
.Navigate cells(a,"a")
Do Until .ReadyState = 4: DoEvents: Loop
Do While .Busy: DoEvents: Loop
End With
If a < [a65536].end(3).row Then Application.Wait Now + TimeValue("00:05:00")
Next
Set IE = Nothing
End Sub