A
Aaron Ackerman
I want to be able to do the following in a single line.
newDataSetRow.AdditionalHours = if
IsDBNull(vdsPublisherLocal.Tables("CaseInstance").Rows(i).Item("AdditionalHo
urs")) then 0 end if
if the value is null I want to put a valid value in place of the dataset
field, how can i do this?
newDataSetRow.AdditionalHours = if
IsDBNull(vdsPublisherLocal.Tables("CaseInstance").Rows(i).Item("AdditionalHo
urs")) then 0 end if
if the value is null I want to put a valid value in place of the dataset
field, how can i do this?