A
Anil Gupte
What is wrong with this?
Dim strFindMax As String = "max(ProfileID)"
Dim drFindMax As DataRow() = DSet.Tables("Profiles").Select(strFindMax)
I get an error saying strFindMax does not evaluate to a Boolean. What I
really want to do is
Dim intFindMax As Integer = DSet.Tables("Profiles").Select(strFindMax)
Same thing wth Sum. Any ideas on how I can do this, or if there is any
other way?
Thanx,
Dim strFindMax As String = "max(ProfileID)"
Dim drFindMax As DataRow() = DSet.Tables("Profiles").Select(strFindMax)
I get an error saying strFindMax does not evaluate to a Boolean. What I
really want to do is
Dim intFindMax As Integer = DSet.Tables("Profiles").Select(strFindMax)
Same thing wth Sum. Any ideas on how I can do this, or if there is any
other way?
Thanx,