Click here to Skip to main content
15,900,258 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VB.NET Saving object properties Pin
CodingYoshi4-Dec-08 17:35
CodingYoshi4-Dec-08 17:35 
AnswerRe: VB.NET Saving object properties Pin
Mycroft Holmes4-Dec-08 21:07
professionalMycroft Holmes4-Dec-08 21:07 
AnswerRe: VB.NET Saving object properties Pin
Dan Suthar5-Dec-08 20:01
professionalDan Suthar5-Dec-08 20:01 
QuestionHow to tell a char/text is ascii or unicode? Pin
Ma tju4-Dec-08 15:48
Ma tju4-Dec-08 15:48 
AnswerRe: How to tell a char/text is ascii or unicode? Pin
Christian Graus4-Dec-08 16:01
protectorChristian Graus4-Dec-08 16:01 
QuestionCollection sort question Pin
EliottA4-Dec-08 3:22
EliottA4-Dec-08 3:22 
AnswerRe: Collection sort question Pin
dan!sh 4-Dec-08 4:28
professional dan!sh 4-Dec-08 4:28 
AnswerRe: Collection sort question Pin
Ben Fair4-Dec-08 4:29
Ben Fair4-Dec-08 4:29 
Load your collection into a Stack<t> and you can just use Pop() to get them off in the order you desire; or, load the collection into a List<t> and iterate from back to front using index counting down. I'd avoid doing a Sort, but if it's a small collection resorting or reversing it may not be noticeable. Honestly, I'd use a collection that has a Count or Length property and then access it by index counting down from max index to 0. If your collection implements ICollection<t> you can load it into a List<t> via one of the overloaded constructors.

Keep It Simple Stupid! (KISS)

GeneralRe: Collection sort question Pin
EliottA4-Dec-08 5:11
EliottA4-Dec-08 5:11 
AnswerRe: Collection sort question Pin
Jay Royall4-Dec-08 4:51
Jay Royall4-Dec-08 4:51 
AnswerRe: Collection sort question Pin
Jon_Boy5-Dec-08 3:37
Jon_Boy5-Dec-08 3:37 
GeneralRe: Collection sort question Pin
EliottA5-Dec-08 4:32
EliottA5-Dec-08 4:32 
QuestionTakin pictures with webcam in full size... Pin
Matjaz-xyz4-Dec-08 3:20
Matjaz-xyz4-Dec-08 3:20 
AnswerRe: Takin pictures with webcam in full size... Pin
Marcus J. Smith4-Dec-08 3:24
professionalMarcus J. Smith4-Dec-08 3:24 
QuestionProper use of the keyword "Using" Pin
Marcus J. Smith4-Dec-08 3:14
professionalMarcus J. Smith4-Dec-08 3:14 
AnswerRe: Proper use of the keyword "Using" Pin
PIEBALDconsult4-Dec-08 4:05
mvePIEBALDconsult4-Dec-08 4:05 
AnswerRe: Proper use of the keyword "Using" Pin
Paul Conrad4-Dec-08 5:01
professionalPaul Conrad4-Dec-08 5:01 
AnswerRe: Proper use of the keyword "Using" Pin
Dave Kreskowiak4-Dec-08 5:05
mveDave Kreskowiak4-Dec-08 5:05 
NewsRe: Proper use of the keyword "Using" Pin
Luc Pattyn4-Dec-08 7:37
sitebuilderLuc Pattyn4-Dec-08 7:37 
GeneralRe: Proper use of the keyword "Using" Pin
Jon_Boy5-Dec-08 3:40
Jon_Boy5-Dec-08 3:40 
GeneralRe: Proper use of the keyword "Using" Pin
Luc Pattyn5-Dec-08 3:51
sitebuilderLuc Pattyn5-Dec-08 3:51 
QuestionDisable Close Button in Windows Form Pin
SelvaShankar4-Dec-08 1:48
SelvaShankar4-Dec-08 1:48 
AnswerRe: Disable Close Button in Windows Form Pin
Marcus J. Smith4-Dec-08 3:23
professionalMarcus J. Smith4-Dec-08 3:23 
GeneralRe: Disable Close Button in Windows Form Pin
SelvaShankar4-Dec-08 19:22
SelvaShankar4-Dec-08 19:22 
AnswerRe: Disable Close Button in Windows Form Pin
dan!sh 4-Dec-08 4:16
professional dan!sh 4-Dec-08 4:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.