Difference between revisions of "MC-Basic:task.MAINFILENAME"
m (Miborich moved page Axystems:MC-Basic:task.MAINFILENAME to MC-Basic:task.MAINFILENAME: Global renaming of Axystems: namespace into (Main):) |
|||
Line 54: | Line 54: | ||
* [[MC-Basic:PROGRAMNAME|PROGRAMNAME]] | * [[MC-Basic:PROGRAMNAME|PROGRAMNAME]] | ||
− | [[Category | + | [[Category:MC-Basic:Task Control|task.MAINFILENAME]] |
}} | }} |
Revision as of 09:17, 22 May 2014
Tasks may receive new temporal names when loaded through the Load$…As command. MainFileName property returns the original file name of the task. When queried within a function or subroutine of a library, MainFileName will return the name of the calling task.
Syntax
?<task>.<MainFileName>
? MainFileName
Availability
from 0.4.2.4
Type
String
Scope
Task or Terminal
Limitations
Read Only.Task must be loaded in memory.
Examples
--> Load$ “Task1.prg” As “Task2.prg”
-->?Task2.prg.MainFileName
--> Task1.prg
Or from the Task2.prg:
Program
? MainFileName ‘ should return Task1.prg
End Program