Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Private Sub CommandButton1_Click()

Dim varConn As String
Dim varSQL As String

Cells.Clear

'varConn = "Provider = SQLOLEDB;DataSource=MSSQL(\\SERVER);Initial                    Catalog=bASEBALL_STATS;User ID=;Password="
' varConn = "ODBC;Driver=SQL        Server;Server=SERVER;UID=bASEBALL_STATS;Trusted_Connection=Yes"
varSQL = "SELECT TOP 10 [PCT] " & _
         "FROM dbo.HITS" & _
         "ORDER BY PCT"

With ActiveSheet.QueryTables.Add(Connection:=varConn, _
                                 Destination:=Range("A1"))
    CommandText = varSQL
    Refresh BackgroundQuery:=False

End With
End Sub

For Excel 2002 and later

With Application.FileDialog(msoFileDialogFolderPicker)
                .InitialFileName = Application.DefaultFilePath & "\"
                .Title = "Please select a location for the backup"
                .Show
    If .SelectedItems.Count = 0 Then
        MsgBox “Canceled”
    Else
        MsgBox .SelectedItems(1)
    End If
End With
End Sub

I am trying to get my second VBA macro to open a file directory through a file network. My first VBA macro code calls on SQL through the network. I want my second VBA macro to find the directory of that server. How can I possibly do this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.