Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can any one clear me about the Include statement with an example
Include statement just inserts code from a file into your reload script.
Very useful if you have the same piece of code used in many different applications. You maintain the files that is included only and do not have to amend every single qvw.
Also very handy when subs are used across different qvw.
Dollar-Sign Expansion of File - Include Statement
File inclusions are made using dollar-sign expansions. The syntax is then:
$( include=filename )
The above text will be replaced by the content of the file specified after the equal sign. This feature
is very useful when storing scripts or parts of scripts in text files.
Example:
$(include=C:\Documents\MyScript.qvs);
Include statement just inserts code from a file into your reload script.
Very useful if you have the same piece of code used in many different applications. You maintain the files that is included only and do not have to amend every single qvw.
Also very handy when subs are used across different qvw.
Dollar-Sign Expansion of File - Include Statement
File inclusions are made using dollar-sign expansions. The syntax is then:
$( include=filename )
The above text will be replaced by the content of the file specified after the equal sign. This feature
is very useful when storing scripts or parts of scripts in text files.
Example:
$(include=C:\Documents\MyScript.qvs);
Hi
$(must_include=C:\File.txt)
Thanks for your replies
I came to know about the Include statement