Hello all,
I need to debug a programme and I would like to export all Global Variables and their values to a text file. Arrays I will deal with separately. Something like
fileopen(c1,"Variables.txt",cWrite,cAppend,cASCII)
For n = 0 to App.GlobalVariables.count-1
filewrite(c1,App.GlobalVariables(n).name & "," & App.GlobalVariables(n).value)
next
fileclose(c1)
If this can work with all modules then that would be great.
If this question has already been answered then please can you point me in the right direction.
Thanks
Robinathome:sign0085:
I need to debug a programme and I would like to export all Global Variables and their values to a text file. Arrays I will deal with separately. Something like
fileopen(c1,"Variables.txt",cWrite,cAppend,cASCII)
For n = 0 to App.GlobalVariables.count-1
filewrite(c1,App.GlobalVariables(n).name & "," & App.GlobalVariables(n).value)
next
fileclose(c1)
If this can work with all modules then that would be great.
If this question has already been answered then please can you point me in the right direction.
Thanks
Robinathome:sign0085:
Last edited: