Giter Club home page Giter Club logo

vb6tocsharp's Introduction

VB6 To C#

A VB6 based VB6 -> C# 2017 converter.

Usage

Free to use. Free to fork. Free to contribute. Free to ask about. Free to sell. Free to sell under your own name... Free to do just about anything except say I can't (See LICENSE).

Quick Start

  1. Open the file prj.vbp, start the program (Requires the VB6 IDE).
  2. Enter some config values into the Config form via the button.
  3. Now that you have selected your project, click the SCAN button. This helps the converted know the difference between Methods without parenthesis and variables/constants. It also builds a full list of imports (which can be cleaned up in the VS 2019 IDE via ^K^E).
  4. If you want, click SUPPORT to generate the basic project support structure.
    • Alternatively, the files VBExtension.cs and VBConstants.cs could be copied directly out of the project root and included somewhere else.
  5. Then, enter a filename and click Single File to try to convert the file you enter beside it.

If you want to convert the entire project, simply click ALL, and it will do the scan, support generation, and entire project conversion off the bat.

NOTE: It might not be fast, but it's faster than doing it manually!

How Do I ...?

There are a lot of questions when it comes to conversion. If you just want to know the way this converter deals with specific patterns, please see the How Do I ...? page in our wiki.

Whether you use this converter or not, we give our solution to commonly encountered conversion puzzles. Our solutions are quick, to the point, and don't generally use a lot of programming or context overhead. While they may rely on our extension module, all of it is native C# code, and, generally, fairly similar to what you did int VB6.

Requirements

Converter requirements

  • The converter runs in the VB6 IDE. You know, the IDE of the program you're trying to convert.

Converted program requirements

  • Visual Studio supporting some relatively modern version of C#. Or alternate.
  • Visual Basic Power Packs 2005 (v3.0)
    • Allows use of Standard VB functions like Mid, Trim, Abs, DateDiff, etc, directly in C# code.
    • Ensures 99.9% compatibility with VB6 functionality (except for Format...), without the need for a 3rd party, black-box library (it's from MS, so it's a 1st party black box).
    • Easy to iterate off of once it's converted and up-and-running.

Instructions

Please see the wiki for more information on usage.

Design Considerations

  • Simple - Not designed to do a 100% conversion. Just maybe an 80% - 90% of the grunt work.
  • VB6 Based - Because, why not? You have to have a working VB6 compiler if you're converting FROM vb6 anyway.
  • Custom - This was created for a personal project, and hence, is specifically tailored for our use case. But, there isn't any reason why someone couldn't invesitgate the logic and tweak it for any of their own issues.
  • Opportunistic - This code heavily relies on relative uniformity of the VB6 IDE:
    • Spacing is relatively consistent because the IDE enforces it.
    • Keyword capitalization can be guaranteed.
    • We take advantage of the Microsoft Power Packs, and do NOT need to convert most of the core VB6 statements. Further, you can continue to USE statements like DateDiff, Left, Trim as you would in VB. Or, if you prefer, begin to migrate away from them AFTER conversion. We simply pull in Microsoft's library for maximum compatibility, and hence, do not have a large string replace library, nor do we rely as heavily as some converters do on our own DLLs or libraries (we generate a few for ease of syntax, but the end result is pure C# code).
  • Non-assuming - It makes the assumption that the code compiled while in VB, so it doesn't assume that reference it can't resolve aren't going to be found.
  • Universal imports - Imports EVERY code module, just like VB6 did automatically. Make Visual Studio do the work of deciding which ones are used simply by optimizing imports after conversion.
  • C# 2017 - This is a late-comer. There has never been a freeware solution for VB6 -> C#, and now that VB.NET is more or less discontinued, why not?

Known Issues

  • Currently, the converter will often balk at a file that contains the word 'Property' anywhere in it (other than a property declaration). While this is a pain and likely will be fixed, it was encountered towards the end of the projects usefulness (and hence not urgent on the repair list), and where it hindered progress, the variable that contained the word '...Property' was simply renamed temporarily to something like '...Prppty', and then changed back in the converted file.

Down-sides

  • This will not produce code that will compile in its generated form. The last mile is simply the most expensive, and it seemed more expedient to make something get most of the way, and finish the course manually.
  • This isn't the most customizable solution. Unless, of course, you want to dive into a little source code on the converter. But, that's why its available.
  • The resultant code is a mess, stylistically. That's what a modern IDE is for. All the bad formatting can be cleaned up with ^K^D. Unused imports with ^K^E. And, there's a lot of extra {'s and }'s you will probably want to delete.
  • The converter currently is REALLY bad at loop bounds. Sorry, it's one of the pitfalls of a VB6->C# conversion, and there isn't much logic into how it converts. It's tedius, but do a project-wide search for all for loops and manually inspect the bounds.
  • There is an extra method for every event. One for the correct signature, one for the original signature. In most cases, the redundancy is unnecessary, but it provided the easiest conversion. These can be reduced to a single method in most cases (but not all, which is why I don't).

Pluses

  • Do the whole thing or just one file at a time.
  • It's free.
  • You have the source.
  • It's a lot better than doing it all by hand.
  • It will give you a good insight into what's going on, without having to ALL of the manual effort to do a simple conversion.
  • Not a fast conversion, but a strightforward one. Inspect functions such as ConvertSub or ConvertPrototype.
  • Allows inspection of how something is being converted. Don't like the output? Change it.

Extras

  • An albeit slow, but useful VB6 code linter. Root out as much tech debt before even beginning the process.
  • VB6 form to XAML

Contact

  • If you do have any questions, concerns, or simply would like some quick pointers, feel free to open an Issue. I can't guarantee much, but I do try!

vb6tocsharp's People

Contributors

bhoogter avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.