- Katılım
- 22 Aralık 2018
- Mesajlar
- 16
- Excel Vers. ve Dili
- makro
hocam meraba
microsoft office professional plus 2016 kullanmaktayım
daha önce yazdığım makro ile ticaret sicil gazetesine giriş yapıyordum fakat sayfa yapısını değiştirdi
aşağıdaki yazmış olduğum makro ile bir türlü giriş ekranını açamıyorum yardım ederseniz sevinirim
sub aaa()
Dim URL As String
Dim HTML_Body As Object
Dim IE As Object
URL = "http://www.ticaretsicil.gov.tr/giris.php"
Set IE = CreateObject("InternetExplorer.Application")
With IE
Navigate URL
Visible = True
Do Until IE.ReadyState = 6: DoEvents: Loop
Do While IE.Busy: DoEvents: Loop
IE.Document.all("user_name").Value = Cells(1, "a")
IE.Document.all("user_pass").Value = Cells(1, "b")
IE.Document.all("customer_code").Value = Cells(1, "c")
IE.Document.forms(0).submit
End With
Set IE = Nothing
Set HTML_Body = Nothing
MsgBox ("Bitti ")
End Sub