I'm trying to pass 2 variables to a function so I dont have the some code repeated a bunch of times just for different variables. But when I finish the call statement I get a "compile error: = expected". If I take the second argument out of the call the error goes away, but it wont work without it. Any thoughts or better ways to do this? The call statement and function look like the following:
Code:
Call Statement:
Private Sub btnGraphs_Click()
OpenFile ("[URL]http://1.1.1.1:8080/aptweb/fileSearch.jsf[/URL]", "btnGraphs")
End Sub
Function:
Public Function OpenFile(FileName As String, Cntrl As String)
Dim ctl As CommandButton
Set ctl = Cntrl
With ctl
.HyperlinkAddress = FileName
.Hyperlink.Follow
End With
End Function