.net - Does For Each Acting On A List Always Visit Elements In The Same Order

Nov 4, 2010

Will the elements in myList always be visited in the same order with a For Each loop (assuming I don't alter the list)?

Dim myList As New List(Of MyElement)
....
For Each myElem As MyElement In myList
' yadda yadda yadda
Next

View 1 Replies


ADVERTISEMENT

Forms :: Visit List Of URLs While Moving Progress Bar

Jun 2, 2010

I'm looking to be able to open a .txt file (with sites 1 per line) and visit all of those sites silently while moving a progress bar.

View 4 Replies

Create Local Copy Of A List To Be Able To Change Elements Only In New List?

Oct 26, 2011

This is probably a really basic question - but I have a list of items (custom objects) being passed from one winform (.net 3.5) to another. I want to create a local list to store changes that only get persisted if the user clicks save. Currently if the user clicks cancel - the changes are still applied in the first form because I assume the objects are reference type.I have the save working as it calls a service layer to do the save and then refreshes the other form - but not the cancel.

View 1 Replies

VS 2005 Sort List Of Objects By Child List Order?

Jul 20, 2011

I'm having a bit of a 'brain doner' moment here

I have a list of Objects. Each of these Objects contains a list of other Objects (pseudo code) :-

Private Structure Object1
dim Name as string
dim ListOfObject2 as List(Of Object2)

[Code]....

I need to sort the list of Object1 by the Value in Object2. I have a comparison class which sorts Object2 by its Value nicely.

View 13 Replies

Merge Array Of Elements Into Larger Array When Element Order Is Different?

Nov 23, 2010

Assume I have an array myArray1 = { A, B, C, D, E, F, ., T}I have another that contains a subset of the elements of myArray1 but where the order may vary

View 3 Replies

App For Copying Elements From One List To Another?

Mar 11, 2012

I want to copy the elements from one list to another.

View 4 Replies

Getting A List Of Elements To Load?

Apr 11, 2011

I'm Having trouble getting a list of elements to load. The data is defined like this:

Public Class NavEquipmentMgr
Shared M_ps_NavQuit As Boolean
Shared M_ps_No_Nav_Equip As Boolean

[Code].....

View 9 Replies

Re-arranging Elements In List(Of T)?

Apr 7, 2011

I got a list of objects. Each object has a property called Z (integer).There will come a point during run-time I will want to re-arrange such objects in my list depending on their Z property. The objects with lower Z go first in the list, and the ones with higher will go last.I have thought of a couple things, like making a new List, then loop through each object in the original list as many times as the amount of objects such list has (so if it has 10 objects, I would loop 100 times), and each iteration will check the Z values. When a cycle is done (for every 10 iterations), I will remove the object with the lowest Z number in cycle and add it to the new List. And so on until the 100 iterations are done.

View 3 Replies

Remove Elements From A List?

Feb 6, 2010

I have a List of a custom class (barData) that I need to remove elements form based on a date.

The bardata class holds data of stock price information.[cod]e...

Is there a way to do it without looping through each bar as I may have 2000 plus bars for each stock and may have 2000+ plus stocks to look at. It can be done by looping but it is slow.

View 2 Replies

Generate Combinations Of Elements Of A List<T> In .NET 4.0?

Jul 13, 2009

I would like a function generate all of the k-combinations of elements from a List of n elements. Note that I am looking for combinations, not permutations, and that we need a solution for varying k (i.e., hard-coding the loops is a no-no).

I am looking for a solution that is a) elegant, and b) can be coded in VB10/.Net 4.0.

This means a) solutions requiring LINQ are ok, b) those using the C# "yield" command are not.

The order of the combinations is not important (i.e., lexicographical, Gray-code, what-have-you) and elegance is favored over performance, if the two are in conflict.

(The OCaml and C# solutions here would be perfect, if they could be coded in VB10.)

View 5 Replies

Reflection For A List Properties Elements?

Oct 31, 2010

I am creating a dynamic clone method to be used in my custom classes. I want the clone function to be completely generic, so I do not have to make any changes when I add new properties to the class. I am having an issue with regards to making a deep copy a property that is a List. sample code that will enable me to identify with reflection that a property of my class is a List, and then more importantly the code to loop through the the List elements and copy of each of them. I have been able to identify a property as a List by using the NameSpace of the property type, but I'm not a big fan of that method. Either way, I have yet been able to dynamically loop and deep copy the elements of the property that's a List using reflection.

View 2 Replies

VS 2010 HTML Elements List?

Jan 17, 2012

I'm making a bot to auto-reply to my PMs on a website, and I'd like to get all of the HTML elements with a class name 'InboxRow'. I can get the HTML element one at time, but the problem is that these will be dynamic, so the id and amt. of them will always change, so I want to put them in an array, where I can call each one up and perform the rest of my code for it. I just can't seem to be able to figure out how to find all the HTML elements with the class name and put them in an array, and I can't seem to find any tutorials online

View 4 Replies

.net - Make Array From Properties Of Elements Of List?

Mar 25, 2012

Is there a succint way in vb.net to create an array or similar of each of the properties in a list?

E.g. If I have a list of 'a' and each 'a' has a property 'b', I want to create an array which contains all the 'b's, in the same index positions as the original list.

View 2 Replies

Assign Values To Structure Elements In A List?

Aug 19, 2011

I have a user defined structure in a list that I am trying to change the value for in an individual element within the list of structures. Accessing the element is not a problem. However, the compiler complains

"Expression is a value and therefore cannot be the target of the assignment"when I try to update the value.For example:

Public Structure Person
Dim first as String
Dim last as String
Dim age as Integer

[code]....

View 2 Replies

Setup A List Consisting Of Arrays Of Two Elements?

Feb 27, 2009

I need to set up a list consisting of arrays of two elements. Simple, right?

Like: (code snippet):

Dim strDataPoint(1) As String '2-element array
Dim lBiasCurve As New List(Of strDataPoint) 'list of 2-element arrays
Dim lPwrCurve As New List(Of strDataPoint) 'another list of 2-element arrays

But this gives me an error msg on 2nd and 3rd line: type strDataPoint is not defined....

View 8 Replies

Copying Elements From List Where Frequency Is Custom Class

Sep 21, 2010

I'm trying to copy the elements from a List(Of Frequency) where Frequency is a custom class I have made. Everything in the other places seems alright but the problem seems to be with the copying, where it still references the original table, so changing the values of one changes the original. I've tried the List.CopyTo() method and tried converting to and array with List.ToArray and then using Array.Copy but it seems they always change the original. I've also tried a for loop and create and New instance of the classes but that doesn't work either. What I'm using it for is to pass the List(Of Frequency) to a new Task to do multitasking(), if anyone can think of a better method to pass a List(Of Frequency), or an array to to a task and have it not change the original.

View 3 Replies

Difference Between A Pointer Or A Variable In The Contect Of List Elements?

Apr 25, 2009

Do List's hold the instances of a variable element or just the pointer to the the variable element? My application uses a list of elements, which can be re-ordered at any time, but I need to maintain another list of pointers to those elements, so that the element pointers can be used to access any element irrespective of their order in the main list? the difference between a pointer or a variable in the contect of list elements?

View 16 Replies

Linq To Xml Query Returning A List Of All Child Elements?

Mar 8, 2010

I have got an xml document which looks something like this.

<Root>
<Info>
</Info>
<Info>

[Code]...

How can i write a linqToXML query so that it returns me an IEnumerable containing each child element, in this case all five child elements of , so that i could iterate over them. The order of child elements is not definite, neither is number of times the may appear.

View 1 Replies

Read All Elements And Child Nodes Of XML In A List Using XDocument?

Jul 6, 2011

I have to get all the Entity Source,Entity Target,Property Source and Property Target values in list respectively.[code]...

View 1 Replies

Read The String Which Contains XML Data And Store The Elements In A List?

May 17, 2011

I have a string with xml data.Dim appManifest As String = New System.IO.StreamReader(Application.GetResourceStream(New System.Windows.Resources.StreamResourceInfo(e.Result, Nothing), New Uri("AppManifest.xaml", UriKind.Relative)).Stream).ReadToEnd()

[Code]...

View 2 Replies

Use The RemoveRange Function To Remove A Couple Elements From A List?

Feb 2, 2011

I use the removeRange function to remove a couple elements from a list, but the Count of the list seems to be intact, so I assume it didn't work the way I expected it too.... so, how do you remove elements? I mean, reduce the list's Count value ultimately.

View 3 Replies

Draw Lines Between Elements In 2 List Views To Bind The Data?

Aug 4, 2009

I am using VB 2008 and wonder if there is a way to draw lines between the data elements in two listviews to bind the elements together?

View 1 Replies

List View Techniques - Populate The Corresponding Data Elements On Another Form?

Jul 18, 2011

I have the following "contact" data (exampled below) stored in an xml file.I've created a frmContacts windows form and placed a list box control inside it.I'm new to the list box but plan to have the users manage the list by letting them add, delete, and pick from it. For searching there should also be a sort function/button (by last name then first name).If the user deletes from the list the corresponding data in the file will be deleted.If the user picks from or adds to the list, I'd like to find the best way to populate the corresponding data elements on another form (i.e., in their respective text boxes). This will include the ability to edit/save from this other form too.

<?xml version="1.0" encoding="utf-8"?>
<Rows>
<Row>[code]......

View 1 Replies

How To Print An Order List

Apr 6, 2010

How to print a simple order list using vb 2008 ? Can someone show me how this is done ?

View 2 Replies

Way To Order A List Of String

Jun 25, 2012

I have a list(of list(of string)) in vb.net which is a list that contains lists that have 5 string list items in them.

I want to sort the lists by the second item in the contained lists but I don't know what parameter is needed in the .sort method. What do I need to put in as a parameter. I read something about writing a comparer function and putting that in the brackets but I don't understand how that works.

View 3 Replies

Ruby Re-create Such List (as An Array) With Such Elements (they Will Be Strings, Booleans And Integers)?

Apr 4, 2011

How would I create a list of elements in VB.NET, save it to a .dat file, and make Ruby re-create such list (as an array) with such elements (they will be strings, booleans and integers)?

View 2 Replies

Auto-resizing Wpf Elements With Scroll Bars (Rich Text Box - List Box) Vb

Sep 10, 2010

I'm having a problem where I have elements such as Listboxes and Rich Text boxes that I want to set to size automatically in xaml according to the size of the window, but I only want it to resize to the size of the window and then put scrollbars if the content is any bigger than that.

Unfortunately, the only way I can get scroll bars to work is if I set a specific height of the listbox/rich text box (which does not work because I want it to automatically resize to the height of the grid that it is contained within, which is generally the height of the window (auto).

View 1 Replies

Create A Remoteable Object With Method That Sums Up Elements In Array List

Jul 27, 2010

I need to create a remoteable object with a method that sums up elements in an array list. How do i go about it?

View 1 Replies

Linq Order By For A List (Of MyObjects)

Mar 3, 2009

How do I order by a passed string value on my list of objects? i need to do paging and sorting on my List(Of) objects the paging is no problem but I don;t know who to get the Order By to work.Here is what I am currently doing and it's working great:[code]

View 4 Replies

List Box To Display In Descending Order?

Jan 22, 2011

My task is to create buttons to demonstrate how loops work on a form. Two numbers are entered and validated (lower bound and upper bound). They are then to display all the numbers between them in an "odds list box" and an "evens list box" in ascending order. If however, the lower bound number is higher than the upper bound number - they are to be displayed in the list boxes in "descending order". My code for the "For...Next...Loop" worked fine - but I am having trouble with the "Do While Loop". I can not seem to determine how to have it displayed in descending order.[code]...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved