|
-
Dec 25th, 2005, 01:48 PM
#1
Thread Starter
Hyperactive Member
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:
X=0
Set FS = CreateObject("Scripting.FileSystemObject")
Set inFile= FS.GetFile("test.txt").OpenAsTextStream(1, -2)
Do While Not inFile.AtEndOfStream
Redim Preserve arrLines(X, 12)
tmp = inFile.Readline
X=X+1
Loop
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
-
Dec 25th, 2005, 02:21 PM
#2
Re: How to redim a two dimensional array
When you use Preserve to redim an dynamic multidimensional array you can only resize the last dimension and can not change the lower bounds. If you try to will generate an error.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Dec 25th, 2005, 10:37 PM
#3
Thread Starter
Hyperactive Member
Re: How to redim a two dimensional array
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|