Guest User

Untitled

a guest
Jan 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. AddHandler button1.Click, AddressOf ButtonPlusClick
  2.  
  3. Delegate Sub MySubDelegate(ByVal container As Panel, ByVal nseq As Integer)
  4. Dim msd As MySubDelegate
  5. msd = AddressOf ButtonPlusClick
  6. msd.invoke(Panel1, 3)
  7.  
  8. [TextBox] [+]
  9. [TextBox] [+]
  10. [TextBox] [+]
Add Comment
Please, Sign In to add comment