M
Mike
Bill,
I think the mite is here:
dt.Columns.Add("valENum", GetType(Long))
that should be a:
dt.Columns.Add("valENum", GetType(Double))
because that is the result of VAL()
Do you have Options Strict On?
You should of gotten a compiler error with the assignmentL
dr("valENum") = Val(dr("ENum"))
--
I think the mite is here:
dt.Columns.Add("valENum", GetType(Long))
that should be a:
dt.Columns.Add("valENum", GetType(Double))
because that is the result of VAL()
Do you have Options Strict On?
You should of gotten a compiler error with the assignmentL
dr("valENum") = Val(dr("ENum"))
--