VBGamer |
|
RE: Creating Object (Late vs Early binding) Chris (0 replies, 0 views) (2000-May-8) There is something worse you can do:
Dim Dx as object
set dx = new Directx7
that kills. Avoid doing it at all costs (for the most part) first of all, its slow (makes a dif of about 30-40 fps!) second of all, you don't get the vb helper popup menu. There are some cases where you would do this, but try not to. HTH |