home *** CD-ROM | disk | FTP | other *** search
/ VIPER Paradice / VIPER.ISO / pc / SETUP.EXE / SETUP.DXR / 00027_25.ls < prev    next >
Encoding:
Text File  |  2002-06-30  |  410 b   |  19 lines

  1. global choosefolder
  2.  
  3. on exitFrame
  4.   fxObj = xtra("FileXtra3").new()
  5.   choosefolder = fxObj.fx_folderselectdialog(" Please choose a folder.")
  6.   free = fxObj.fx_volumegetfreebytes(choosefolder)
  7.   fxObj = 0
  8.   if choosefolder = EMPTY then
  9.     go(1)
  10.   else
  11.     if free < 80000000 then
  12.       alert("There is not enough space. Please choose another folder.")
  13.       go(1)
  14.     else
  15.       go(26)
  16.     end if
  17.   end if
  18. end
  19.