
Addressing "e" in another Instance
in fmemu I have:
Public Sub Vt1_KeyPressEvent(ByVal sender As Object, ByVal e As
AxDartVt._IVtCtrlEvents_KeyPressEvent) Handles Vt1.KeyPressEvent
and events occur.........
Then I am using this in other forms.....
Public Shared Function getInstance() As fmemu
Return m_Me
End Function
then in another form I say....
fmemu.getInstance.Vt1_KeyPressEvent(fmemu.getInstance.Vt1, e)
How do I address "e" in the addressing form? Is how I am addressing the
original form correct? VS seems to take it ok.