Advertisement
hungvb

[VB] VB6 - Auto Login Zing Me

Sep 23rd, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.30 KB | None | 0 0
  1. With WebBrowser1
  2. .Navigate "http://login.me.zing.vn/"
  3. Do While .Busy
  4. DoEvents
  5. Loop
  6. .Document.GetElementById("u").InnerText = "Ten Dang Nhap"
  7. .Document.GetElementById("pp").InnerText = "Mat Khau"
  8.  
  9. For Each ww In .Document.All
  10. If ww.GetAttribute("name") = "bntlogin" Then ww.Click
  11. Next
  12. End With
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement