Getting form/code from a Visual Basic EXE

  • Thread starter Thread starter a104375
  • Start date Start date
  • Tags Tags
    Visual
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 6K views
a104375
Messages
1
Reaction score
0
Ok i have an exe of a game that my friend made and i was wondering if its possible to get the form and code of the program out of that exe file.. and yes i do have his permission from him to make some changes but he hasnt had time to get me the visual basic files
 
Physics news on Phys.org
Possible? Sure.
Anytime in your near future. No.

Turning a .exe back into source code is a very difficult task.
 
It's certainly not possible to get the original source code back out of the exe. On the other hand, if the code was compiled with debugging options turned on, there are some tools called decompilers which can do a reasonable job of decompiling the .exe.

http://en.wikipedia.org/wiki/Decompiler

- Warren