Subj : Re: Error To : borland.public.cpp.borlandcpp From : Ed Mulroy [TeamB] Date : Wed Sep 08 2004 01:17 pm Your question is abbout the command line tools from C++ Builder 5 but is posted here in the newsgroup for the old Borland C++ compiler. Look for newsgroups with the word 'cppbuilder' in their name. For example: borland.public.cppbuilder.commandlinetools Tasm32.exe is the 32 bit assembler. You are using the free compiler. An assembler is not supplied with the free compiler so it cannot do the compile via assembly function specified by using the -B command line option. What it can do is create an assembly source file by using the -S command line option. To see the list of compiler command line options: Start the help Type BCC32 into the edit control Click the Display button .. Ed > MC wrote in message > news:413f22fc@newsgroups.borland.com... > > C:\Borland\BCC55\Bin>bcc32.exe -B abs.cpp > Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland > abs.cpp: > Error E2133: Unable to execute command 'tasm32.exe' > > why is tasm32 missing ? > where can i get it from ? > > by the way, i want to create .ASM file, is it -B the corredt > parameter ? > thanks. .