Hi !
When using design-time constants, then there is often the need to store parts of constants on its own. I do not want to enter the same data more than once, because this could cause errors.
Lets look at a simple sample:
I store filename and its path in 2 constants:
#filename_nopath# = "data.txt"
#netdirectory# = "\\nt0002\publicshare"
Now I also may need the complete filename, so it would be nice to have:
#file# = #netdirectory# \#filename_nopath#
Currently, such constructs are not supported (in 6.0.1.0).
Hayo
When using design-time constants, then there is often the need to store parts of constants on its own. I do not want to enter the same data more than once, because this could cause errors.
Lets look at a simple sample:
I store filename and its path in 2 constants:
#filename_nopath# = "data.txt"
#netdirectory# = "\\nt0002\publicshare"
Now I also may need the complete filename, so it would be nice to have:
#file# = #netdirectory# \#filename_nopath#
Currently, such constructs are not supported (in 6.0.1.0).
Hayo
Comment