Hello;

I have a problem after filling in some forms on specific third party site;

After filling in all fields and giving the order to save the info, the fields which had the correct info return to blank, and nothing gets saved on the web page...

I'm kind of new to this and cannot understand why or how to solve this small issue

Can anyone help me a little bit?
Thanks in advance;

Here's how my code looks like...

Sub testing()
Dim IE As Object
Set IE = CreateObject("INTERNETEXPLORER.APPLICATION")
IE.NAVIGATE Range("a1").Value

IE.Visible = True

While IE.BUSY
DoEvents

Wend
IE.Document.all("qi41").Value = ThisWorkbook.Sheets("Folha3").Range("a41")
IE.Document.all("imagelight").Click


End Sub