|
-
Aug 31st, 2000, 01:15 PM
#1
Thread Starter
Lively Member
i'm retriving some data using getrows...
but i'm using a variant array.
I'm wondering if i can use for strings,numbers,boolean
-
Apr 20th, 2001, 05:21 PM
#2
New Member
I also could't use string for getrows.
Is it possible??
-
Apr 20th, 2001, 05:33 PM
#3
Hyperactive Member
Not that I know of. Some functions require a Variant into which they will put an array i.e.
Dim varAry as variant ' Variant to contain an array
Note that there is a difference between the above DIM and an array of variants i.e.
Dim aryVar () as variant.
http://www.vbcompare.com
-
Apr 20th, 2001, 05:55 PM
#4
New Member
In this case (with Getrows), are there any difference between
Dim varray as variant
and
Dim varray() as variant.
Both works fine for me.
-
Apr 20th, 2001, 06:03 PM
#5
Hyperactive Member
It seems to be up to the function. I remember that a VB DLL called from ASP could handle DIM varARY as variant but not DIM aryVar() as variant (or was it the other way around).
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|