Results 1 to 3 of 3

Thread: How to redim a two dimensional array [RESOLVED]

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2000
    Location
    NJ, USA
    Posts
    326

    Resolved How to redim a two dimensional array [RESOLVED]

    I'm trying to resize a two dimensional array while preserving its contents in VBScript but it crashes with a Type Mismatch error. For some reason on my Redim statement it doesn't like the X variable. Can anyone tell me why, or what it is I'm doing wrong? A regular Redim statement works fine with the X.

    VB Code:
    1. X=0
    2. Set FS  = CreateObject("Scripting.FileSystemObject")
    3. Set inFile= FS.GetFile("test.txt").OpenAsTextStream(1, -2)
    4. Do While Not inFile.AtEndOfStream
    5.     Redim Preserve arrLines(X, 12)
    6.     tmp = inFile.Readline
    7.     X=X+1
    8. Loop
    9. inFile.Close
    Last edited by Chris H; Dec 25th, 2005 at 10:37 PM.
    VB.NET 2005 Express with .Net 2.0
    C# 2010 .Net 4.0

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