MartijnWils
New member
- Local time
- Today, 12:15
- Joined
- Oct 27, 2009
- Messages
- 3
Hey everybody,
I made a program that opens an hyperlink (in VBA). only problem is that it opens in IE and not in the form or Access.
I want it to open in Access or in the form.
here is an example of the code i got at the moment:
i know you can put a property that it opens in newwindow, i did that to ! (its the true in the line from application.followhyperlink) i also tried to put it on false but then it doesnt do anything
I made a program that opens an hyperlink (in VBA). only problem is that it opens in IE and not in the form or Access.
I want it to open in Access or in the form.
here is an example of the code i got at the moment:
Code:
Private Sub Knop17_Click()
Dim sWebSite As String
sWebSite = "[URL]http://interlight.e-nitiative.be/BIA_common/BIA_searchL8.ASP?searchstr[/URL]=" & artikel_volgnr
Application.FollowHyperlink swebstite, , True
End Sub
i know you can put a property that it opens in newwindow, i did that to ! (its the true in the line from application.followhyperlink) i also tried to put it on false but then it doesnt do anything