473,322 Members | 1,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

array

a
Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and text
box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example
Jan 7 '08 #1
5 1567
"a" <A@a.comwrote in message
news:uM**************@TK2MSFTNGP05.phx.gbl...
Dear programmer I don't understand the array can any one give very
easy example to understand the types of array ( I can use command
button and text box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example
http://www.google.com/search?hl=en&q=C%23+array+example

enjoy
Jan 7 '08 #2
On Mon, 07 Jan 2008 09:55:20 -0800, a <A@a.comwrote:
Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and
text
box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"
Well, that seems to be an example of using an array right there.

But...

Your example is in Visual Basic. This is a C# newsgroup. If you want
help using arrays in VB, you should post to a newsgroup that is related to
VB.

Pete
Jan 7 '08 #3
But...
>
Your example is in Visual Basic. *This is a C# newsgroup. *If you want*
I think its Italian... hoax

//CY
Jan 7 '08 #4
Hi,

This is a C# NG, your code is in VB, what language are you using?
Also I recommend you to get a Learning programming book (of either C# or
VB).

--
Ignacio Machin
http://www.laceupsolutions.com
Mobile & warehouse Solutions.
"a" <A@a.comwrote in message news:uM**************@TK2MSFTNGP05.phx.gbl...
Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and
text box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example


Jan 7 '08 #5
Hi,

I think your question maybe more related to VB.NET language. As others
suggested, you can try posting in VBNET newsgroup also. For ARRAY example,
here are some web articles which maybe helpful to you:

#Exploring VB.NET Array
http://www.vbdotnetheaven.com/Upload...ay041820050729
31AM/VbDotNetArray.aspx

#Array Types in .NET
http://msdn.microsoft.com/msdnmag/issues/02/02/NET/

http://articles.techrepublic.com.com...1-6134505.html

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "a" <A@a.com>
Subject: array
Date: Mon, 7 Jan 2008 19:55:20 +0200
Newsgroups: microsoft.public.dotnet.languages.csharp
>Dear programmer I don't understand the array can any one give very easy
example to understand the types of array ( I can use command button and
text
>box)

Example

'Don't forget to write notes for me

' the next line will define the array.

Dim a(2) As String

' the next lines define the data of array
a(0) = "1"
a(1) = "2"
a(2) = "3"

And so on

Notes:

The array is very difficult please give me easy example
Jan 8 '08 #6

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

Similar topics

2
by: Brian | last post by:
I'm diddlying with a script, and found some behavior I don't understand. Take this snippet: for ($i = 0; $i <= count($m); $i++) { array_shift($m); reset($m); }
2
by: Stormkid | last post by:
Hi Group I'm trying to figure out a way that I can take two (two dimensional) arrays and avShed and shed, and subtract the matching elements in shed from avShed I've pasted the arrays blow from a...
15
by: lawrence | last post by:
I wanted to test xml_parse_into_struct() so I took the example off of www.php.net and put this code up on a site: <?php $simple = <<<END <item>
8
by: vcardillo | last post by:
Hello all, Okay, I am having some troubles. What I am doing here is dealing with an employee hierarchy that is stored in an array. It looks like this: $employees = array( "user_id" => array(...
12
by: Sam Collett | last post by:
How do I remove an item with a specified value from an array? i.e. array values 1,2,2,5,7,12,15,21 remove 2 from array would return 1,5,7,12,15,21 (12 and 21 are NOT removed, duplicates are...
8
by: Mike S. Nowostawsky | last post by:
I tried using the "toUpperCase()" property to change the value of an array entity to uppercase BUT it tells me that the property is invalid. It seems that an array is not considered an object when...
58
by: jr | last post by:
Sorry for this very dumb question, but I've clearly got a long way to go! Can someone please help me pass an array into a function. Here's a starting point. void TheMainFunc() { // Body of...
104
by: Leszek | last post by:
Hi. Is it possible in javascript to operate on an array without knowing how mamy elements it has? What i want to do is sending an array to a script, and this script should add all values from...
7
by: Jim Carlock | last post by:
Looking for suggestions on how to handle bad words that might get passed in through $_GET variables. My first thoughts included using str_replace() to strip out such content, but then one ends...
17
by: =?Utf-8?B?U2hhcm9u?= | last post by:
Hi Gurus, I need to transfer a jagged array of byte by reference to unmanaged function, The unmanaged code should changed the values of the array, and when the unmanaged function returns I need...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.