sammers101
Registered User.
- Local time
- Today, 06:51
- Joined
- May 11, 2012
- Messages
- 89
I'm getting a compile error. I was trying to use ShellToFile for links in a table. Is there another way that allows users to click links that are part of a list?
Some items in the list have a link, others do not. They are different links.
I was using this code:
Thanks
Some items in the list have a link, others do not. They are different links.
I was using this code:
Code:
Private Sub cmdOpen_Click()
If Not IsNull(Me.link) Then
ShellToFile Me.link
End If
End Sub
Thanks