Following is a snipped that will get you started quickly:
Imports Nevron.Nov.Diagram
Imports Nevron.Nov
Imports Nevron.Nov.Windows.Forms
Imports Nevron.Nov.UI
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' TODO: Apply license for redistribution here. You can skip this code when evaluating NOV.
NLicenseManager.Instance.SetLicense(New NLicense("LICENSE KEY"))
' Install Nevron Open Vision for Windows Forms
NNovApplicationInstaller.Install(NDiagramModule.Instance)
' create a drawing view
Dim drawingView As New NDrawingView
' host the drawing view
Dim host As New NNovWidgetHost(Of NDrawingView)(drawingView)
host.Dock = DockStyle.Fill
' add the host in the form controls
Controls.Add(host)
End Sub
End Class
By the way we are also working on providing both examples and help snippets in VB too
Best Regards,
Nevron Support Team