The code to save to the workbook to the desktop is a bit more complicated. You would replace your current, standard module code with this.
'adapted from http://www.codenewsgroups.net/vb/t3409-get-current-user-desktop-path.aspx
'declarations...
Private Declare Function SHGetSpecialFolderLocation Lib "shell32.dll" _
(ByVal hwndOwner As Long, _
ByVal nFolder As Long, pidl As Long) As Long
' Ret: 0=success
Private Declare Function SHGetPathFromIDList Lib "shell32.dll" _
(pidl As Long, ByVal pszPath As String) As Long
Private Declare Function GlobalFree Lib "kernel32" _
(ByVal hMem As Long) As Long
'implementation...
Private Function GetShellFolderPath(ByVal CSIDL As Long) As String
Const MAX_PATH As Long = 260
Dim pID As Long
Dim sTmp As String
If SHGetSpecialFolderLocation(0&, CSIDL, pID) = 0& Then
sTmp = String(MAX_PATH + 2, 0)
If SHGetPathFromIDList(ByVal pID, sTmp) <> 0& Then
GetShellFolderPath = Left$(sTmp, InStr(1, sTmp, vbNullChar) - 1)
End If
End If
If pID <> 0& Then GlobalFree pID
End Function
Public Sub SaveFile_Click()
Const CSIDL_DESKTOP As Long = &H0
ThisWorkbook.SaveAs Filename:=GetShellFolderPath(CSIDL_DESKTOP) & "\VendPerf" & Format(Date, "mm-dd-yy") & ".xls", FileFormat:=56
End Sub
Bookmarks