GetDataQuantity
Result = GetDataQuantity()
 
Parameters: NONE
Returns:

    Result = Data quantity
 

      GetDataQuantity returns the total amount of data values/strings that are embedded within this program.





Mini Tutorial:



  
; number of separate data values
  n = GetDataQuantity()
  Print "There are " + Str$(n) + " pieces of data"
  
; Read the first value
  i = ReadData()
  Print "The first value is " + Str$(i)
  
; embedded data
  Data 32,4568,888,"Hello""World"
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  
  




This example would output.

  
  There are 5 pieces of Data
  The first value is 32
  

 
Related Info: Data | FindData | GetDataPointer | GetDataType | ReadData | ReadData# | ReadData$ | Restore :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com