Click here to Skip to main content
16,005,206 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
DigiOz Multimedia17-Nov-07 6:40
DigiOz Multimedia17-Nov-07 6:40 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
S.Haris17-Nov-07 7:40
S.Haris17-Nov-07 7:40 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
DigiOz Multimedia17-Nov-07 9:10
DigiOz Multimedia17-Nov-07 9:10 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 [modified] Pin
Michael Davey 117-Nov-07 17:57
Michael Davey 117-Nov-07 17:57 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
Michael Davey 117-Nov-07 17:59
Michael Davey 117-Nov-07 17:59 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
supercat917-Nov-07 9:46
supercat917-Nov-07 9:46 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
DigiOz Multimedia17-Nov-07 14:39
DigiOz Multimedia17-Nov-07 14:39 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
Luc Pattyn17-Nov-07 15:05
sitebuilderLuc Pattyn17-Nov-07 15:05 
Hi,

in general a decompiler returns a synthetic source code that, when compiled again,
results in the same EXE/DLL. It will not include parts the compiler did not need,
such as comments, code snippets ignored by preprocessing, redundant statements, etc.

And it will not necesserally look like the original:
- variable names may be fictitious (local variable names typically are not present in EXE);
- program flow control may look different (for, while, ...) but will be equivalent
- the optimization may have moved lines around;
etc.

A .NET decompile will resemble the original much closer, since there is a lot of metadata
in the assemblies; decompiling a debug build may look very similar to the original,
except for the comments. In fact, compile then decompile is one way to translate a
source file to another programming language (e.g. VB.NET to C#), again loosing comments.

Smile | :)



Luc Pattyn [Forum Guidelines] [My Articles]


this months tips:
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use PRE tags to preserve formatting when showing multi-line code snippets


GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
supercat917-Nov-07 20:08
supercat917-Nov-07 20:08 
GeneralRe: Retriving source code from a exe file which was developed in visual basic 6 Pin
Luc Pattyn18-Nov-07 0:10
sitebuilderLuc Pattyn18-Nov-07 0:10 
Questiondetermining selections from multiple selection listbox Pin
rmarma16-Nov-07 9:40
rmarma16-Nov-07 9:40 
QuestionClipboard to MS Word Pin
New_Coder16-Nov-07 7:08
New_Coder16-Nov-07 7:08 
AnswerRe: Clipboard to MS Word Pin
Paul Conrad28-Nov-07 15:19
professionalPaul Conrad28-Nov-07 15:19 
GeneralRe: Clipboard to MS Word Pin
New_Coder29-Nov-07 4:09
New_Coder29-Nov-07 4:09 
Question'Finalize' questions (any way to log 'finalize' events?) Pin
supercat916-Nov-07 6:52
supercat916-Nov-07 6:52 
AnswerRe: 'Finalize' questions (any way to log 'finalize' events?) Pin
Luc Pattyn16-Nov-07 8:44
sitebuilderLuc Pattyn16-Nov-07 8:44 
GeneralRe: 'Finalize' questions (any way to log 'finalize' events?) Pin
supercat916-Nov-07 9:48
supercat916-Nov-07 9:48 
GeneralRe: 'Finalize' questions (any way to log 'finalize' events?) Pin
Luc Pattyn16-Nov-07 10:22
sitebuilderLuc Pattyn16-Nov-07 10:22 
GeneralRe: 'Finalize' questions (any way to log 'finalize' events?) Pin
supercat916-Nov-07 11:27
supercat916-Nov-07 11:27 
Question'Stream' questions: Pin
supercat916-Nov-07 6:40
supercat916-Nov-07 6:40 
AnswerRe: 'Stream' questions: Pin
bob_up17-Nov-07 4:50
bob_up17-Nov-07 4:50 
GeneralRe: 'Stream' questions: Pin
supercat917-Nov-07 10:07
supercat917-Nov-07 10:07 
QuestionHow To Save A DataGrid To A Text File Pin
FreakNikon16-Nov-07 5:08
FreakNikon16-Nov-07 5:08 
AnswerRe: How To Save A DataGrid To A Text File Pin
cstrader23216-Nov-07 5:28
cstrader23216-Nov-07 5:28 
QuestionProperty Change Detection Beyond the Event Pin
nlarson1116-Nov-07 4:58
nlarson1116-Nov-07 4:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.