Printer Version Table of Contents Project Home Page
.EXAMPLE.....: 53 Convert numbers to "extended hex" (XX) format
.CATEGORY....: examples
.DISCUSSION..:
.CODE........:
@echo off
cls
SET decnum=0

:top
   if (%decnum%)==(37) goto endit
   Fdate /f#2xx /A%decnum% /P"XX representation of %decnum% is "
   Fdate /f#add /A%decnum% /b1 /Vdecnum
goto top


:endit