COMPILED

Previous  Next

 

status = COMPILED() AS INTEGER

status = COMPILED( module AS MODULE ) AS INTEGER

 


 

COMPILED returns 1 if current or specified module is compiled otherwise 0

 

Example:

 

LOAD "D:\PelleNestvall.bas" as pelle

 

print "Module = ";MODULE,

print "Module = ";MODULE( pelle ),

 

print "Version = ";VERSION,

print "Version = ";VERSION( pelle ),

print "Version = ";VERSION( "MyBASIC2_ExtLib.dll" ),

 

print "Filename = ";FILENAME,

print "Filename = ";FILENAME( pelle ),

 

print "Compiled = ";COMPILED,

print "Compiled = ";COMPILED( pelle ),

 

UNLOAD pelle