Quote Originally Posted by Pino
@Rhino,

Is it not true that classes in vb6 are slow?
Based on many performance tests that I have done, yes they are slow. Here's the order from fastest to slowest that code is executed:

.bas modules
.frm form modules
.cls class modules

That's why I typically use regular modules in my projects cause the code is executed so fast. And some of them are even reusable.