B
bigbri

I have a locally saved copy of an Excel DB that I want to open from a
running userform. The Excel window is hidden, due to usability and
project specs. Therefore, I need to open the copy in a new Excel
window, preferably ReadOnly. The problem is that the sub is ignoring
the NewWindow command. I looked up one that I did in '97 (Using 2K
now), and the code is almost identical. It continues to open up in the
hidden Excel window, which makes it completely useless. Please Help! Am
I just overlooking syntax?
Private Sub btnShowSheet_Click()
ActiveWorkbook.FollowHyperlink "C:\SaveFiles\LOCAL_COPY.xls",
NewWindow:=True
Application.DisplayAlerts = False
End Sub
