Results 1 to 5 of 5

Thread: Copy an array *SOLVED*

Threaded View

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2000
    Location
    Manchester NH
    Posts
    833

    Copy an array *SOLVED*

    is there is easier way to copy array values?

    dim Arry() as string

    redim arry(3)

    arry(1)="Jim"
    arry(2)="Bob"
    arry(3)="Harry"

    Dim NewArry() as string

    redim newarry(ubound(arry))

    for a= 0 to ubound(newarry)
    newarry(a)=arry(a)
    next a
    Last edited by kurtsimons; Nov 11th, 2002 at 06:22 PM.
    Kurt Simons
    [I know I'm a hack but my clients don't!]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width