November 2001
Intermediate to advanced
512 pages
9h 10m
English
VB7 makes some significant changes in the ways you handle arrays and files and completely changes error handling. All of these changes make your programming a lot easier than it was before.
In VB7, all arrays are zero based. This is actually the same as in previous versions of Basic, but it was seldom emphasized. In VB6, if you wrote the following
Dim x(10) As Single
then you assumed that the x array had elements from 1 to 10, but it actually always included a zero element as well. In other words, the x array actually had 11 elements. This remains true in VB7.
However, we can also now move through arrays to be in line with the style used in C, C++, C#, and Java.
Dim Max as Integer Max = 10 ...
Read now
Unlock full access