Is there a difference between defining a variable as Global or defining it as Public?
Ex.
Global giEmpNbr as integer
Public giEmpNbr as integer

I think Public has replaced Global but are there any differences when concerned with memory?

Should I be concerned with deallocating memory in VB? Or does it just happen automatically?