rio
Registered User.
- Local time
- Tomorrow, 00:50
- Joined
- Jun 3, 2008
- Messages
- 124
Hi. i have a button to open url that i select from link list.
this is the code
what code should I put and how if I want this button to open all or a few link.?
this is the code
Code:
Private Sub Command0_Click()
Dim strUrl As String
Dim browsertype As String
strUrl = Me.ListLink
browsertype = Me.ListBrowser.Column(1)
Call Shell(browsertype & " " & strUrl, vbMaximizedFocus)
End Sub