Hi,

Implementing a simple MVC in vb. The controller instance creates and holds instances of the model and view:
Code:
Public Class Controller
    Public Property myModel As Model
    Public Property myView As View

    Public Sub New()
        Me.myModel = New Model(Me)
        Me.myView = New View(Me)
    End Sub
The View and Model classes' constructors look like as follows:...