Updates
Latest Tweet
What's New?
Check out for latest innovation, a computer based training video collection
Like this Page
Visual Basic 2005 Programmer's Reference (Programmer to Programmer) Review by John Madison
Slightly Problematic.
I was somewhat frustrated that the chapter dealing with structures and classes said that... Classes are faster when dealing with arrays... Yet there was no example of how to use classes with arrays... And for me, I don't see any other way I would want to use classes.
For example... I was trying to make a layer system for an image manipulation program.
Code such as:
DIM layers(10) as new bitmap
So in order to get layers I had to resort to 3, 3dimensional arrays.
RED(x,y,layer number) etc.
I am sure the book is only frustrating to me because I used it mostly for the graphics section and for code tailored to manipulation of graphics.
I am sure this book is all fine and dandy if you are reading it with no particular focus in mind. But, if you are reading a chapter and then immediately try to apply it to a specific situation, you may come into problems that the book does not address.
But I guess that is how programming works. Even if you know what you are doing you still run into problems when you take your idea from... idea to actual programming.