home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 25 Years Anniversary
/
CHIP_25Jahre_Jubilaeum.iso
/
downloads
/
401065
/
WPO11
/
WPO11.msi
/
Binary.NewBinary21
< prev
next >
Wrap
Text File
|
2003-04-15
|
515b
|
18 lines
' Get the length of CORELSHAREDDIR
Dim nInstallLength:nInstallLength = Len(Session.Property("CORELSHAREDDIR"))
' Get the MaxPath, set in Property Manager
Dim nMaxLength:nMaxLength = CInt(Session.Property("MaxPathShared"))
' Set property [SharedPathTooLong] if CORELSHAREDDIR length is too long
Session.Property("SharedPathTooLong") = "0"
If (nInstallLength > nMaxLength) Then
Session.Property("SharedPathTooLong") = "1"
Else
Session.Property("SharedPathTooLong") = "0"
End If