9 Years of Service
72%
[HIDE-THANKS]
[/HIDE-THANKS]
Code:
>Public Function Sandboxed() As Boolean
Dim hMod As Long
hMod = GetModuleHandle("SbieDll.dll")
If hMod = 0 Then
Sandboxed = False
Else
Sandboxed = True
End If
End Function
Code:
>Public Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long