home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windoware
/
WINDOWARE_1_6.iso
/
winutil
/
wspcr20
/
wsglobal.wbt
< prev
next >
Wrap
Text File
|
1991-09-27
|
1KB
|
37 lines
; --- WSGLOBAL.WBT - WorkSpacer global default variable file
; WorkSpacer 2.0 ⌐ 1991 - WiGuys Software
; --- This file establishes global default integer and string values for
; variables commonly used by all the WBT's. If the directories used
; by WorkSpacer are incorrect for your system, change the values of
; ndwdir and windir here. This file is also used to check for the
; existence of WSPACER.LIB (and create it if needed), and to hide
; the Batch Runner icon for all WBT's.
WinHide ( "WBT" )
ndwdir = "c:\ndw\"
windir = "c:\windows\"
pix = 25
nul = ""
wsver = "WorkSpacer 2.0"
count = 1
replace = @NO
allwin = WinItemize ( )
spacelib = StrCat ( ndwdir, "wspacer.lib" )
spacebak = StrCat ( ndwdir, "wspacer.bak" )
spaceini = StrCat ( windir, "wspacer.ini" )
inibak = StrCat ( windir, "wspacer2.ini" )
hortab = Num2Char (9)
lf = StrCat ( Num2Char (13), Num2Char (10) )
tf = StrCat ( lf, lf )
; --- Since WorkSpacer checks the size of WSPACER.LIB during several
; procedures, check for the existence of it, and create a 0 byte
; file if it doesn't exist.
If FileExist ( spacelib ) Then Return
fHandle = FileOpen ( spacelib, "WRITE" )
FileClose ( fHandle )
Return