• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

web site otomatik login

  • Konbuyu başlatan Konbuyu başlatan mrkaan
  • Başlangıç tarihi Başlangıç tarihi
Katılım
10 Ocak 2011
Mesajlar
48
Excel Vers. ve Dili
2007
arkadaşlar bu kodla ıd password dolduruyor ama login tusuna basmıyor ne yapmam lazım otomatik açması için

Sub giris()
Dim URL As String
Dim HTML_Body As Object
Dim IE As Object
URL = "https://earsivportal.efatura.gov.tr/intragiris.html"
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Navigate URL
.Visible = True
Do Until IE.ReadyState = 4: DoEvents: Loop
Do While IE.Busy: DoEvents: Loop
IE.Document.all("userid").Value = Cells(1, "a")
IE.Document.all("password").Value = Cells(1, "b")
IE.Document.forms(0).submit
End With
Set IE = Nothing
Set HTML_Body = Nothing
MsgBox ("Bitti ")
End Sub
 
Aşağıdakinin yerine;

C++:
IE.Document.forms(0).submit


Bunu kullanın;

C++:
IE.Document.all("action").Click


.
 
peki bunu google chromeda yapabilirmiyim haluk bey
 
Geri
Üst