Hi,
Please help me to fix this code, to make it works
I got Compile errors
Please help me to fix this code, to make it works
I got Compile errors
Code:
'The state of the Hide extensions for known file types option (SSF_SHOWINFOTIP)
Public Function fnIShellDispatch4GetSetting()
Dim objIShellDispatch4 As Shell
Set objIShellDispatch4 = New Shell
If (Not objIShellDispatch4 Is Nothing) Then
Dim vReturn As Variant
Dim SSF_SHOWINFOTIP As Long
SSF_SHOWINFOTIP = 1
vReturn = objIShellDispatch4.GetSetting(SSF_SHOWINFOTIP)
Debug.Print vReturn
End If
Set objIShellDispatch4 = Nothing
End Function