Friedrich,

I'm almost there with your help. I am using 6.5.1876. What I need (want) to do is specify a dot delimited version (6.02.03) and develop the exe name by removing the dots and sandwiching the result between other constants. IOW, I want to start with "6.02.03" and end with "fw60203.exe". Then set [MYEXENAME] to that value.

My problem is two-fold:
(1) I don't see a way to replace the dots in a constant or compiler var
(2) If I try to work backwards (starting without dots) I am unsuccessfull in concatenating multiple constants into a single constant:
#const $MAJ$ = "6"
#const $INT$ = "02"
#const $MIN$ = "03"
#const $MYVER$ = $MAJ$.$INT$.$MIN$
The above issues an error saying $MAJ$.$INT$.$MIN$ is not defined.

I can make it work if I define 2 constants ("6.02.03" and "60203"), but I am hoping there is a way where I only need to specify either, and not both.

Is this possible?