Access opens 2 script files instead of one

HVACMAN24

Registered User.
Local time
Today, 15:44
Joined
Mar 20, 2010
Messages
61
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
 
Button code from form
Code:
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
 
Thanks. That way worked fine. I made this up a while back so I dont remember why I did it the other way. Thanks again.
 

Users who are viewing this thread

Back
Top Bottom