Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Check if iDate is null 1

Status
Not open for further replies.

besto1a

Programmer
Aug 20, 2006
41
GB
If I have a dataset and one of those columns holds a dateTime dataType, who can i check if a specfic colums is Nul, I've ried everything including:

if dsCases.tbl_EWTCases(0).InterimResponseDate = "" t
if dsCases.tbl_EWTCases(0).InterimResponseDate is Null

nothing seems to work

 
If isDBNull(dsCases.tbl_EWTCases(0).InterimResponseDate ) then

End if
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top