Determinando onde está a pasta de arquivos temporários do Windows
Você já desejou identificar onde está a pasta de arquivos temporários do Windows através de sua planilha? Coloque o seguinte código em um módulo e execute ele: Declare Function GetTempPath _ Lib "kernel32" Alias "GetTempPathA" _ (ByVal nBufferLength As Long, _ ByVal lpBuffer As String) As Long Public Function fncGetTempPath() As String Dim PathLen As Long Dim WinTempDir As String Dim BufferLength As Long BufferLength = 260 WinTempDir = Space(BufferLength) PathLen = GetTempPath…(read more)