|
Group: Forum Members
Posts: 3,
Visits: 14
|
I use Visual Basic .NET, and all examples are in C# for .NET
Is there a set of examples for Visual Basic users? I am specifically trying to host a diagram in Windows forms, and am looking for the Visual Basic equivalent of this c# statement:
NNovWidgetHost<NDrawingView> host = new NNovWidgetHost<NDrawingView>(drawingView);
I have this:
Dim host As NNovWidgetHost(Of NDrawingView) = New NNovWidgetHost(Of NDrawingView)
but I do not know how to assign my drawingView variable to it
|