I have a custom user control as part of my "solution".
I load the control twice at runtime on 2 different forms within the same app
Private WithEvents CG As CG.WINDOW
' later
CG = New CG.WINDOW
an event in one of the user controls on one form may execute the event in the other.
very frustrating
how can I completely separate them ?
(this is a VB6 interop user control)
I load the control twice at runtime on 2 different forms within the same app
Private WithEvents CG As CG.WINDOW
' later
CG = New CG.WINDOW
an event in one of the user controls on one form may execute the event in the other.
very frustrating
how can I completely separate them ?
(this is a VB6 interop user control)