home *** CD-ROM | disk | FTP | other *** search
Wrap
'************************************************************************** '* Infopost Installation Script '************************************************************************** DRIVEFREE$ = "2300000" '$DEFINE DEBUG ''Define for script development/debugging '$INCLUDE 'setupapi.inc' '$INCLUDE 'msdetect.inc' ''Dialog ID's CONST WELCOME = 100 CONST ASKQUIT = 200 CONST DESTPATH = 300 CONST EXITFAILURE = 400 CONST EXITQUIT = 600 CONST EXITSUCCESS = 700 CONST OPTIONS = 800 CONST APPHELP = 900 CONST CUSTINST = 6200 CONST TOOBIG = 6300 CONST BADPATH = 6400 CONST APPFILES = 1 ''Bitmap ID CONST LOGO = 1 GLOBAL DEST$ ''Default destination directory. DECLARE SUB Install DECLARE SUB ModifyIniFile DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING INIT: CUIDLL$ = "mscuistf.dll" ''Custom user interface dll HELPPROC$ = "FHelpDlgProc" ''Help dialog procedure SetBitmap CUIDLL$, LOGO SetTitle "Delphi /InfoPost Installation" szInf$ = GetSymbolValue("STF_SRCINFPATH") IF szInf$ = "" THEN szInf$ = GetSymbolValue("STF_CWDDIR") + "INFOPOST.INF" END IF ReadInfFile szInf$ OPTCUR$ = "1" DEST$ = "C:\INFOPOST" WINDRIVE$ = MID$(GetWindowsDir, 1, 1) WELCOME: sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$) IF sz$ = "CONTINUE" THEN UIPop 1 ELSE GOSUB ASKQUIT GOTO WELCOME END IF OPTION: SetSymbolValue "RadioDefault", OPTCUR$ GOTO GETPATH OPTL1: sz$ = UIStartDlg(CUIDLL$, OPTIONS, "FRadioDlgProc", APPHELP, HELPPROC$) OPTCUR$ = GetSymbolValue("ButtonChecked") IF sz$ = "CONTINUE" THEN UIPop(1) ELSEIF sz$ = "REACTIVATE" THEN GOTO OPTL1 ELSE GOSUB ASKQUIT GOTO WELCOME '*** früher: GOTO OPTION END IF GETPATH: SetSymbolValue "EditTextIn", DEST$ SetSymbolValue "EditFocus", "END" GETPATHL1: sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, HELPPROC$) DEST$ = GetSymbolValue("EditTextOut") IF sz$ = "CONTINUE" THEN IF IsDirWritable(DEST$) = 0 THEN GOSUB BADPATH GOTO GETPATHL1 END IF UIPop 1 ELSEIF sz$ = "REACTIVATE" THEN GOTO GETPATHL1 ELSEIF sz$ = "BACK" THEN UIPop 1 GOTO WELCOME ELSE GOSUB ASKQUIT GOTO GETPATH END IF '' Check free space for target drive DestDrive$ = MID$(DEST$, 1, 1) mustfree& = VAL (DRIVEFREE$) free& = GetFreeSpaceForDrive (DestDrive$) IF free& < mustfree& THEN GOSUB TOOBIGG GOTO GETPATH END IF Install QUIT: ON ERROR GOTO ERRQUIT IF ERR = 0 THEN dlg% = EXITSUCCESS ELSEIF ERR = STFQUIT THEN dlg% = EXITQUIT ELSE dlg% = EXITFAILURE END IF QUITL1: sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO QUITL1 END IF UIPop 1 CloseLogFile END ERRQUIT: i% = DoMsgBox("Problem mit Quelldateien - bitte wenden Sie sich an die Delphi /InfoPost Hotline!", "Delphi /InfoPost Installation", MB_OK+MB_TASKMODAL+MB_ICONHAND) END BADPATH: sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfo0DlgProc", 0, "") IF sz$ = "REACTIVATE" THEN GOTO BADPATH END IF UIPop 1 RETURN TOOBIGG: tmp$ = MID$ (DRIVEFREE$, 1, 4) sz$ = "Zu wenig Platz auf diesem Laufwerk. Es mⁿssen mindestens " + tmp$ + " KiloByte frei sein!" i% = DoMsgBox (sz$, "Ungenⁿgender Platz", 0) UIPop 1 RETURN ASKQUIT: sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "") IF sz$ = "EXIT" THEN UIPopAll ERROR STFQUIT ELSEIF sz$ = "REACTIVATE" THEN GOTO ASKQUIT ELSE UIPop 1 END IF RETURN '** '** Purpose: '** Builds the copy list and performs all installation operations. '** Arguments: '** none. '** Returns: '** none. '************************************************************************* SUB Install STATIC SrcDir$ = GetSymbolValue("STF_SRCDIR") CreateDir DEST$, cmoNone OpenLogFile MakePath(DEST$, "Infopost.Log"), 0 WriteToLogFile "" WriteToLogFile " User chose as destination directory: '" + DEST$ + "'" WriteToLogFile " User chose option: '" + OPTCUR$ + "'" WriteToLogFile "" WriteToLogFile "May have had to create the directory: " + DEST$ WriteToLogFile "" AddSectionFilesToCopyList "Files", SrcDir$, DEST$ CopyFilesInCopyList CreateProgmanGroup "Delphi /AdressManager", "", cmoNone ShowProgmanGroup "Delphi /AdressManager", 1, cmoNone CreateProgmanItem "Delphi /AdressManager", "InfoPost", MakePath(DEST$,"infopost.exe"), "", cmoOverwrite CreateProgmanItem "Delphi /AdressManager", "List Manager - ▄ber InfoPost", MakePath(DEST$,"listmgrw.exe -m info.txt"), "", cmoOverwrite ModifyIniFile RemoveFile MakePath(DEST$, "postsort.dt"), cmoNone RemoveFile MakePath(DEST$, "postsort.nx"), cmoNone END SUB '** '** Purpose: '** Deletes the old INFOPOST.INI File '** Modifies the Infopost Ini File '** Writes the correct path in the single sections '************************************************************************* SUB ModifyIniFile STATIC IPINI$ = MakePath( GetWindowsDir(),"infopost.ini") RemoveFile IPINI$, cmoForce CreateIniKeyValue IPINI$, "Allgemein", "Plzbtdatei", MakePath(DEST$, "postsort"), cmoOverwrite END SUB '** '** 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