VB Project Source Code

Showing posts with label Delegate tutorial vb.net. Show all posts
Showing posts with label Delegate tutorial vb.net. Show all posts

Monday 8 June 2015

Delegate tutorial vb.net

Delegate tutorial vb.net


Public Class Form1
    Delegate Sub SubStr(ByVal str As String)

    Protected Sub DelegTest()
        Dim FRM As New Form2
        Dim SStr As SubStr = AddressOf FRM.TestCls
        SStr.Invoke("Delegate Run")......