GeoffS Level: VB Lord

 Registered: 29-09-2004 Posts: 536
|
Re: VB and .NET
Hi,
.NET Development Tools are packaged in much the same way as the Version 6 Tools were. You can buy the whole lot as Visual Studio, or you can buy the individual development languages. What you do need to remember, though, is that .NET introduced 2 brand new languages when it was first launched, VisualBasic.Net and C#.Net (thats C Sharp.Net). C# is based very much on C++, and VB.Net is based on VB6, BUT, neither of them should be considered as being the next Version (7) for those products. Previous Version increases from Microsoft always provided backwards compatibility with previous versions, these are NEW languages, and although much of the code from previous versions MAY work to an extent you really need to re-write the code. Having said that, it is possible to include the VB6 runtime library as a reference in your .NET project and that would then run the VB6 app. But its a bit messy.
To find out about what is available in the .NET Development Environment take a look at http://msdn.microsoft.com/vstudio/
For an interesting overview of how to move code from VB6 to .NET see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvbpj01/html/gs0601.asp
____________________________
multi-tasking - the ability to hang more than one app. at the same time.
|