| | |
how to copy or move array to another array
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Mar 2009
Posts: 7
Reputation:
Solved Threads: 0
hi
how to copy or move array to another array
and arr1 has values ...I want to copy or move all values to arr2
with out use for loop to copy each value
help me!!!
how to copy or move array to another array
for example: Dim arr1 As New ArrayList Dim arr2 As New ArrayList
and arr1 has values ...I want to copy or move all values to arr2
with out use for loop to copy each value
help me!!!
ZoZo You mean like:
vb Syntax (Toggle Plain Text)
arr2 = arr1
Lost time is never found again.
- Benjamin Franklin
- Benjamin Franklin
•
•
Join Date: Mar 2009
Posts: 7
Reputation:
Solved Threads: 0
hi
yes i mean arr2 should hold values that arr1 have
like this:
but i want code for vb done the copy
like
arr1.copy to arr2 How i can do this ??????????
yes i mean arr2 should hold values that arr1 have
like this:
•
•
•
•
dim arr1 as new arraylist
dim arr2 as new arraylist
For i = 0 To arr1.count-1
arr2.add(arr1.item(i).
Next
like
arr1.copy to arr2 How i can do this ??????????
Last edited by zahraj; Apr 3rd, 2009 at 5:08 am.
ZoZo Why don't yo just do:
vb Syntax (Toggle Plain Text)
Dim arrayNumOne(20) as integer Dim arrayNumTwo(20) as integer Dim Counter as integer for counter = 0 to 20 arrayNumOne(counter) = arrayNumTwo(counter) next
![]() |
Similar Threads
- Conditional Copy from 2-d Array to another (C)
- Photoshop - javascript slice : error : copy command not available?? (JavaScript / DHTML / AJAX)
- Complete shuffle of an array (C++)
- moving around in an array with arrow keys (C++)
- Inputting text file data into an array, please help! (C++)
- Dynamic Array, Writing to CSV, Floating Point ?'s (C)
- Pointers (C++)
Other Threads in the VB.NET Forum
- Previous Thread: Querying a Database
- Next Thread: Data() = Split(buffer, ",") what is that?
| Thread Tools | Search this Thread |
.net .net2008 2008 access add advanced application array basic beginner browser button buttons center click code combo cpu cuesent data database datagrid datagridview date datetimepicker designer dissertation dissertations dissertationtopic employees excel exists fade filter forms generatetags html images input intel internet listview map mobile module monitor msaccess mysql net number objects open pan panel pdf picturebox picturebox2 port position print printing printpreview regex remove reuse right-to-left save search searchvb.net serial settings shutdown socket sqldatbase sqlserver storedprocedure survey temperature textbox timer timespan transparency txttoxmlconverter user usercontol vb vb.net vba vbnet vista visual visualbasic visualbasic.net visualstudio.net web winforms wpf wrapingcode xml year





