DingChavez
Programmer
How to configure a module with the builder to add an entry in the opentext.ini at installation time?
like :
[ABC]
debug=0
maxRows=1234
Thanks.
like :
[ABC]
debug=0
maxRows=1234
Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Fileprefs f
String filename
filename = .Module().PathPrefix() + 'kmcustomcatupgrade.ini'
f = fileprefs.Open( filename )
//the above code gets a handle to the ini file
.fStatus= fileprefs.GetPref( f, 'KMCustCatUpgrade',whichStatus )
//I get a section called that
//I need to write something to it
//lots of data type conversion
fileprefs.AddPref( f 'KMCustCatUpgrade','status', 'Processing' )