Hi! I have downloaded what seemed to be a great editor, PFE, Programmers File Editor! The main reason I downloaded it was because one can compile a file specifiyng a command to be executed!

Note tha my
OS is Windows XP Pro,
Compiler is Borland C++ 5.5.1 for Win32
Editor is PFE (programmers file editor)

My problem is that I get a strange error message:
-----------------------------------------
> C:\Borland\BCC55\Bin\bcc32.exe C:\dev\test.cpp

Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat:
Error E2141 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Declaration syntax error
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
Error E2206 C:\DOCUME~1\RICKAR~1\LOCALS~1\Temp\PFE96.bat 1: Illegal character '\' (0x5c)
*** 7 errors in Compile ***
-----------------------------------------

What I believe is strange is that the compiler complaints about a file named PFE96.BAT

The file I'm trying to compile is test.cpp
-----------------------------------------
#include <stdio.h>

void main()
{
printf("hej");

}
-----------------------------------------

Which works fine if I compile it by typing the command in the "command prompt" in Windows XP!

Anyone who can help me about this or have any idea of what is going wrong?

Best Regards
Rickard