Celia has attended:
Access VBA course
VBA Access
What is the difference between public VB and Private VB
RE: VBA Access
Hi Celia
Private VB means that that part of the code can not be accessed by any other code, thus everything is private.
Public VB means that everything can be accessed by other parts of the code, thus it is public.
Hope this helps
David