M
mcp6453
If you were to start learning Word VBA today, what book would you buy?
Why? Simply that the VB/VBA successfully hides the operation of pointers
from the programmer. And I feel strongly that for the programmer to
understand what's going on behind those Set statements in VB/VBA a little
messing about with pointers is essential.
Malcolm Smith said:Jonathon
The Set statement is something that works on a pointer and not an object.
One can't see the object at all. The indirection is done for you so
people can get puzzled by this.
Malcolm Smith said:I know we have.
An instance is exactly that; an instantiation of a class, i.e. an
object. The pointer points to the instance.
Anyway, take up my challenge. Write a simple linked list and
then tell me how it was done without pointers? How will one
keep track of each instance?