Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Visual Basic 6 decompiler? [closed]

I lost the source code from one project I did on the company I'm working for and haven't been able to find a Visual Basic 6 decompiler; does that even exists?

I only have the EXE that I've rescued from a user's machine.

like image 808
Rismo Avatar asked Jan 05 '09 18:01

Rismo


2 Answers

For the final, compiled code of your application, the short answer is “no”. Different tools are able to extract different information from the code (e.g. the forms setups) and there are P code decompilers (see Edgar's excellent link for such tools). However, up to this day, there is no decompiler for native code. I'm not aware of anything similar for other high-level languages either.

like image 200
Konrad Rudolph Avatar answered Sep 23 '22 02:09

Konrad Rudolph


http://www.program-transformation.org/Transform/VisualBasicDecompilers

This link provides a lot of resources for VB6 Decompiling, but it seems like it will depend greatly on what you DO have (do you still have the pre-link Object code [EDIT: er... p-code I mean], or just the EXE?) Either way, it looks like there's something, take a look in there.

like image 45
EdgarVerona Avatar answered Sep 27 '22 02:09

EdgarVerona