Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

View Source Code

Status
Not open for further replies.

jmprice

Programmer
Jan 24, 2005
8
US
I downloaded this program. I was written in VB. I know it was. THe only thing I got is an Install.exe then the actual application. Is there any way to view the source code, I tried opening it in VB. Thats as far as I got before I turn to you guys

Thanks.

"What you don't understand, you can make mean anything"
-Chuck Palahnuik
 
No, if the program is compiled, the source code isn't there. There are theoretically some programs to disassemble a program written in VB to source code, but I haven't tried any.

Lee
 
You could always learn Assembly Language...
(Just Kidding... There IS a reason for compilers ;-))

When the Source is compiled, everything that makes it legible as "VB Source" is gone... out the window...

The compiler takes all of your variables, functions, loops, and what not, and turns them into memory offsets, and there is no way to reverse the process...

The source code is just an easy way to write a program so you don't have to count bytes, and remember all the offsets, ect...

Visit My Site
PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
 
There are code decompilers out there, but the code they produce won't be anything that you can use -- it'll be un-commented assembly language, or maybe generic C code with variable names like "A" "B", etc.

And since you're asking this question on a VB forum, it's not likely you've ever done anything like this. You've got probably a good year's worth of studying ahead of you if you want to understand what the decompiler is producing.

Chip H.


____________________________________________________________________
Click here to learn Ways to help with Tsunami Relief
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top