VB and VB.NET - Difference
This is an old issue but very frequently we come across the same query. Particularly when we require the application (OCX) migration from VB. What are some of the basic differences between VB & VB.NET? Answer: The following section enlists some of the issues I came across when encountered with a similar migration requirement. These differences are mostly in reference to VS2005. 1. VB.NET provides managed code execution that runs under the Common Language Runtime (CLR) resulting in robust, secure and stable applications. All features of the .NET framework are readily available in VB.NET. 2. VB.NET is entirely object oriented. This is a major addition that VB6 didn’t have. 3. The .NET framework comes with ADO.NET, which follows the disconnected paradigm, i.e. once the required records are fetched the connection no longer exists. It also retrieves the records that are expected to be accessed in the immediate future. This enhances Scalability of the...