i was trying to automate a login in one of our tools and encoundered a probelm...
Dim IE As Object
Dim doc As Object
Dim frm As Object
Dim x As String
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "my website"
Do Until IE.ReadyState = 4: DoEvents: Loop
Set doc = IE.Document
Set frm = doc.forms(0)
frm.3dlogonform("username").Value = "username"
this is the error on red font.....
here is the script from the site: <FORM name=3DlogonForm ="</font">
the error message says :"Syntax error"
any ideas on how to work this thing around??
thanks in advance
</FORM>
Dim IE As Object
Dim doc As Object
Dim frm As Object
Dim x As String
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "my website"
Do Until IE.ReadyState = 4: DoEvents: Loop
Set doc = IE.Document
Set frm = doc.forms(0)
frm.3dlogonform("username").Value = "username"
this is the error on red font.....
here is the script from the site: <FORM name=3DlogonForm ="</font">
the error message says :"Syntax error"
any ideas on how to work this thing around??
thanks in advance
</FORM>