Hi,

I have this batch file which I am running in XP. What I want to be able to do is get the batch to convert the user's input to uppercase (the Project1.exe that I am launching only recognises uppercase).

Can anyone help?

Code:
@ECHO OFF
:start
CLS
ECHO GenMail Launcher (Tristan Uglow June 2005)
ECHO.
ECHO CA  Campaigns
ECHO DD  DirectDebits
ECHO GM  GeneralMailingecho.
SET choice=
SET /p choice=Choose Mode (or X for exit):
if '%choice%'=='' goto end
if '%choice%'=='X' goto end
"C:\Program Files\MyProg\Project1.EXE" '%choice%'
goto start
:end