I am pulling my hair out trying to get all of this to work yet it will not. I have read a ton of posts on here and looked in the help but to no avail.
Here is my code:
Dim fields As New ResultsetFields(3)
fields.DefineField(VoucherDetailFieldIndex.AccountMasterId, 0, "AccountID")
Dim gbc As IGroupByCollection = New GroupByCollection
gbc.Add(fields(0))
Dim dl As New DataTable
Dim dao as new TypedListDAO
The problem is the following:
My fields.DefineField line has the following error: Overload resolution failed because no accessible DefineField can be called with these arguments.
Also, TypedListDAO does not show up in my intellisense.
I have followed the examples both in the forum and in the help but i must be doing something wrong. FYI...using .NET 2.0
Thanks...
Scott