Difference between revisions of "MC-Basic:STORECOMPDATA$"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:STORECOMPDATA$ to MC-Basic:STORECOMPDATA$: Global renaming of Axystems: namespace into (Main):)
 
Line 1: Line 1:
 +
{{Languages|MC-Basic:STORECOMPDATA$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=

Latest revision as of 08:19, 28 April 2017

Language: English  • 中文(简体)‎

This command stores data inform the specified <comp table name> in the <Filename> on flashdisk. The data is stored as a binary, double precision floating point (Intel format) and arranged row by row.

Short form

ScompData$

Syntax

StoreCompData$ <Filename> <comp table name>

Availability

Versions 4.0.13 and higher

Type

<Filename>: String

Range

Existing Comp table name

Scope

Task and Terminal

Limitations

File name should have extension .cmp

Examples

StoreCompData$ “Compdata.cmp” comp1

Or

Common shared Str1 as string

Str1 = “Compdata.cmp”

StoreCompData$ Str1 comp1

See Also