.NET
vbnet.txt
Associated article: Mar02: Programmer's Toolschest
Tags: .NET
Published source code accompanying the article by Lauren Hightower in which she examines Microsoft's Visual Basic.NET, better known as VB.NET.
Examining VB.NET
by Lauren Hightower
Example 1:
For I = 0 to 5
Dim j as Integer
J = I
Next
Msgbox J
Example 2:
(a)
Dim rsRecordset as New ADODB.Recordset
(b)
Dim rsRecordset as Object
Set rsRecordset = CreateObject("ADODB.Recordset")
Example 3:
(...


