Convert All 16-Bit Code To 32-Bit Code
This will convert most commonly known 16-bit code into 32-bit code... You will have to update your declarations and constants to 32-bit one's so that the changed functions work properly...
Some common 32-bit declarations are:
Public Declare Function FindWindow Lib "user32"
Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String)
As Long
Public Declare Function FindWindowEx Lib "user32" Alias
"FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As
String, ByVal lpsz2 As String) As Long