System.FreeResources (property)

Syntax System.FreeResources
Description Returns an Integer representing the percentage of free system resources.
Comments The returned value is between 0 and 100.
Example This example gets the percentage of free resources.
Sub Main()
  FreeRes% = System.FreeResources
  MsgBox FreeRes% & "% of memory resources available."
End Sub
See Also System.TotalMemory (property); System.FreeMemory (property); Basic.FreeMemory (property).