Re: Calling A button part 2
In your class modules you'll need to specify where your buttons are located. For example if you have Button1 and Button2 in Form1, you can work with one button in one class and have Form1.Button1.Visible = False, and Form1.Button2.Visible = False in another class. I wouldn't necessarily consider them events, but more like modifying the properties to the buttons. Triggering events are possible with different classes/modules but personally I use functions / subs rather than trigger what code is within my events to my objects.