About 50 results
Open links in new tab
  1. Arraylist (partly from Linq) as Datasource of Combobox

    Mar 31, 2010 · 1. Declare an actual object type (with Description and RecIdent properties). 2. Use List (Of ThatType) instead of ArrayList. 3. Modify your LINQ query to return instances of that type. 4. …

  2. Displaying ArrayList in GridView (vb.net)

    Oct 7, 2021 · Question 0 Sign in to vote User677640981 posted Hi, I've been trying to bound an arraylist to a grdview for display and managed to work out the following:

  3. c# equivalent of java vector - social.msdn.microsoft.com

    Tuesday, May 4, 2010 9:27 AM 0 Sign in to vote User397347636 posted Even though "ArrayList" is equivalent to Java's "Vector", what you want in this case is a "List" of your user-defined type which …

  4. Problem moving reports to production server

    Oct 23, 2012 · Does anyone know what would cause the following error, I've installed these reports on serveral servers with no issues.

  5. How to Replace the First Row of the CSV File

    Apr 21, 2006 · Here is a little self-explaining example, please feel free to post whenever you have problems with this solution or implementing it in your own situation!

  6. MSDN

    MSDN

  7. Wait function in c# - social.msdn.microsoft.com

    May 7, 2009 · i exactly want to get one data then draw it then wait a second anf then get the second data untill the end.someone could help me in code what exactly i should do for getting and waiting …

  8. Loading and playing force effects - social.msdn.microsoft.com

    Mar 9, 2015 · this.name = name; effectlist = new System.Collections.ArrayList (); EffectList effects; effects = device.GetEffects (filename, FileEffectsFlags.ModifyIfNeeded); foreach ( FileEffect e in …

  9. Query AD for users in a specific group (by group name)

    Jun 10, 2014 · I need a list of all the user names in a particular group by group name, (i.e. List the users in "corp\web-admins");

  10. Alternative to StringBuilder - social.msdn.microsoft.com

    Sep 17, 2008 · If you had an array, string.Join would do what you want. Since you don't, StringBuilder is probably your best bet. You can always make this a utility functon passing in IEnumerable to avoid …