i couldnt see the button u mentioned, but anyways, maybe this is what you need:

use a web browser control...

VB Code:
  1. Private Sub Command1_Click()
  2.     With WB.Document
  3.         If WB.ReadyState = READYSTATE_COMPLETE Then
  4.             .getElementById("email").Value = "[email protected]"
  5.             .getElementById("name").Value = "myname"
  6.             .getElementById("address").Value = "cagayan de oro city"
  7.             .Forms(0).Submit
  8.            
  9.             Do While WB.ReadyState <> READYSTATE_COMPLETE
  10.                 DoEvents
  11.             Loop
  12.         End If
  13.     End With
  14. 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...