| | |
VB.Net Combobox Reverse Order
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
Use an ArrayList, then iterate backwards
You'll have to translate to VB syntax cos I can't stand VB syntax it makes my teeth jangle! And besides gotta leave you with something to do.
VB.NET Syntax (Toggle Plain Text)
using System; using System.Collections; using System.IO; namespace SortedList { class Program { static void Main(string[] args) { ArrayList stringList = new ArrayList(); StreamReader stringReader = new StreamReader("c:\\OptionList.txt"); string option = ""; while ((option = stringReader.ReadLine()) != null) { stringList.Add(option); } stringReader.Close(); stringReader.Dispose(); stringList.TrimToSize(); for (int i = stringList.Count - 1; i >= 0; --i) { Console.WriteLine(stringList[i]); } Console.ReadLine(); } } }
You'll have to translate to VB syntax cos I can't stand VB syntax it makes my teeth jangle! And besides gotta leave you with something to do.
![]() |
Similar Threads
- VB.NET ComboBox & Statusbar HELP! (VB.NET)
- "net user [username [password | *]" (Windows NT / 2000 / XP)
- reverse the LL using recurtion in C# (C#)
- how do you reverse a linked list using recursion and return it as a string? (Java)
- control textbox input using the mouse (VB.NET)
- Reverse alphabetic ordering in windows (Viruses, Spyware and other Nasties)
Other Threads in the VB.NET Forum
- Previous Thread: Delete checked items from datagrid
- Next Thread: search text in a doc file
| Thread Tools | Search this Thread |
"crystal .net .net2005 30minutes 2008 access add application array assignment basic binary box button buttons center click code combo connectionstring convert cpu data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dosconsolevb.net editvb.net employees excel exists firewall folder function image images isnumericfuntioncall listview login map math memory mobile module msaccess mssqlbackend mysql navigate net opacity page pan peertopeervideostreaming picturebox plugin port print printing printpreview record regex reports" reuse right-to-left save savedialog search serial socket sorting sql sqldatbase storedprocedure string structures studio temp textbox timer txttoxmlconverter upload useraccounts usercontrol vb vb.net vb.netcode vb.nettoolboxvisualbasic2008sidebar vbnet vista visual visualbasic visualbasic.net web wpf xml






