Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Stanlyn said:I'm testing if the drive that hosts a particular table has enough free disk space.
lnDiskspace = DISKSPACE(somepath)
Do Case
Case lnDiskspace<0
Messagebox("Sorry. Currently the size of "+somepath+" could not be determined.")
Return
Case lnDiskspace < neededbytes
Messagebox("insufficient available space on "+somepath)
Return
Otherwise
Messagebox("Available space is fine")
EndCase
* Continue here