473,598 Members | 3,409 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cant assign array values ! ? ! ?

I am so lost on this one.

Dim Ary as Integer = New Integer(4) {0,1,2,3}

FAILS with the error:
Array initializer has 1 too few elements.

So I try
Dim Ary as Integer = New Integer(3) {0,1,2,3}
Since arrays start at 0 (I am thinking)

and I get this error:
Value of type '1-dimensional array of Integer' cannot be converted to 'Integer'.

I can friggin assign values to the array AT ALL ?

What is wrong with this ?

So I guess the question is why dosent this work ?

How can I dimension and assign values ?

Chris
Nov 20 '05 #1
7 2714
If you want an array, you need to declare an array...
( note the () after the Ary )
Dim Ary() As Integer = New Integer(3) {0, 1, 2, 3}

For i As Integer = 0 To Ary.Length - 1

Trace.WriteLine (Ary(i).ToStrin g())

Next
"Chris Wertman" <cw******@yahoo .com> wrote in message
news:14******** *************** ***@posting.goo gle.com...
I am so lost on this one.

Dim Ary as Integer = New Integer(4) {0,1,2,3}

FAILS with the error:
Array initializer has 1 too few elements.

So I try
Dim Ary as Integer = New Integer(3) {0,1,2,3}
Since arrays start at 0 (I am thinking)

and I get this error:
Value of type '1-dimensional array of Integer' cannot be converted to 'Integer'.
I can friggin assign values to the array AT ALL ?

What is wrong with this ?

So I guess the question is why dosent this work ?

How can I dimension and assign values ?

Chris

Nov 20 '05 #2
Yes, and when initializing, you don't have to specify the number of elements
in the array, thus
Dim Ary() As Integer = New Integer() {0, 1, 2, 3}
will work as well.

"Jim Hughes" <NO*********@Ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
If you want an array, you need to declare an array...
( note the () after the Ary )
Dim Ary() As Integer = New Integer(3) {0, 1, 2, 3}

For i As Integer = 0 To Ary.Length - 1

Trace.WriteLine (Ary(i).ToStrin g())

Next
"Chris Wertman" <cw******@yahoo .com> wrote in message
news:14******** *************** ***@posting.goo gle.com...
I am so lost on this one.

Dim Ary as Integer = New Integer(4) {0,1,2,3}

FAILS with the error:
Array initializer has 1 too few elements.

So I try
Dim Ary as Integer = New Integer(3) {0,1,2,3}
Since arrays start at 0 (I am thinking)

and I get this error:
Value of type '1-dimensional array of Integer' cannot be converted to

'Integer'.

I can friggin assign values to the array AT ALL ?

What is wrong with this ?

So I guess the question is why dosent this work ?

How can I dimension and assign values ?

Chris


Nov 20 '05 #3
rdi
<you don't have to specify the number of elements in the array>

EXCEPT when you are not specifying the values at the time of creating the
array. In such a case you DO have specify the number of elements ahead of
time. Just something to keep in mind.

public sub test()
dim ary(0) as integer
ary(0) = 1

'to add another element--but this will overwrite previous elements
redim ary(1)
ary(1)=2

msgbox(ary(0).t ostring +vbcrlf + ary(0).tostring ) '<-this will display 0
even though you previously set it to 1

'set it back to 1
ary(0) = 1

'here we add another element while leaving the previous elements untouched.
redim preserve ary(2)
ary(2) = 3

msgbox(ary(0).t ostring + vbcrlf + ary(1).tostring + vbcrlf +
ary(2).tostring )
end sub

--

RDI

(remove the exclamation from the email address)

"Chris Botha" <chris_s_botha@ AT_h.o.t.m.a.i. l.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Yes, and when initializing, you don't have to specify the number of elements in the array, thus
Dim Ary() As Integer = New Integer() {0, 1, 2, 3}
will work as well.

"Jim Hughes" <NO*********@Ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
If you want an array, you need to declare an array...
( note the () after the Ary )
Dim Ary() As Integer = New Integer(3) {0, 1, 2, 3}

For i As Integer = 0 To Ary.Length - 1

Trace.WriteLine (Ary(i).ToStrin g())

Next
"Chris Wertman" <cw******@yahoo .com> wrote in message
news:14******** *************** ***@posting.goo gle.com...
I am so lost on this one.

Dim Ary as Integer = New Integer(4) {0,1,2,3}

FAILS with the error:
Array initializer has 1 too few elements.

So I try
Dim Ary as Integer = New Integer(3) {0,1,2,3}
Since arrays start at 0 (I am thinking)

and I get this error:
Value of type '1-dimensional array of Integer' cannot be converted to

'Integer'.

I can friggin assign values to the array AT ALL ?

What is wrong with this ?

So I guess the question is why dosent this work ?

How can I dimension and assign values ?

Chris



Nov 20 '05 #4
That's what I said, "when initializing, you don't have to specify ...",
read my message.

"rdi" <rd**@writeme.c om> wrote in message
news:O9******** ******@TK2MSFTN GP09.phx.gbl...
<you don't have to specify the number of elements in the array>

EXCEPT when you are not specifying the values at the time of creating the
array. In such a case you DO have specify the number of elements ahead of
time. Just something to keep in mind.

public sub test()
dim ary(0) as integer
ary(0) = 1

'to add another element--but this will overwrite previous elements
redim ary(1)
ary(1)=2

msgbox(ary(0).t ostring +vbcrlf + ary(0).tostring ) '<-this will display 0
even though you previously set it to 1

'set it back to 1
ary(0) = 1

'here we add another element while leaving the previous elements untouched. redim preserve ary(2)
ary(2) = 3

msgbox(ary(0).t ostring + vbcrlf + ary(1).tostring + vbcrlf +
ary(2).tostring )
end sub

--

RDI

(remove the exclamation from the email address)

"Chris Botha" <chris_s_botha@ AT_h.o.t.m.a.i. l.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Yes, and when initializing, you don't have to specify the number of

elements
in the array, thus
Dim Ary() As Integer = New Integer() {0, 1, 2, 3}
will work as well.

"Jim Hughes" <NO*********@Ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
If you want an array, you need to declare an array...
( note the () after the Ary )
Dim Ary() As Integer = New Integer(3) {0, 1, 2, 3}

For i As Integer = 0 To Ary.Length - 1

Trace.WriteLine (Ary(i).ToStrin g())

Next
"Chris Wertman" <cw******@yahoo .com> wrote in message
news:14******** *************** ***@posting.goo gle.com...
> I am so lost on this one.
>
> Dim Ary as Integer = New Integer(4) {0,1,2,3}
>
> FAILS with the error:
> Array initializer has 1 too few elements.
>
> So I try
> Dim Ary as Integer = New Integer(3) {0,1,2,3}
> Since arrays start at 0 (I am thinking)
>
> and I get this error:
> Value of type '1-dimensional array of Integer' cannot be converted to 'Integer'.
>
> I can friggin assign values to the array AT ALL ?
>
> What is wrong with this ?
>
> So I guess the question is why dosent this work ?
>
> How can I dimension and assign values ?
>
> Chris



Nov 20 '05 #5
Hi Chris

Dim Ary as Integer = New Integer(4) {0,1,2,3}


Dim Ary() as Integer = {0,1,2,3}

I hope this helps?

Cor
Nov 20 '05 #6
* cw******@yahoo. com (Chris Wertman) scripsit:
I am so lost on this one.

Dim Ary as Integer = New Integer(4) {0,1,2,3}

FAILS with the error:
Array initializer has 1 too few elements.

So I try
Dim Ary as Integer = New Integer(3) {0,1,2,3}
Since arrays start at 0 (I am thinking)

and I get this error:
Value of type '1-dimensional array of Integer' cannot be converted to 'Integer'.

I can friggin assign values to the array AT ALL ?

What is wrong with this ?


\\\
Dim i() As Integer = {1, 2, 3}
///

- or -

\\\
Dim i As Integer() = {1, 2, 3}
///

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #7
rdi
I DID read your message and I didn't say you were wrong. The OP sounded
like he was new to arrays and I thought he might take
"you don't have to specify the number of elements in the array when
initializing, you don't have to specify" as meaning that he didn't need to
specify the number of arrays anymore.

I meant no offense to anyone and like I said, I wasn't trying to say that
you were wrong.
--

RDI

(remove the exclamation from the email address)

"Chris Botha" <chris_s_botha@ AT_h.o.t.m.a.i. l.com> wrote in message
news:O7******** ******@TK2MSFTN GP09.phx.gbl...
That's what I said, "when initializing, you don't have to specify ...",
read my message.

"rdi" <rd**@writeme.c om> wrote in message
news:O9******** ******@TK2MSFTN GP09.phx.gbl...
<you don't have to specify the number of elements in the array>

EXCEPT when you are not specifying the values at the time of creating the
array. In such a case you DO have specify the number of elements ahead of time. Just something to keep in mind.

public sub test()
dim ary(0) as integer
ary(0) = 1

'to add another element--but this will overwrite previous elements
redim ary(1)
ary(1)=2

msgbox(ary(0).t ostring +vbcrlf + ary(0).tostring ) '<-this will display 0
even though you previously set it to 1

'set it back to 1
ary(0) = 1

'here we add another element while leaving the previous elements

untouched.
redim preserve ary(2)
ary(2) = 3

msgbox(ary(0).t ostring + vbcrlf + ary(1).tostring + vbcrlf +
ary(2).tostring )
end sub

--

RDI

(remove the exclamation from the email address)

"Chris Botha" <chris_s_botha@ AT_h.o.t.m.a.i. l.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Yes, and when initializing, you don't have to specify the number of

elements
in the array, thus
Dim Ary() As Integer = New Integer() {0, 1, 2, 3}
will work as well.

"Jim Hughes" <NO*********@Ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
> If you want an array, you need to declare an array...
> ( note the () after the Ary )
> Dim Ary() As Integer = New Integer(3) {0, 1, 2, 3}
>
> For i As Integer = 0 To Ary.Length - 1
>
> Trace.WriteLine (Ary(i).ToStrin g())
>
> Next
>
>
> "Chris Wertman" <cw******@yahoo .com> wrote in message
> news:14******** *************** ***@posting.goo gle.com...
> > I am so lost on this one.
> >
> > Dim Ary as Integer = New Integer(4) {0,1,2,3}
> >
> > FAILS with the error:
> > Array initializer has 1 too few elements.
> >
> > So I try
> > Dim Ary as Integer = New Integer(3) {0,1,2,3}
> > Since arrays start at 0 (I am thinking)
> >
> > and I get this error:
> > Value of type '1-dimensional array of Integer' cannot be converted

to > 'Integer'.
> >
> > I can friggin assign values to the array AT ALL ?
> >
> > What is wrong with this ?
> >
> > So I guess the question is why dosent this work ?
> >
> > How can I dimension and assign values ?
> >
> > Chris
>
>



Nov 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
6743
by: Golf Nut | last post by:
I am finding that altering and affecting values in elements in multidimensional arrays is a huge pain in the ass. I cannot seem to find a consistent way to assign values to arrays. Foreach would clearly be the most efficient way to do it, but it only works on a copy of the original array and not the original (which is counter intuitive in my estimation). Using each doesn't work consistently either. Not only that, it's unduly complex for...
6
1728
by: Buddy Ackerman | last post by:
I created a simple class: Public Class MyTestClass Public Test() As String End Class I tried to assign some values to the array Test() and display them like this:
16
25402
by: sneill | last post by:
How is it possible to take the value of a variable (in this case, MODE_CREATE, MODE_UPDATE, etc) and use that as an object property name? In the following example I want 'oIcon' object to have the properties: mode1, mode2, and mode3. This seems simple but I can't quite figure it out... Any ideas anyone?
2
1834
by: MLH | last post by:
Gentlemen: I have declared an array Dim MyTables(14) AS Long Now I want to assign values for MyTables(0) - MyTables(14) equal to the number of records in each table. Catch, I want the code to identify only those tables beginning with the letters "JA". Is this possible? Or, should I break down and manually type in all the table names?
26
7060
by: Brett | last post by:
I have created a structure with five fields. I then create an array of this type of structure and place the structure into an array element. Say index one. I want to assign a value to field3 of the structure inside the array. When I try this, an error about late assignment appears. Is it possible to assign a value to a structure field that is in an array? I'm currently getting around the problem by creating a new structure, assign...
11
3767
by: skumar434 | last post by:
Hi everybody, I am faceing problem while assigning the memory dynamically to a array of structures . Suppose I have a structure typedef struct hom_id{ int32_t nod_de; int32_t hom_id;
5
1642
by: Ouwet5775 | last post by:
Hello peeps. Well i have tried runing the folwoing program several times, and i cant figure out what i am doing wrong. The goal of this is to input values for an array, find the maximum and the do a linear search for a given number. But i cant seem to input the number anywhere. Any kind of input would help me out alot. Thanks ;)
4
2498
by: Avi | last post by:
Hi I am creating web application in which i want to assign by default values to the property which i had created my own. In that one of the property is of type color and i am unable to assign any value to that color type property.. my code is Dim Col1Color as String
3
27903
by: bharathi228 | last post by:
hi, how to assign a array as datasource to datagridview in vb.net. my problem is iam having an array with 60 values
0
7991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7902
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8395
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8265
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6719
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5850
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5438
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2412
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1250
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.