Killer42 : I used to use Global in VB5 and earlier, but have since converted over to using Public. I still have code which says Global, because it was written in an earlier version. Both seem to work just fine, and I don't think I've heard of Option Private Module before.
  1. there are no more Global in after VB6.
  2. if your program is small and works well, you are right that public-private-global do the same thing. is just the range those variable
...