<-- Previous || Up || Next -->

Copy Variant Vector Function
Array Manipulations Class

Public Function CopyVariantVector( _
      ByRef rTo() As Variant _
    , ByRef vFm() As Variant _
    ) As Boolean

Copy a one-dimensional Variant array to another Variant array.

Summary:
     rTo          vFm
    +----+       +----+
    | 12 |  <--  | 12 |
    +----+       +----+
    | WV |       | WV |
    +----+       +----+
Example:
    Assuming
       Static avarIn(0 To 45) As Variant
       avarIn(1) = "Smith"
       Dim avarOut() As Variant
    for example
       CopyVariantVector(avarOut(), avarIn()) = True
See also:
    CopyVariantVectorDirect Function (direct-copy version)
    CopyVariantArray Function (more flexible version)
    CopyVariantMatrix Function (for two-dimensional arrays)
    CopyVariantCube Function (for three-dimensional arrays)
rTo: Destination array that will receive a copy of array vFm. This function will attempt to re-dimension rTo so that it has the same dimensions as vFm. It will ignore errors during that re-dimension so that rTo can be a Static array. If rTo is Static, it must be one-dimensional and have the same upper and lower bounds as vFm.
vFm: The one-dimensional array of Variants that will be copied to rTo. vFm can be either Static or dynamic. If vFm is dynamic, it must be dimensioned before being passed to this function.
Note: Function makes a temporary copy of the source array so that rTo and vFm can be the same.
Return value: Function currently returns True in all cases.
v1.2 Change: Changed to allow rTo to be Static by making the function ignore errors that occur while re-dimensioning the destination array rTo.

Return to ENTISOFT Home Page

Copyright © 1999-2005 Entisoft