Hello,
I'm trying to customize an aris standard report(Generate job description) that writes dialog settings to a configuration file.
Where can I find this configuration file?
Kind Regards,
Maik
Hello,
I'm trying to customize an aris standard report(Generate job description) that writes dialog settings to a configuration file.
Where can I find this configuration file?
Kind Regards,
Maik
Hi Maik,
do you create/access the configuration file this way:
var nVal = Context.getPrivateProfileInt("MySection", "MyEntry1", 0, "myConfiguration.xml") var sVal = Context.getPrivateProfileString("MySection", "MyEntry2", "", "myConfiguration.xml")
In this case the configuration file is stored in the same category as the report script. You can edit the configuration file in the script editor.
If you want to distribute the report together with the configuration file, you can add the configuration file to the report's imported files.
Best regards,
Torsten
Hi Torsten,
I'm sorry for the delayed response.
Even though your posting didn't solved my problem directly, nevertheless it provoked me to handle the configuration file by myself.
Thanks for that!
Kind regards,
Maik