May 22, 2004
ok so the With Statement can handle references to classes, but it cant handle
references/pointers to structs (you have to dereference it). This is annoying if
i create a class and later change it to a struct, i have to change all my
with(foo), where foo is now a pointer to a struct, to a with(*foo)