Results 1 to 2 of 2

Thread: Clearing larg 2D user type arrays?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 2006
    Posts
    172

    Clearing larg 2D user type arrays?

    What is the best way to clear a larg 2D user type array?
    Something as big as about PathClosed(100000000,100000000)

  2. #2
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    Re: Clearing larg 2D user type arrays?

    For a Ststic array:
    Code:
    Erase PathClosed
    and if your array was dynamic
    Code:
    Redim PathClosed (#####,#####)
    ##### represents whatever numbers you are using
    Last edited by randem; Oct 2nd, 2007 at 04:02 PM.

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