Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Borland C++ decompile

Status
Not open for further replies.

woyler

Programmer
Jun 20, 2001
678
US
CAn anyone point me in the right direction for a Borland c++ decompiler?
Thank You in advance.
 
There should be an option, if I remember well is -S. When you compille with this option, you'll get disassemby code. Is it what you need? John Fill
1c.bmp


ivfmd@mail.md
 
My situation is, my company has a application that grabs a flat file and parses it, then creates a new file with a different structure. Simple enough. The problem is, the flat file that is originally read by the app, has had a structure change. The real problem is that the app was written by an outside company that no longer exists, and we have nothing but the .exe
 
You can only decompile a C++ executables into assembly code. You will have to either buy the original source code, have someone write a new program that will parse the file the way you want, or get somebody to modify the assembly code after you decompile the executable.

James P. Cottingham

I am the Unknown lead by the Unknowing.
I have done so much with so little
for so long that I am now qualified
to do anything with nothing.
 
Often quicker to write a new app in such cases...
Now just HOW did I know that?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top