Shady Baby
New member
- Local time
- Today, 08:03
- Joined
- Jun 24, 2008
- Messages
- 6
RESOLVED
Since I didn't have IIS running on the central server, I have to replace the "file://///" to "\\" and all the "/" to "\"
_____________________________________________________________________________________________
Hello,
I have a listbox, and I wanted to know how do I do to open a site when I click on a row.

So, If I clicked on the row which says Rhapsody, I would open the site "www.google.com", if I clicked on redead, I would open "www.msn.com" ...
Thanks
Code:
Private Sub ListBox_Click()
Link = Replace(Replace(Me.ListBox.Column(2), "[URL]file://///[/URL]", "\\"), "/", "\")
Application.FollowHyperlink Link, , True
End Sub
Since I didn't have IIS running on the central server, I have to replace the "file://///" to "\\" and all the "/" to "\"
_____________________________________________________________________________________________
Hello,
I have a listbox, and I wanted to know how do I do to open a site when I click on a row.

So, If I clicked on the row which says Rhapsody, I would open the site "www.google.com", if I clicked on redead, I would open "www.msn.com" ...
Thanks
Last edited: