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!

How do I maximize browser window after follow hyperlink?

Status
Not open for further replies.

gusbrunston

Programmer
Feb 27, 2001
1,234
0
0
US
[tt]Hello!

I can follow a web hyperlink from an Access form, and the browser window will open "minimized". How can I get the browser window to open "maximized"?
Code:
Private Sub txtWebsite_DblClick(Cancel As Integer)
If Me.txtWebsite > "" Then
   Screen.MousePointer = 11  'Doesn't do anything!
   Application.Echo -0
   varHyperlink = Me.txtWebsite
   Application.FollowHyperlink varHyperlink, , True, True
End If
   Screen.MousePointer = 1   'Doesn't do anything.
   Application.Echo -1 
End Sub
I'd appreciate your help very much.

Cheers, [/tt]

[tt]
Gus Brunston
www.thefirstnationalnetwork.com[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top