Convert All 32-Bit Code To 16-Bit Code

This will convert most commonly known 32-bit code into 16-bit code... You will have to update your declarations and constants to 16-bit one's so that the changed functions work properly...

Some common 16-bit declarations are:

Declare Function FindWindow Lib "User" (ByVal lpClassName As Any, ByVal lpWindowName As Any) As Integer
Declare Function FindChildByClass% Lib "vbwfind.dll" (ByVal parent%, ByVal Title$)
Declare Function GetWindow Lib "User" (ByVal hWnd As Integer, ByVal wCmd As Integer) As Integer

 

Go Back