Tag: Development

Community

Migrating From VB6 to VB.NET

(Huw Collingbourne) In theory, Microsoft’s Visual Basic .NET should provide an easy path for experienced VB programmers to migrate to the .NET Framework. However, not all VB programmers have been enthusiastic about making the move. VB.NET is so different from Visual Basic 6.0 that even an experience

Community

Iterating a COM Recordset

(Kishore Ramanathan) Some business clients still maintain their legacy COM business components while developing newer ones in .NET. Iterating a recordset involves complex while loops with MoveFirst/MoveNext methods and checking for BOF/EOF. The article will demonstrate how to create an encapsulating

Community

Object Orientation in Python

(Peyton McCullough) Python is a very object-oriented language, which makes it easy to work with. For those of you who may not be familiar with the concept of object-oriented programming languages, Peyton provides a complete, easy-to-understand explanation, and then gives a number of examples that il