Search For Knowledge

Google

Monday, June 18, 2007

Code to check if a parameter exists in DataTable or not.

code:
on error resume next
val=DataTable(”ParamName”,dtGlobalSheet)
if err.number<> 0 then
‘Parameter does not exist
else
‘Parameter exists
end if

No comments: