Well, ok, kdub didn't specify that he wanted 0's.

Here is what I do for the 0's...


IF @MONTHNO < 10
$MONTH = "0" + @MONTHNO
ELSE
$MONTH = @MONTHNO
ENDIF
IF @MDAYNO < 10
$DAY = "0" + @MDAYNO
ELSE
$DAY = @MDAYNO
ENDIF
$FILENAME = $MONTH + $DAY + "x86.exe"


Kinda bulky, but it gets the job done and I can understand what it is doing. I suppose as I get deaper into Kix I will use SubStr(). [Smile]

Rocco
_________________________
I Love this board!! -------------------- My DEV PC is running KIX 4.22 WINXP Pro