从可执行文件中检索代码
由于一些灾难,我的源代码丢失了。
我现在只有压缩文件和软件安装程序。
因此,我想从我的软件中检索我的代码,以根据当前的市场趋势对其进行改进。 该软件以VB为前端,Access为后端。
请给我解决方案,以便我可以再次构建该软件,因为从一开始就不可能再次构建该软件。
Due to some disasters, my source code is lost.
I now have only the cabinet file and the installer of my software.
So, I want to retrieve my code from my software to improve it as per current market trends.
The software has VB as a front end and Access as back end.
Please give me the solution, so that I can build that software again, because from beginning this is impossible to build that software again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多代码反编译软件,其中一个例子是 .NET Reflector。
There is a lot of code decompilation software, with the one example being .NET Reflector.
.Net Reflector: http://www.reflector.net/
但它还不够好,你可能想要像 FileGenerator For Reflector 这样的插件: http://filegenreflector.codeplex.com/
我以前做过,你可以还需要编辑你的代码作为逆向工程不够好,但最多在半小时内应该可以使其能够通过。或者,如果你很幸运并且你的代码没有那么复杂,你可能会得到与你所写的完全一样的代码
.Net Reflector: http://www.reflector.net/
But it's not that good enough, you might want a plugin like FileGenerator For Reflector: http://filegenreflector.codeplex.com/
I did it before and you may still need to edit your code as the reverse engineering is not good enough, but it should be OK within half an hour max to make it be able to complied. Or if you are lucky and you code not that complicated, you might just get the one exactly as you wrote