i couldnt see the button u mentioned, but anyways, maybe this is what you need:
use a web browser control...
VB Code:
Private Sub Command1_Click()
With WB.Document
If WB.ReadyState = READYSTATE_COMPLETE Then
.getElementById("name").Value = "myname"
.getElementById("address").Value = "cagayan de oro city"
.Forms(0).Submit
Do While WB.ReadyState <> READYSTATE_COMPLETE
DoEvents
Loop
End If
End With
End Sub
just replace the email, name, address with the exact names of form objects in the page. you can determine it by looking at the html source of the page by clicking menu VIEW-->SOURCE...
BTW, this is not my code, i found it in this forum and its really fun... its working...