home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computerworld 1996 March
/
Computerworld_1996-03_cd.bin
/
idg_cd3
/
aplikace
/
office
/
edgwin
/
wedge.mst
< prev
Wrap
Text File
|
1995-07-14
|
7KB
|
256 lines
'**************************************************************************
'* WEDGE Setup Script
'**************************************************************************
'$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 TOOBIG = 6300
CONST BADPATH = 6400
CONST WARNNOCOP = 8000
CONST WARNNOMOUSE = 8100
CONST WIN31REQ = 8200
''Bitmap ID
CONST LOGO = 1
GLOBAL DEST$ ''Default destination directory.
GLOBAL DIRTMPL$ ''Default template directory.
GLOBAL DIRWMF$ ''Default metafile directory.
GLOBAL DIRSYM$ ''Default symbols directory.
GLOBAL OPTCUR$ ''Option selection from option dialog.
GLOBAL EXTRACOSTS$ ''List of extra costs to add per drive
GLOBAL APPNEEDS$ ''Option list costs per drive
DECLARE SUB Install
DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
INIT:
CUIDLL$ = "mscuistf.dll" ''Custom user interface dll
HELPPROC$ = "FHelpDlgProc" ''Help dialog procedure
SetBitmap CUIDLL$, LOGO
SetTitle "EDGE Diagrammer Setup"
SetAbout "EDGE Diagrammer Version 1.05", "Copyright (C) 1995 Pacestar Software."
szInf$ = GetSymbolValue("STF_SRCINFPATH")
IF szInf$ = "" THEN
szInf$ = GetSymbolValue("STF_CWDDIR") + "WEDGE.INF"
END IF
ReadInfFile szInf$
OPTCUR$ = "1"
DEST$ = "C:\WINEDGE"
APPNEEDS$ = "AppNeeds"
EXTRACOSTS$ = "ExtraCosts"
FOR i% = 1 TO 26 STEP 1
AddListItem EXTRACOSTS$, "0"
NEXT i%
'$IFDEF DEBUG
i% = SetSizeCheckMode(scmOnIgnore) '' could use scmOff; def = scmOnFatal
WinDrive$ = MID$(GetWindowsDir, 1, 1)
IF IsDriveValid(WinDrive$) = 0 THEN
i% = DoMsgBox("Windows drive ('"+WinDrive$+"') is not a valid drive.", "DEBUG", MB_TASKMODAL+MB_ICONHAND+MB_OK)
GOTO QUIT
END IF
'$ENDIF ''DEBUG
WELCOME:
sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
IF sz$ = "CONTINUE" THEN
UIPop 1
ELSE
GOSUB ASKQUIT
GOTO WELCOME
END IF
IF Has87MathChip() THEN
ELSE
sz$ = UIStartDlg(CUIDLL$, WARNNOCOP, "FInfoDlgProc", APPHELP, HELPPROC$)
IF sz$ = "CONTINUE" THEN
UIPop 1
ELSE
ERROR STFQUIT
END IF
END IF
IF HasMouseInstalled() THEN
ELSE
sz$ = UIStartDlg(CUIDLL$, WARNNOMOUSE, "FInfoDlgProc", APPHELP, HELPPROC$)
IF sz$ = "CONTINUE" THEN
UIPop 1
ELSE
ERROR STFQUIT
END IF
END IF
IF GetWindowsMajorVersion() < 3 THEN
sz$ = UIStartDlg(CUIDLL$, WIN31REQ, "FInfoDlgProc", APPHELP, HELPPROC$)
ERROR STFQUIT
ELSE
IF GetWindowsMinorVersion() < 1 THEN
sz$ = UIStartDlg(CUIDLL$, WIN31REQ, "FInfoDlgProc", APPHELP, HELPPROC$)
ERROR STFQUIT
END IF
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 GETPATH
ELSE
GOSUB ASKQUIT
GOTO GETPATH
END IF
SrcDir$ = GetSymbolValue("STF_SRCDIR")
DIRWMF$ = DEST$+"\WMF"
DIRTMPL$ = DEST$+"\TEMPLATE"
DIRSYM$ = DEST$+"\SYMBOLS"
CreateDir DEST$, cmoNone
CreateDir DIRTMPL$, cmoNone
CreateDir DIRSYM$, cmoNone
CreateDir DIRWMF$, cmoNone
OpenLogFile MakePath(DEST$, "LOGFILE.OUT"), 0
WriteToLogFile ""
WriteToLogFile " User chose as destination directory: '" + DEST$ + "'"
WriteToLogFile " May have had to create the directory: " + DEST$
WriteToLogFile ""
AddSectionFilesToCopyList "Files", SrcDir$, DEST$
AddSectionFilesToCopyList "Templates", SrcDir$, DIRTMPL$
AddSectionFilesToCopyList "Symbols", SrcDir$, DIRSYM$
AddSectionFilesToCopyList "WMF", SrcDir$, DIRWMF$
AddSectionFilesToCopyList "sys", SrcDir$, GetWindowsSysDir
ListSym$ = APPNEEDS$
''Add extra cost to Windows drive for ini/progman, etc.
ndrive% = ASC(ucase$(WINDRIVE$)) - ASC("A") + 1
ReplaceListItem EXTRACOSTS$, ndrive%, "10240"
IF GetCopyListCost(EXTRACOSTS$, ListSym$, "") = 0 THEN
ELSE
sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
GOTO GETPATH
END IF
CopyFilesInCopyList
CreateProgmanGroup "Pacestar Software", "", cmoNone
ShowProgmanGroup "Pacestar Software", 1, cmoNone
CreateProgmanItem "Pacestar Software", "EDGE Diagrammer", MakePath(DEST$,"edge.exe"), "", cmoOverwrite
CreateProgmanItem "Pacestar Software", "EDGE Diagrammer Help", MakePath(DEST$,"edge.hlp"), "", cmoOverwrite
CreateProgmanItem "Pacestar Software", "Shareware Help", MakePath(DEST$,"sharew.hlp"), "", cmoOverwrite
CloseLogFile
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
END
ERRQUIT:
i% = DoMsgBox("Setup sources were corrupted!", "Setup Message", 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
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:
'** 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