This was the purpose for .Net - write once, run anywhere. Unfortunately, as we've seen, unless you're writing something remarkably simple, each language has its own nuances that must be observed for your code to work properly. VB6 and VB .Net are not designed to be compatible - Microsoft essentially wrote a new language that was similar on the front end to VB (controls are identical with the addition of a few more) but almost completely different on the back end. MSDN will be your friend on that problem. I've pretty much resigned myself to three languages at this point: C (mostly Linux coding), VB .Net (Windows and some Mono environment stuff) and Java. The problem I have with the nosebleed-high level languages is that they take so much responsibility away from the programmer. I actually prefer to be responsible for the memory I use and then deallocate. I cannot stand errors in my program that point toward a library that I didn't write or implicitly include. I'd love to eventually play with C#, but at the moment, time is not something I've got an abundance of. Perhaps later.