I'm trying to use only the suggested ways to interfere with the controls on my forms.
Here is a specific question:
I need to AddHandles during Runtime. Actually I do that from a module like:
vb Code:
For Each g As usrGram In MainForm.GramList AddHandler b.PingerPing, AddressOf g.Ping_zeichnen 'b as an ObjectType with a Event called PingerPing Next
Is that the recommended way or should I try to move that code into the class of the Form (using an Event to trigger it)?




Reply With Quote