Cara Mengedit File Exe Visual Basic

 
Cara Mengedit File Exe Visual Basic

I made a program using VB and I lost the source code but I have the exe file. How can I extract the code from the exe file?

naaoumii

Cara manual ini adalah cara paling mudah untuk menyebarkan aplikasi yang telah Anda buat pada beberapa komputer, caranya yaitu kita hanya perlu mengcopy file.exe dari aplikasi yang telah dibuat. Contohnya Anda telah membuat sebuah aplikasi dengan Visual Studio 2010 dengan nama project Simulasi TA. Jan 22, 2014  CARA MEMBUAT FILE EXE dan SETUP di VB.Net 2010. Sore ini saya akan mencoba berbagi apa yang saya bagaimana membuat file Exe dan Setup pada Visual Basic. Cara ke 2:Dengan cara kedua ini Anda harus membuat file setup.exe untuk aplikasi yang sudah Anda buat, sehingga nantinya aplikasi yang sudah Anda buat akan terinstal dalam sistem komputer seperti ketika Anda menginstal software ke dalam komputer Anda. Resident evil 4 ultimate item modifier.

6 Answers

Assuming your exe is a .NET assembly (you tagged the question as VB.NET), you can reverse engineer your exe using tools such as Reflector.

Jakob ChristensenJakob Christensen

Cara Membuat File Exe Di Visual Basic 6.0

If it's VB.NET you can use the RedGate Reflector tool and the FileDisassemler plugin to generate the source code. That is if the exe was not obfuscated

Cara Membuat File Exe Visual Basic

RadRad

Since you tagged your question vb.net you might be able to retrieve quite some portions of your code using a .NET disassembler. For example try Lutz Roeder's .Net Reflector or MS ildasm which comes with the .NET compiler.

Cara Mengedit File Exe

merkuromerkuro

Use Reflector (assuming .NET) to dissassemble the exe back into code. You will need to create your own class structure, but you can recover the code as any of the supported CLR languages.

stevehipwellstevehipwell

Have you tried Salamander, or one of the many other .net decompilers?

Binary WorrierBinary Worrier
StevenSteven