Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hyperlink follow method in Access 2000

Status
Not open for further replies.

ShawnR

Technical User
May 15, 2002
26
0
0
US
'm using hyperlinks in a command button but the ".hyperlink.follow" extra controls do not behave as designed. I want link to go to a current open window and use the "ExtraInfo" however the link is opening an extra window. When I try to use the extra controls it give me errors.

Here is the code:

Private Sub cmdFindU_Click()
Dim ctl As CommandButton
If Login <> 0 Then
Set ctl = Me!cmdFindU
With ctl
.HyperlinkAddress = Web6 & &quot;Home.jsp?username=&quot; & Login.Column(2)
.Hyperlink.Follow
End With
End If
End Sub

After .follow it give the following options. I can't find any help and the examples on MSDN don't work.

object.hyperlink.Follow[([newwindow], [addhistory], [extrainfo], [method], [headerinfo])]

Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top