button to open all or a few record

rio

Registered User.
Local time
Today, 18:15
Joined
Jun 3, 2008
Messages
124
Hi. i have a button to open url that i select from link list.
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
what code should I put and how if I want this button to open all or a few link.?
 

Users who are viewing this thread

Back
Top Bottom