
Signature
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
> > I am trying to add an item to a System.Array and I get an error:
> >
> > BC30456: 'add' is not a member of 'System.Array'.
> >
> > My code is:
****************************************************************************
****************
> > Dim parameters As SqlParameter () = { _
> > New SqlParameter("@ClientID",SqldbType.VarChar,20), _
[quoted text clipped - 5 lines]
> > parameters.add(New SqlParameter("@ApplicantID",SqldbType.Bigint))
> > end if
****************************************************************************
***************
> > If this is not the way, how do I insert a new item in the array?
> >
[quoted text clipped - 5 lines]
> iterating thru the values (by default it creates buckets up to the
> capacity, which is like 16 I believe by default)....
I could, but I am using it sparingly and it is already set up in my library
as a normal array. The Redim Preserve should solve my problem.
Thanks,
Tom