Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Declare Function IsIconic Lib "user32" Alias "IsIconic" (ByVal hwnd As Long) As Long
From MSDN:
--------------------------
IsIconic
The IsIconic function determines whether the specified window is minimized (iconic).
BOOL IsIconic(
HWND hWnd // handle to window
);
Parameters:
hWnd:
Handle to the window to test.
Return Values:
If the window is iconic, the return value is nonzero.
If the window is not iconic, the return value is zero.
--------------------------
If you want to accept a comment as an answer.. on the right of the comment bar should be a link stating in effect "Accept Comment as Answer".. <smile>.