|
-
May 7th, 2001, 08:39 PM
#1
array to sub
Hi,
i wonder how can i use array as a value to be sent to sub
like:
public sub (array)
...
end sub
i need the syntax as well.
TIA
-
May 7th, 2001, 10:35 PM
#2
Re: array to sub
say you want to sent array of string
publib sub test(s() as string)
..... code
end sub
call the sub, like this
dim s() as string
redim s(10) 'set to 11 elements
test(s)
HTH
cksiow
http://vblib.virtualave.net - share our codes
-
May 9th, 2001, 04:35 PM
#3
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
|