Hey Guys,
I am using adodb.parameter objects to insert and update records in a table (MS Access), and I was just wondering if you guys have a better way of setting the parameter objects to Nothing instead of typing the following for twenty times.
Example:
Set paraProdNo = nothing
Set paraProductName = nothing
.
.
.
Set paraDate = nothing
I have about thirty parameters objects and I try to save space.
Thanks in advance!