Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > how to dynamic assign two dimensions array size

Reply
Thread Tools

how to dynamic assign two dimensions array size

 
 
=?Utf-8?B?Sm9l?=
Guest
Posts: n/a
 
      03-15-2007
how to dynamic assign two dimensions array size

say
Dim myArray(x, y) as Integer
 
Reply With Quote
 
 
 
 
Alexey Smirnov
Guest
Posts: n/a
 
      03-15-2007
On Mar 15, 3:13 am, Joe <J...@discussions.microsoft.com> wrote:
> how to dynamic assign two dimensions array size
>
> say
> Dim myArray(x, y) as Integer


There is the ReDim statement to declare the size of the array.

Dim myArray(,) As Integer
ReDim myArray(5,5)


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Probelem about image size and dimensions gongcheng_g@hotmail.com Python 8 03-23-2006 05:13 PM
How to set X and Y dimensions of a custom page size on HP Laserjet 8150. Joel Computer Support 0 01-19-2005 09:05 AM
Displaying a SWF at it's original size without setting the dimensions Laphan ASP General 3 12-30-2004 05:31 PM
Popup Window Size - to Match Photo Dimensions Kenny ASP .Net 1 12-13-2004 07:07 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57