export_export_symbol_to_text_.htm
Navigation: Templates > Template Language Reference > Complete Alpha Listing >====== #EXPORT (export symbol to text) ====== | |
#EXPORT[ (symbol ) ]
#EXPORT | Creates a .TXA or .TXD text file from a symbol. |
symbol | The template symbol to export (%Module, %Procedure, %Dictionary, or %Program). If omitted, the current application is exported. |
#EXPORT outputs .TXA or .TXD script text for the symbol to the current output file (see #CREATE or #OPEN). This file may then be used for importing to other Clarion applications.
Example:
#CREATE('MyExp.TXA')
#FOR(%Procedure)
#EXPORT(%Procedure)
#ENDFOR
#CLOSE('MyExp.TXA')
#CREATE('MyApp.TXA')
#EXPORT #! Exports entire application
#CLOSE('MyApp.TXA')
export_export_symbol_to_text_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1