Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Public WithEvents PB As New ProjectA.Form1
  2.  
  3. Private Sub arrived() Handles PB.MatchFound
  4. ' stuff to do
  5. end sub
  6.  
  7. public event EventHandler MatchFound;
  8. protected void OnMatchFound()
  9. {
  10. if (MatchFound!= null)
  11. MatchFound(this, EventArgs.Empty);
  12. }
  13.  
  14. ClassBB ClassBB;
  15. MyClassBB = new ClassBB();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement