I have a VBA program that automates an internet explorer process the whole code works except one piece.
when I try using this code,
I recieve an error that says "Run-time error '91': Object variable or With block variable not set"
I think there is something I'm not seeing with the site source because I use a similar code for a different website and it works.
I have attached the site source to this email and if someone can look at it and let me know whay am I missing I would highly appreciate it.
Thanks
when I try using this code,
Code:
Dim IEapp As Object
Dim IEdoc As Object
Set IEapp = New InternetExplorer
IEdoc.all("ctl00$ContentPlaceHolder1$uxQuantity").Value = 4
I think there is something I'm not seeing with the site source because I use a similar code for a different website and it works.
I have attached the site source to this email and if someone can look at it and let me know whay am I missing I would highly appreciate it.
Thanks
Comment