Results 1 to 4 of 4

Find current directory - Optional string

Threaded View

  1. #1
    Forum Contributor
    Join Date
    01-15-2010
    Location
    Jhb, South Africa
    MS-Off Ver
    2007, 2010, 2016
    Posts
    275

    Find current directory - Optional string

    Hi Guys,

    Having problems so late in the afternoon...

    I have a piece of code that is suppose to defualt to the file's current directory if not specified but for some reason this does not work...

    Am I refering to ismissing() incorrect or what?

    Sub pass()
        
        Dim thename As String: thename = "myWorkbook"
        Dim thetype As String: thetype = "xltm"
        Dim direct As String: direct = "C:\"
    
        Call mod_SaveAs(thename, thetype)
        
    End Sub
    
    Function mod_SaveAs(file_Name As String, fileType As String, Optional newDir As String)
    
        Dim completeName As String, file_ext As String
        
        If IsMissing(newDir) Then
            newDir = ActiveWorkbook.Path 'whatsMyDir
        End If
        
        completeName = newDir & "/" & file_Name & "." & fileType
        
        MsgBox newDir
        MsgBox file_Name
        MsgBox fileType
        MsgBox completeName
        MsgBox "Save complete"
    
    End Function
    Last edited by Jacques Grobler; 10-03-2011 at 01:32 AM.
    Jacques


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1