I've seen this question asked about a hundred times, so I'm going to answer this once & for all.
How to convert exe's to VB Source Code?!It isn't
converting... 1st of all. Which is probably why you are reading this, & not having much luck finding any results else where. You see, program code is ran through a compiler. The compiler will
transform your source code into what is called machine language. This is in the form of a binary executable file (your exe).
With Visual Basic, you can get that exe turned back into Visual Basic code through a
decompiler.
Of the ones that I've seen available, they are all commercially produced, meaning that you have to pay for them.
An example can be found
at vbrezq.com.
Hopefully this answers your question!