I need to change this code in a form to what will work on Windows 10 Please help, Thank you
--------------------------------------------------------------------------------------------------------------------
#DEFINE W32sDLL "W32SCOMB.DLL"
#DEFINE W32DLL "USER32.DLL"
IF "3.5" $ OS(1) OR "Windows 4" $ os(1) or "NT" $ os(1) &&
cDLL = W32DLL
ELSE
cDLL = W32sDLL
ENDIF
DECLARE integer FindWindow IN &cDLL integer, string
DECLARE integer ShowWindow IN &cDLL Integer, Integer
SW_MAXIMIZE = 3
SW_SHOWNORMAL = 1
SW_SHOWMINIMIZED = 2
SW_SHOWGONE = 0
Thisform.showstate = SW_SHOWNORMAL
NullPointer = 0
Set Order to WIZARD_1
ThisForm.FoxHWND = FindWindow(NullPointer, _SCREEN.Caption)
ThisForm.FoxGone = ShowWindow(ThisForm.FoxHWND, SW_SHOWGONE)
---------------------------------------------------------------------------