Solid Edge View And Markup Object Library
VMApplication Object
Members 
InsightConnect ActiveX DLL : VMApplication Object
Description
View And Markup Application
Remarks
This object is used to create/get an instance of "View and Markup" application. To use below sample code add reference of iCnct.tlb in VS solution.
Example
Imports System.Runtime.InteropServices

Module Module1

    Sub Main()
        Dim application As InsightConnect.VMApplication = Nothing

        Try
            application = New InsightConnect.VMApplication()
            application.Visible = True
        Catch ex As System.Exception
            Console.WriteLine(ex)
        End Try
    End Sub

End Module
using System;
using System.Runtime.InteropServices;

internal static class Module1
{

    public static void Main()
    {
        InsightConnect.VMApplication application = null;

        try
        {
            application = new InsightConnect.VMApplication();
            application.Visible = true;
        }
        catch (System.Exception ex)
        {
            Console.WriteLine(ex);
        }
    }

}
See Also

VMApplication Members