Hej! Du kan ju använda:Tempbib
Hur får man fram i vb vilket Tempbibliotek som gäller i XP.
Jag hittade i rigistret ett ställe det står på, se nedan.
MEN då måste man först få fram %USERPROFILE%, går detta eller finns det ett enklare sett?
[HKEY_CURRENT_USER\Environment]
"TEMP"=%USERPROFILE%\Local Settings\Temp
"TMP"=%USERPROFILE%\Local Settings\Temp
/JAnSv: Tempbib
<code>
Private Const MAX_PATH As Long = 260&
Private Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long
Public Function TempPath() As String
Dim Result As Long
Dim Buffer As String
Buffer = String(MAX_PATH, 0)
Result = GetTempPath(MAX_PATH, Buffer)
If Result > 0 Then
TempPath = Left(Buffer, Result)
End If
End Function
</code>
Eller:
<code>
strTemp = Environ$("Temp")
</code>