[ad_1]
From my understanding, VBA programmers often refer to Class_Initialize and Class_Terminate as “constructor” and “destructor”. However, it turns out that I can’t even use Me to access the class methods in these constructor and destructor. Is it normal?
For example:
Private Sub Class_Initialize()
Call Me.Init(...)
End Sub
Private Sub Class_Terminate()
Call Me.Deinit(...)
End Sub
[ad_2]