BuildCounter: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Created page with "BuildCounter == Description == BuildCounter returns a string with the current version of NSB/AppStudio that is running. This global property can be read, but not set. It is only used for native apps created using VoltBuilder. The number is incremented on each build. == Example == <pre> Rem BuildCounter Example Print "The current BuildCounter is " & BuildCounter </pre> == Output == <pre> The current BuildCounter is 42 </pre> Category:Language Reference"
 
 
Line 3: Line 3:
== Description ==
== Description ==


BuildCounter returns a string with the current version of NSB/AppStudio that is running. This global property can be read, but not set. It is only used for native apps created using VoltBuilder. The number is incremented on each build.  
BuildCounter returns a string with the current version of NSB/AppStudio that is running. This global property can be read, but not set. It is only used for native apps created using VoltBuilder. The number is incremented on each build you do with VoltBuilder.


== Example ==
== Example ==

Latest revision as of 18:21, 29 October 2024

BuildCounter

Description

BuildCounter returns a string with the current version of NSB/AppStudio that is running. This global property can be read, but not set. It is only used for native apps created using VoltBuilder. The number is incremented on each build you do with VoltBuilder.

Example

Rem BuildCounter Example
Print "The current BuildCounter is " & BuildCounter

Output

The current BuildCounter is 42