Carlos,
| Again a distinction between language and product name ;-)
FWIW:
http://www.panopticoncentral.net/archive/2005/06/13/9544.aspx
| Just curious, was there any difference between VB 7.0 and VB 7.1? I know
| that the .NET Frameworks have some differences, and the IDEs too, but the
| languages?
VB 7.1 gained the left shift and right shift operators,
Dim i As Integer
i = i << 2 ' shift left 2 bit positions
i = i >> 2 ' shift right 2 bit positions
VB 7.1 also gained defining the type inline on the For & For Each
statements.
For Each item As Object In collection
...
Next
For index As Integer = 0 to 10
...
Next
For details on the above 2 items see:
http://msdn.microsoft.com/library/d...7/html/valrfWhatsNewInVisualBasicLanguage.asp
For the plethora of additions to VB 8.0 see:
http://msdn2.microsoft.com/library/we86c8x2(en-us,vs.80).aspx
Hope this helps
Jay
message | Hi Herfried,
|
| Again a distinction between language and product name ;-)
|
| Just curious, was there any difference between VB 7.0 and VB 7.1? I know
| that the .NET Frameworks have some differences, and the IDEs too, but the
| languages?
|
|
| --
| Best regards,
|
| Carlos J. Quintero
|
| MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
| You can code, design and document much faster.
| Free resources for add-in developers:
|
http://www.mztools.com
|
|
| "Herfried K. Wagner [MVP]" <
[email protected]> escribió en el
mensaje
| |
| > Visual Basic 7.0, Visual Basic 7.1, and Visual Basic 8.0 are the names
of
| > the programming language, Visual Basic .NET 2002, Visual Basic .NET
2003,
| > and Visual Basic 2005 are the product names.
|
|