- Katılım
- 21 Aralık 2010
- Mesajlar
- 135
- Excel Vers. ve Dili
- MS Office 2007 Ing.
Arkadaslar merhabalar,
Site icerisinde kodlardan yararlanarak bir calisma yapmaya çalıştım , çalışma hatasız işliyor bir sıkıntı yok , ama şöyle bir revizyon yapılabilinirmi yapılması mümkünse mevcut kodu revize nasıl edebiliriz,
Site icerisinde kodlardan yararlanarak bir calisma yapmaya çalıştım , çalışma hatasız işliyor bir sıkıntı yok , ama şöyle bir revizyon yapılabilinirmi yapılması mümkünse mevcut kodu revize nasıl edebiliriz,
Kod:
Dim IE As Object
Dim HTML_Tables As Object, MyTable As Object
For k = 25 To 2 Step -1
If Cells(k, 3) <> Empty Then
Cells(k, 3).Select
URL = Cells(k, 1)
sifre = Cells(k, 2)
[b]'''Sizlerden destek istedigim konu su: her seferinde yeni IE açmasinde New Tab[CTRL+T] yaparak yeni adresi oraya tanimlamasini istiyorum
''' Destek verebilirseniz cok sevinirim,[/b]
Set IE = CreateObject("InternetExplorer.Application") '' [b] Sıkıntılı alanım burası[/b]
With IE
.Navigate URL
.Visible = True
Do Until IE.ReadyState = 4: DoEvents: Loop
Do While IE.Busy: DoEvents: Loop
DoEvents: DoEvents
Application.Wait Now + TimeValue("00:00:01")
With .Document.All
Application.Wait Now + TimeValue("00:00:01")
.UserName.Value = "admin"
.Password.Value = sifre
IE.Document.forms(0).submit
End With
End With
End If
Next
Set HTML_Tables = Nothing
Set MyTable = Nothing
