VB1 Decompiler ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Maxime B.

    VB1 Decompiler ?

    I have to modifie an old Visual Basic 1.0 application and we can't
    find the source code. Someone knows if a decompiler exists for VB1?
  • SFB

    #2
    Re: VB1 Decompiler ?

    Without hints like debug text, the best that can be done is the machine
    language in some pretty form. Even the simplest of assemblers uses symbolics
    so raw machine instructions are almost worthless. Optimizing compliers are
    killers as they do things that obscure logic like moving constant operations
    outside of loops, embedding constants in instruction streams. etc.

    A decompliier almost by definition can't exist without some form of the
    source. Modern compiler suites have a unique front end for each language
    generating an intermediate text that drives a common optimizing code
    generation back end.

    Find a disassembler on the net and see for yourself an .exe is an .exe
    regardless of the original language.

    "Maxime B." <gibmax@msn.com > wrote in message
    news:63f75f7f.0 311270713.650ca 23b@posting.goo gle.com...[color=blue]
    > I have to modifie an old Visual Basic 1.0 application and we can't
    > find the source code. Someone knows if a decompiler exists for VB1?[/color]


    Comment

    Working...