How to ask for a field if it

try with:
Code:
Dim myARSRow As New DataRow
Dim myCQRow As New DataRow
Dim myPAMRow As New DataRow
:D
 
before checking if your row isNull you must do :

Code:
myRow = myDataSet.Tables(number/name of table ).NewRow()

because your row doesnt "know" where to look ( which table,dataset..... )
:D
 
Last edited by a moderator:
if you want to check is your row is Nothing try with:

Code:
If myPAMRow Is Nothing Then
....
....
End If
 
Back
Top