Ok you use a class to store data in private, but do I need to create an object of this class to set the values ?

dim ObjAuth as Authorisations

ObjAuth.Key_Num_Dossier = 123

Or do I just call the class directly

Authorisations.Key_Num_Dossier = 123
or
Authorisations.Key_Num_Dossier.set(123)



Thanks