CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: De-Compiler

  1. #1
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    De-Compiler

    I know someone that has written a program using 16-bit vb, but he has lost his source code. It uses VBRUN200.dll, so I assume it is version 2. Does anyone know if it is possible to de-compile it?

    Normally, of course, us developers do not want others to be able to get our source, but this is not a normal situation.


    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

  2. #2
    Join Date
    Feb 2000
    Location
    london
    Posts
    16

    Re: De-Compiler

    As far as I know the only was you can de-compile a program is viewing it in assembler language. This is because when we program we use labels to identify other part of program which we want to jump to. when you dis-assmble a program you loose all this labels that make any code understandable.

    Best of luck
    ivan


  3. #3
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    Re: De-Compiler

    Technically speaking, the earlier versions of vb were never truly compiled; they were only translated into an internal code. So there would not be assembly language to look at, at least not the important stuff.

    This post is the first post I have made to this forum; I have posted about 800 posts to the VC forum. I have been programming in Microsoft C since before the existence of VB. I am nearly certain that VB was never compiled into machine language until version 5 or 6.

    I have written programs in vb version 3 or thereabouts and the program runs so slow it might have taken all night. So I have switched to vc to do the programming and vc did more work but took about half a minute. I assume that the compileing capability of current vb is competitive with vc.



    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

  4. #4
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    Re: De-Compiler

    There is a shareware decompiler at http://www.geocities.com/rayrxu/vbdownload.html I haven't tried it, but it might be what you're looking for.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured