Hello
I have a form in a very large project that suddenly generated a series of errors that I can't overcome... one of them is the following:
Dim dt1 As DataTable
Dim myrows1 As DataRow() = dt1.Select("a=1")
i have a message
Too many arguments to 'Sub [Select]()'.
but, if i do the same on a class
Function teste()
Dim dt As DataTable
Dim myrows As DataRow() = dt.Select("a=1")
End Function
everything is fine
can you understand this?
Can you help?
Thanks
Visual studio 2022
I have a form in a very large project that suddenly generated a series of errors that I can't overcome... one of them is the following:
Dim dt1 As DataTable
Dim myrows1 As DataRow() = dt1.Select("a=1")
i have a message
Too many arguments to 'Sub [Select]()'.
but, if i do the same on a class
Function teste()
Dim dt As DataTable
Dim myrows As DataRow() = dt.Select("a=1")
End Function
everything is fine
can you understand this?
Can you help?
Thanks
Visual studio 2022