> |  
re : Export in Excel con Windows 7
katatonik76
grazie ragazzi..nel frattempo me la sono cavata con questa funzioncina che mi aggancia la temp folder dell\'utente:
Function GetSystemTempFolder As String
   Dim session As New NotesSession
Dim ERR_UNSUPPORTED_PLATFORM As string
   Select Case session.Platform
   Case "Macintosh", "Linux", "UNIX"
      GetSystemTempFolder = "/tmp"
   Case "Windows/32"
      GetSystemTempFolder = Environ("TEMP")
   Case Else
      Error ERR_UNSUPPORTED_PLATFORM, "GetSystemTempFolder: Unsupported platform \'" & session.Platform & "\'."
   End Select
End Function


ciao!




Export in Excel con Windows 7 - katatonik76 -
    re : Export in Excel con Windows 7 - Giuseppe -
    re : Export in Excel con Windows 7 - cyberflaz -
    You are here re : Export in Excel con Windows 7 - katatonik76 -