System.MissingMethodException Method not found: 'Void dll.set_GridData(Infragistics.Win.UltraWindGrid.UltraGrid)'
New DiscussionHello!
I using Visual Studio 2015 and Infragistic 2014.
I have a Class Library project, and a window form project references to dll of Class Library project.
In Class Libray project, i have a class with this property method as below:
Public Class GridView
Private Shared grdData As UltraGrid
Public Shared Property GridData() As UltraGrid
Get
Return grdData
End Get
Set(ByVal value As UltraGrid)
grdData = value
End Set
End Property
End Class
In window form project, i have a ultragrid with name grdData , and i use as below:
GridView.GridData = grdData
But the exception appear:
An unhandled exception of type ‘System.MissingMethodException’ occurred in System.Windows.Forms.dll
Additional information: Method not found: ‘Void QCRT.Carrier.GridView.set_GridData(Infragistics.Win.UltraWinGrid.UltraGrid)’.
=> How to grant a Ultragrid into Ultragrid in Class Libray project by Visual Studio 2015?
*Note: I alway using that method good in Visual Studio 2010, 2008, 2005.
Thank you so much!
Sign In
to post a reply
Replies
Discussion created by
Favorites
Replies
Created On
Last Post
Discussion created by
Favorites
0 Replies
3 Created On
Jun 20, 2016 Last Post
9 years, 9 months ago