Home > front end >  In Visual Studio, can I modify forms from the .exe file
In Visual Studio, can I modify forms from the .exe file

Time:11-01

I am a rookie at this which I'm sure this question will show. Someone sent me an .exe file for a Visual Basic application and asked me to update some code. I'm not sure how to do this. When I open Visual Studio, it wants to find the .sln file which I don't seem to have. Is there a way to create the .sln file from the .exe or do I need to ask for the .sln file?

CodePudding user response:

You need the source file that contains the source code.

https://social.msdn.microsoft.com/Forums/vstudio/en-US/535986d2-5fd7-43ea-91b7-10b1234bc0f9/editing-an-executable-file?forum=vseditor

  • Related