home *** CD-ROM | disk | FTP | other *** search
Wrap
'$DEFINE DEBUG '$INCLUDE 'setupapi.inc' '$INCLUDE 'msdetect.inc' '$INCLUDE 'themenam.inc' ''DIALOG ID's CONST WELCOME = 100 CONST ASKQUIT = 200 CONST DESTPATH = 300 CONST EXITFAILURE = 400 CONST EXITQUIT = 600 CONST EXITSUCCESS = 700 CONST APPHELP = 900 CONST VERIFYWINPATH = 2400 CONST ERROR_UNEXPECTED = 2200 CONST EXITSUCCESSRESTART = 2300 CONST NOVIRTUALMEM = 2600 CONST ASKRESTART = 2700 CONST RESTART = 2800 CONST README = 2900 CONST CUSTINST = 6200 ''OTHER CONSTANTS CONST LOGO = 1 CONST EXIT_FAIL_NOT31 = 1500 '' NOT RUNNING AT LEAST WINDOWS 3.1 CONST EXIT_FAIL_NOTINTEL = 1600 '' NOT RUNNING ON INTEL CONST EXIT_FAIL_NOTENHANCED = 1700 '' NOT RUNNING IN ENHANCED MODE CONST MB_YESNO = 4 CONST MB_ICONINFORMATION = 64 CONST IDYES = 6 CONST IDNO = 7 GLOBAL DESTWIN$ ''Windows directory GLOBAL DESTWINSYS$ ''Windows\System directory GLOBAL DESTDINER$ ''Diner directory GLOBAL SRCDEMO$ ''Demo files directory GLOBAL bInstallDVA% DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING DECLARE SUB UpdateWinG32 (szOrig$) DECLARE FUNCTION OnWin3x LIB "setuphlp.DLL" AS INTEGER DECLARE FUNCTION VflatdPresent LIB "setuphlp.DLL" AS INTEGER DECLARE FUNCTION RestartWindows LIB "setuphlp.DLL" AS INTEGER DECLARE FUNCTION IsWin32FileNewer LIB "setuphlp.DLL" (szOrig$,szNew$) AS INTEGER DECLARE SUB RenameFilePlease LIB "setuphlp.DLL" (szOrig$,szNew$) DECLARE FUNCTION OnWindowsNT LIB "INIUPD.DLL" AS INTEGER DECLARE FUNCTION PagingEnabled LIB "INIUPD.DLL" AS INTEGER DECLARE FUNCTION ExitWindowsExec LIB "USER.EXE" (arg1$, arg2$) AS INTEGER DECLARE FUNCTION StartWaitCursor LIB "MSCUISTF.DLL" AS INTEGER DECLARE FUNCTION StopWaitCursor LIB "MSCUISTF.DLL" AS INTEGER INIT: CUIDLL$ = "MSCUISTF.DLL" bInstallDVA% = 0 ExitCode% = 0 ON ERROR GOTO ERRORTRAP SrcDir$ = GetSymbolValue ("STF_SRCDIR") DESTWIN$ = GetWindowsDir() DESTDINER$ = "C:\IMAGINE\" SetBitmap CUIDLL$, LOGO SetTitle "Imagination Express Setup" szInf$ = GetSymbolValue ("STF_SRCINFPATH") IF szInf$ = "" THEN szInf$ = GetSymbolValue ("STF_CWDDIR") + "setup.inf" ENDIF ReadInfFile szInf$ CHECK: '' Check to make sure we're running at least Win 3.1 IF GetWindowsMajorVersion < 3 THEN ExitCode% = EXIT_FAIL_NOT31 GOTO WELCOME ENDIF IF GetWindowsMajorVersion = 3 AND GetWindowsMinorVersion < 1 THEN ExitCode% = EXIT_FAIL_NOT31 GOTO WELCOME ENDIF '' Check to see that we're running in enhanced mode or on an INTEL-Based NT machine '' GetWindowsMode < 2 means not INTEL if running NT, or not ENHANCED if running Windows IF GetWindowsMode < 2 THEN IF OnWindowsNT() THEN ExitCode% = EXIT_FAIL_NOTINTEL ELSE ExitCode% = EXIT_FAIL_NOTENHANCED ENDIF GOTO WELCOME ENDIF VIRTUALMEM: '' Check to make sure windows is set up for virtual memory IF PagingEnabled() = 0 THEN sz$ = UIStartDlg (CUIDLL$, NOVIRTUALMEM, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO VIRTUALMEM ENDIF UIPop 1 GOTO WELCOME ENDIF WELCOME: sz$ = UIStartDlg (CUIDLL$, WELCOME, "FInfoDlgProc", 0, "") IF sz$ <> "CONTINUE" THEN GOSUB ASKQUIT GOTO WELCOME ENDIF UIPop 1 '' destroy dialog on top of stack IF ExitCode% <> 0 THEN GOTO EXITFAIL ENDIF VERIFYWINPATH: '' Verify that setup has found the correct \windows directory SetSymbolValue "EditTextIn", DESTWIN$ SetSymbolValue "EditFocus", "END" sz$ = UIStartDlg (CUIDLL$, VERIFYWINPATH, "FEditDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO VERIFYWINPATH ELSEIF SZ$ = "EXIT" THEN GOSUB ASKQUIT GOTO VERIFYWINPATH ENDIF sz$ = GetSymbolValue ("EditTextOut") IF sz$ <> DESTWIN$ THEN '' make sure user ended path with a '\' '' if not, help 'em out DESTWIN$ = sz$ DESTWIN$ = LTRIM$(RTRIM$ (DESTWIN$)) IF INSTR (LEN (DESTWIN$) - 1, DESTWIN$, "\") = 0 THEN DESTWIN$ = DESTWIN$ + "\" ENDIF '' make sure path has a drive letter and drive letter is valid sz$ = MID$ (DESTWIN$, 2, 1) IF sz$ <> ":" THEN i% = DoMsgBox ("You must specify a valid drive letter in the path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO VERIFYWINPATH ENDIF sz$ = MID$ (DESTWIN$, 1, 1) IF IsDriveValid (sz$) = 0 THEN i% = DoMsgBox ("You must specify a valid drive letter in the path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO VERIFYWINPATH ENDIF '' make sure path is valid (i.e. it exists) IF DoesDirExist (DESTWIN$) = 0 THEN i% = DoMsgBox (DESTWIN$ + " is not a valid path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO VERIFYWINPATH ENDIF ENDIF UIPop 1 DESTWINSYS$ = DESTWIN$ IF INSTR (LEN (DESTWINSYS$) - 1, DESTWINSYS$, "\") = 0 THEN DESTWINSYS$ = DESTWINSYS$ + "\" ENDIF DESTWINSYS$ = DESTWINSYS$ + "SYSTEM" INITCOPYLISTFORESTIMATE: '' add possible files to copy list so we can get the copy list cost for the next dialog '' (so we know how much space the files will take up) '' after the next dialog, we'll rebuild an actual copy list '' (we can't do it accurately yet since we don't know where the diner path will be) '' NOTE: THIS CANNOT BE A FINAL COPY LIST AS SOME VITAL COMMANDS DON'T APPEAR - '' SEE FINAL COPY LIST SECTION BELOW i% = StartWaitCursor() ClearCopyList AddSectionFilesToCopyList "Diner", SrcDir$, DESTDINER$ AddSectionFilesToCopyList "DinerWin DLLs", SrcDir$, DESTWINSYS$ '' add demo icon to copy list AddSectionFilesToCopyList "Edmark Demo", SrcDir$, DESTDINER$ '' add themepack files to copy list AddSectionFilesToCopyList THEMESECTION$, SrcDir$, DESTDINER$ + "Themes\" + THEMEDIR$ + "\" '' see if DINER.INI file already exists '' if not, copy a base INI file IF DoesFileExist (DESTWIN$ + "Imagine.INI", femExists) = 0 THEN AddSectionFilesToCopyList "INI", SrcDir$, DESTWIN$ ENDIF '' see if WAVEMIX.INI file already exists '' if not, copy a pre-built one IF DoesFileExist (DESTWIN$ + "WAVEMIX.INI", femExists) = 0 THEN AddSectionFilesToCopyList "WaveMixIni", SrcDir$, DESTWIN$ ENDIF '' ******** WING SECTION STARTS HERE AddSectionFilesToCopyList "WinG", SrcDir$, DESTWINSYS$ ' ' only use DVA on Windows 3.x ' IF OnWin3x() = 1 THEN AddSectionFilesToCopyList "dva", SrcDir$, DESTWINSYS$ END IF AddSectionFilesToCopyList "wing32", SrcDir$, DESTWINSYS$ '' Add VfW files here AddSectionFilesToCopyList "VfW Runtime", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "AVICodecs", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "ACM Drivers", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "Indeo-ini", SrcDir$, DESTWIN$ AddSectionFilesToCopyList "OLE2", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "MPlayer", SrcDir$, DESTWIN$ sizereq& = GetCopyListCost ("", "NeededSpace", "ExtraNeeded") i% = StopWaitCursor() CUSTOMINIT: '' SET UP DRIVE AND DIRECTORY SYMBOL VALUES HERE SetSymbolValue "DriveStatusText", "" sz$ = MID$ (DESTDINER$, 1, 2) AddListItem "DriveStatusText", sz$ sz$ = GetListItem ("NeededSpace", ASC(LCASE$ (DESTDINER$)) - ASC("a") + 1) AddListItem "DriveStatusText", sz$ DinerSpaceAvail& = GetFreeSpaceForDrive (MID$ (DESTDINER$, 1, 1)) AddListItem "DriveStatusText", STR$ (DinerSpaceAvail&) AddListItem "DriveStatusText", "" AddListItem "DriveStatusText", "" AddListItem "DriveStatusText", "" AddListItem "DriveStatusText", DESTDINER$ CUSTOM: '' Get drive and directory to install Diner to sz$ = UIStartDlg (CUIDLL$, CUSTINST, "FCustInstDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO CUSTOM ELSEIF sz$ = "BACK" THEN UIPop 1 GOTO VERIFYWINPATH ELSEIF sz$ = "EXIT" THEN GOSUB ASKQUIT GOTO CUSTOM ELSEIF sz$ = "PATH" THEN TEMPDINER$ = DESTDINER$ GETDINERPATH: '' Let user choose own path for Diner SetSymbolValue "EditTextIn", TEMPDINER$ SetSymbolValue "EditFocus", "ALL" sz$ = UIStartDlg (CUIDLL$, DESTPATH, "FEditDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO GETDINERPATH ELSEIF sz$ = "BACK" THEN UIPop 1 GOTO CUSTOM ELSEIF sz$ = "EXIT" THEN GOSUB ASKQUIT GOTO GETDINERPATH ENDIF sz$ = GetSymbolValue ("EditTextOut") '' make sure user ended path with a '\' '' if not, help 'em out TEMPDINER$ = LTRIM$ (RTRIM$ (sz$)) IF INSTR (LEN (TEMPDINER$) - 1, TEMPDINER$, "\") = 0 THEN TEMPDINER$ = TEMPDINER$ + "\" ENDIF '' make sure path has a drive letter and drive letter is valid sz$ = MID$ (TEMPDINER$, 2, 1) IF sz$ <> ":" THEN i% = DoMsgBox ("You must specify a valid drive letter in the path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO GETDINERPATH ENDIF sz$ = MID$ (TEMPDINER$, 1, 1) IF IsDriveValid (sz$) = 0 THEN i% = DoMsgBox ("You must specify a valid drive letter in the path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO GETDINERPATH ENDIF '' make sure path is valid IF IsDirWritable (TEMPDINER$) = 0 THEN i% = DoMsgBox (TEMPDINER$ + " is not a valid path name.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO GETDINERPATH ENDIF UIPop 1 DESTDINER$ = TEMPDINER$ GOTO INITCOPYLISTFORESTIMATE ENDIF UIPop 1 CHECKSPACE: ' IF sizereq& <> 0 THEN ' i% = DoMsgBox ("Not enough free space on drive. Please delete some files to free up space or choose a different destination drive.", "Imagination Express Setup", MB_ICONHAND + MB_OK) ' GOTO CUSTOM ' ENDIF amt$ = GetListItem ("ExtraNeeded", ASC(LCASE$ (DESTDINER$)) - ASC("a") + 1) amt$ = MID$ (amt$, 1, 1) IF amt$ <> "-" THEN i% = DoMsgBox ("Not enough free space on destination drive. Please delete some files to free up space or choose a different destination drive.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO CUSTOM ENDIF amt$ = GetListItem ("ExtraNeeded", ASC(LCASE$ (DESTWIN$)) - ASC("a") + 1) amt$ = MID$ (amt$, 1, 1) IF amt$ <> "-" THEN i% = DoMsgBox ("Not enough free space on windows drive. Please delete some files to free up space and run Setup again.", "Imagination Express Setup", MB_ICONHAND + MB_OK) GOTO SEEYA ENDIF INITREALCOPYLIST: '' add files to copy list ClearCopyList AddSectionFilesToCopyList "Diner", SrcDir$, DESTDINER$ AddSectionFilesToCopyList "DinerWin DLLs", SrcDir$, DESTWINSYS$ '' add demo icon to copy list AddSectionFilesToCopyList "Edmark Demo", SrcDir$, DESTDINER$ '' add themepack files to copy list AddSectionFilesToCopyList THEMESECTION$, SrcDir$, DESTDINER$ + "Themes\" + THEMEDIR$ + "\" '' see if DINER.INI file already exists '' if not, copy a base INI file IF DoesFileExist (DESTWIN$ + "Imagine.INI", femExists) = 0 THEN AddSectionFilesToCopyList "INI", SrcDir$, DESTWIN$ ENDIF '' see if WAVEMIX.INI file already exists '' if not, copy a pre-built one IF DoesFileExist (DESTWIN$ + "WAVEMIX.INI", femExists) = 0 THEN AddSectionFilesToCopyList "WaveMixIni", SrcDir$, DESTWIN$ ENDIF '' ******** WING SECTION STARTS HERE AddSectionFilesToCopyList "WinG", SrcDir$, DESTWINSYS$ ' ' only use DVA on Windows 3.x ' IF OnWin3x() = 1 THEN AddSectionFilesToCopyList "dva", SrcDir$, DESTWINSYS$ IF VflatdPresent() = 0 THEN bInstallDVA% = 1 END IF END IF AddSectionFilesToCopyList "wing32", SrcDir$, DESTWINSYS$ Dest1$ = MakePath(DESTWINSYS$,"wing32.dll") Dest2$ = MakePath(DESTWINSYS$,"wing32.xxx") RenameFilePlease Dest1$,Dest2$ '' Add VfW files here AddSectionFilesToCopyList "VfW Runtime", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "AVICodecs", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "ACM Drivers", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "Indeo-ini", SrcDir$, DESTWIN$ AddSectionFilesToCopyList "OLE2", SrcDir$, DESTWINSYS$ AddSectionFilesToCopyList "MPlayer", SrcDir$, DESTWIN$ COPYFILES: RESTARTDIR$ = DESTWIN$ SetRestartDir RESTARTDIR$ SrcDir$ = GetSymbolValue ("STF_SRCDIR") CreateDir DESTDINER$, cmoVital CreateDir DESTDINER$ + "Kids\", cmoVital CreateDir DESTDINER$ + "Sounds\", cmoVital CreateDir DESTDINER$ + "Themes\", cmoVital CreateDir DESTDINER$ + "Themes\" + THEMEDIR$ + "\", cmoVital ERR = 0 '' copy the files CopyFilesInCopyList '' update wing32 UpdateWinG32 DESTWINSYS$ '' if we needed to install DVA, create an INI key value IF bInstallDVA% = 1 THEN CreateSysIniKeyValue DESTWIN$ + "system.ini", "386Enh", "device", MakePath(DESTWINSYS$, "dva.386"), cmoOverwrite ENDIF '' update VfW stuff CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.CVID", "iccvid.drv", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.IV31", "ir32.dll", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.IV32", "ir32.dll", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.MRLE", "MSRLE.drv", cmoOverwrite I% = DoesIniKeyExist (DESTWIN$ + "system.ini", "Drivers", "VIDC.RT21") IF I% = 0 THEN CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.RT21", "indeov.drv", cmoOverwrite END IF CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "VIDC.YVU9", "indeov.drv", cmoOverwrite CreateIniKeyValue DESTWIN$ + "WIN.INI", "mci extensions", "avi", "AVIVideo", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "mci", "AVIVideo", "mciavi.drv", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "WaveMapper", "msacm.drv", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "MSACM.msadpcm", "msadpcm.acm", cmoOverwrite CreateIniKeyValue DESTWIN$ + "system.ini", "Drivers", "MSACM.imaadpcm", "imaadpcm.acm", cmoOverwrite CreateIniKeyValue DESTWIN$ + "control.ini", "drivers.desc", "msacm.drv", "Microsoft Sound Mapper V2.00", cmoOverwrite CreateIniKeyValue DESTWIN$ + "control.ini", "drivers.desc", "msadpcm.acm", "Microsoft ADPCM Codec V2.00", cmoOverwrite CreateIniKeyValue DESTWIN$ + "control.ini", "drivers.desc", "imaadpcm.acm", "Microsoft IMA ADPCM Codec V2.00", cmoOverwrite '' add a key and item for new themepack in ini file CreateIniKeyValue DESTWIN$ + "Imagine.INI", "Themepack List", THEMENAME$, "Themes\" + THEMEDIR$ + "\", cmoOverwrite '' create an ini value for diner root dir CreateIniKeyValue DESTWIN$ + "Imagine.INI", "General", "Root", DESTDINER$, cmoOverwrite '' check for copy errors IF ERR <> 0 THEN GOTO ERR_UNEXPECTED ENDIF '' more VfW stuff Run ("regedit.exe /s " + MakePath(DESTWIN$, "mplayer.reg")) Run ("regedit.exe /s " + MakePath(DESTWINSYS$, "OLE2.reg")) Run ("regedit.exe /s " + MakePath(DESTWINSYS$, "cleanup.reg")) CreateProgmanItem "Accessories", "Media Player", MakePath(DESTWIN$, "mplayer.exe"), "", cmoOverwrite '' add program manager group and item icon CreateProgmanGroup "Edmark", "", cmoNone CreateProgmanItem "Edmark", "Imagination Express", DESTDINER$ + "IMAGINE.EXE", "", cmoOverwrite CreateProgmanItem "Edmark", "Imagination Express Readme", "WRITE.EXE " + MakePath (DESTDINER$, "README.WRI"), "", cmoOverwrite SRCDEMO$ = SrcDir$ + "DEMO\DEMO.EXE" CreateProgmanItem "Edmark", "Edmark Demos", SRCDEMO$, DESTDINER$ + "DEMO.ICO", cmoOverwrite ShowProgmanGroup "Edmark", 1, cmoNone Run ("profdisp.exe") READMEDLG: sz$ = UIStartDlg (CUIDLL$, README, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO READMEDLG ENDIF UIPop 1 SUCCESS: '' HERE WE SHOULD REALLY SEE IF WE NEED TO RESTART WINDOWS (MAYBE BECAUSE OF VfW) '' IF SO, THEN WE WANT TO CHECK FOR LOCKED FILES BEFORE DISPLAYING THE DIALOG AND '' THEN DISPLAY THE APPROPRIATE DIALOG '' indicate success to the user and restart windows if necessary sz$ = UIStartDlg (CUIDLL$, EXITSUCCESS, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO SUCCESS ENDIF UIPop 1 RESTRT% = RestartListEmpty () RESTART: IF RESTRT% = 0 THEN sz$ = UIStartDlg(CUIDLL$, RESTART, "FInfo0DlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO RESTART ENDIF DOIT: I% = ExitExecRestart () dummy% = DoMsgBox ("Windows cannot be restarted because MS-DOS applications are active. Close all MS-DOS applications and then click OK.", "Imagination Express", MB_OK + MB_ICONHAND) goto DOIT END ELSEIF bInstallDVA% = 1 THEN sz$ = UIStartDlg(CUIDLL$, ASKRESTART, "FInfoDlgProc", 0, "") IF sz$ = "CONTINUE" THEN I% = RestartWindows ELSEIF sz$ = "EXIT" THEN UIPopAll END ELSEIF sz$ = "REACTIVATE" THEN GOTO RESTART ELSE UIPop 1 END IF END IF GOTO SEEYA ASKQUIT: sz$ = UIStartDlg (CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "") IF sz$ = "EXIT" THEN UIPop 1 GOTO QUIT ELSEIF sz$ = "REACTIVATE" THEN GOTO ASKQUIT ELSE UIPop 1 '' remove quit dialog and go back to previous dialog ENDIF RETURN QUIT: sz$= UIStartDlg (CUIDLL$, EXITQUIT, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO QUIT ENDIF UIPopALL GOTO SEEYA ERR_UNEXPECTED: sz$ = UIStartDlg (CUIDLL$, ERROR_UNEXPECTED, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO ERR_UNEXPECTED ENDIF UIPop 1 GOTO FAILURE EXITFAIL: sz$ = UIStartDlg (CUIDLL$, ExitCode%, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO EXITFAIL ENDIF UIPop 1 GOTO FAILURE FAILURE: sz$ = UIStartDlg (CUIDLL$, EXITFAILURE, "FInfoDlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO FAILURE ENDIF UIPopAll GOTO SEEYA ERRORTRAP: IF ERR = STFQUIT THEN GOTO QUIT ENDIF RESUME NEXT SEEYA: UIPopAll END '' FROM HERE ON ARE FUNCTIONS IN THE ORIGINAL WING.MST FILE THAT THE WING SETUP USES '** '** Purpose: '** Appends a file name to the end of a directory path, '** inserting a backslash character as needed. '** Arguments: '** szDir$ - full directory path (with optional ending "\") '** szFile$ - filename to append to directory '** Returns: '** Resulting fully qualified path name. '************************************************************************* FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING IF szDir$ = "" THEN MakePath = szFile$ ELSEIF szFile$ = "" THEN MakePath = szDir$ ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN MakePath = szDir$ + szFile$ ELSE MakePath = szDir$ + "\" + szFile$ END IF END FUNCTION SUB UpdateWinG32 (szOrig$) STATIC ' ' Here we check the version ourselves of wing32.dll, since ' we can't get version checking for Win32 apps from Win16 ' FileNew$ = MakePath(szOrig$, "wing32.dll") FileOrig$ = MakePath(szOrig$, "wing32.xxx") IF IsWin32FileNewer( FileOrig$, FileNew$ ) THEN RemoveFile FileOrig$, cmoForce ELSE RemoveFile FileNew$, cmoForce ' get rid of new file RenameFilePlease FileOrig$,FileNew$ ' put back old file END IF END SUB