In VS Express 2008, when I add a dockable window using a template, I am encountering the error "UID is ambiguous in the namespace ESRI.ArcGIS.esriSystem." This occurs in the following autogenerated routine which is called from the OnClick event:
Private Sub SetupDockableWindow()
If m_dockableWindow Is Nothing Then
Dim dockWindowManager As IDockableWindowManager
dockWindowManager = CType(m_application, IDockableWindowManager)
If Not dockWindowManager Is Nothing Then
Dim windowID As UID = New UIDClass
windowID.Value = DockableWindowGuid
m_dockableWindow = dockWindowManager.GetDockableWindow(DockableWindowGuid)
End If
End If
End Sub
End Class
Any ideas on how to fix this namespace issue?