can anyone advise how to use
VB to click a button which is a image, as (source code as) and the URL is
www.powertel.com.au
<tr><td>
<B>Username:</B><INPUT TYPE="text" NAME="ssousername" SIZE="15" MAXLENGTH="30" VALUE="" >
</td></tr>
<tr><td>
<br><B> Password:</B><INPUT TYPE="password" NAME="password" SIZE="15" MAXLENGTH="30">
</td></tr>
<tr><td align="center" valign="bottom">
<input type="image" src="../../portalimages/buttons/submit.gif" border="0" onClick = "val(); return false">
</td></tr>
my
VB is
IE.document.all("ssousername").Value = a
IE.document.all("password").Value = b
'ie.document.all.Item("sign In")
Set ipf = IE.document.all.Item("Submit")
ipf.Click
tks