CALL: BARCOD path+filename filename Ex: BARCOD C:\YEAH\myprog myprog Will convert C:\YEAH\myprog.txt to C:\YEAH\myprog.raw And C:\YEAH\myprog.raw to C:\YEAH\myprog.ps And copies myprog.raw into c:\Program Files\Programmation\V41\RAW\myprog.raw to be used by the V41 emulator. You can adapt the paths! HP41UC is supposed to be in the V41 folder. ...........BARCOD.BAT.................. @ECHO OFF c: cd c:\Program Files\Programmation\V41 echo ------------------------------- echo COMPILATION VERS FICHIER RAW... echo ------------------------------- IF EXIST %1.raw del %1.raw hp41uc /t=%1.txt /r=%1.raw if NOT EXIST %1.raw GOTO zozo copy %1.raw raw\%2.raw IF EXIST %1.ps del %1.ps echo . echo ---------------------------- echo CREATION DES CODES BARRES... echo ---------------------------- hp41uc /r=%1.raw /s=%1.ps if NOT EXIST %1.ps GOTO zaza GOTO fin :zozo echo *********************** echo ERREUR de Compilation ! echo *********************** goto fin :zaza echo *************************************** echo ERREUR de génération des codes barres ! echo *************************************** :fin pause