<data_load> Loads textual data from file (whole the content) and saves them in variable for other processing within the macro.


Command Tree:   File  \  Load Data
.
Syntax:   <data_load>("Variable", "File", "Reserved")
Variable
Variable that receives the file content (text).
File
Full path to the file with data (e.g., "c:\mydocuments\data.txt").
Reserved
Must be empty string "".
.
.
Example:   <#> This macro loads the file content to variable
<#>
<commands_only_on>

<varset>("vFileData=_vStrEmpty","")
<varchng>("vFile","SF","")
<data_load>("vFileData","vFile","")
<msg>(100,100,"vFileData","File Content",1)