تماشای ویدئو VBScript Basics Part 13 Internet Explorer HTML Automation از آی-ویدئو

VBScripting (.vbs) Basic tutorial on how to directly input values into internet explorer through html code. This makes for a more flawless and smooth process rather than using sendkeys. Code Example: ______________________________________________________ Option Explicit Dim ie, ipf Set ie = CreateObject("InternetExplorer.Application") On Error Resume Next Sub WaitForLoad Do While IE.Busy WScript.Sleep 500 Loop End Sub Sub Find(x) Set ipf = ie.Document.All.Item(x) End Sub ie.Left = 0 ie.Top
4 دی 1396
آی-ویدئو