Sure, just create your own @MONTHNO called $MONTHNO, like this:

$MONTHNO = IIF(@MONTHNO<10, "0"+@MONTHNO, @MONTHNO)

Then use/show it like this:

? "vhistexp.exe " + $MONTHNO + "*" + @year + ".log"

-Shawn