I have a button that opens a script file which maps network printers to the computer. Everything works fine except when clicking the button Access open the script file twice. Any idea why that is and what to do to make it only open once? Thanks
Private Sub btnPrinters_Click()
OpenFile "M:\Engineering\Cooling Dev\Lab Printers\CoolingLabPrinters.vbs", Me!btnPrinters
End Sub
Function Code
Code:
Public Function OpenFile(FileName As String, Cntrl As CommandButton)
Set ctl = Cntrl
With ctl
.HyperlinkAddress = FileName
.Hyperlink.Follow
End With
End Function
I can't say why this isn't working for you but the approach seems a little over the top for my (very personal) taste. I'll tell you how I would do this:
Code:
Private Sub btnPrinters_Click()
FollowHyperlink "M:\Engineering\Cooling Dev\Lab Printers\CoolingLabPrinters.vbs"
End Sub
No user defined function, just the standard followhyperlink function built in to Access. I really think this should be all you need.. If not, check out Allen Browne's GoHyperlink function: http://allenbrowne.com/func-GoHyperlink.html