Click here to Skip to main content
15,917,321 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionWhat thing is done from IStream::Read to IWMReaderCallbackAdvanced::OnStreamSample? Pin
markliu-codeproject16-Mar-08 22:09
markliu-codeproject16-Mar-08 22:09 
GeneralMDI Child Form Pin
divyesh143216-Mar-08 21:33
divyesh143216-Mar-08 21:33 
GeneralRe: MDI Child Form Pin
parth.p17-Mar-08 0:13
parth.p17-Mar-08 0:13 
GeneralRe: MDI Child Form Pin
divyesh143217-Mar-08 0:16
divyesh143217-Mar-08 0:16 
GeneralSortedList Pin
Anneke16-Mar-08 11:35
Anneke16-Mar-08 11:35 
GeneralRe: SortedList Pin
Luc Pattyn16-Mar-08 14:34
sitebuilderLuc Pattyn16-Mar-08 14:34 
GeneralRe: SortedList Pin
Anneke18-Mar-08 9:13
Anneke18-Mar-08 9:13 
GeneralRe: SortedList Pin
Luc Pattyn18-Mar-08 13:00
sitebuilderLuc Pattyn18-Mar-08 13:00 
Hi Anneke,

your original code tried to sort a list; that is where you need an object that
implements IComparer so you can specify your specific sort order. The Sort method
holds all the code to iterate through the collection as often as needed to get it
sorted, you only have to tell it what your sort order is by offering an IComparer object.

On the other hand, if you need to FIND an object in a collection, you have to do that
yourself, probably using a loop (such as foreach); you could still use the IComparer
object inside the loop, but you don't have to do it that way.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

This month's tips:
- before you ask a question here, search CodeProject, then Google;
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get;
- use PRE tags to preserve formatting when showing multi-line code snippets.


Generalunbound datagrid Pin
mr.me15-Mar-08 7:31
mr.me15-Mar-08 7:31 
GeneralRe: unbound datagrid Pin
Rocky#16-Mar-08 22:14
Rocky#16-Mar-08 22:14 
GeneralRe: unbound datagrid Pin
mr.me17-Mar-08 19:28
mr.me17-Mar-08 19:28 
GeneralRe: unbound datagrid Pin
Rocky#17-Mar-08 21:21
Rocky#17-Mar-08 21:21 
GeneralRe: unbound datagrid Pin
mr.me18-Mar-08 9:37
mr.me18-Mar-08 9:37 
GeneralRe: unbound datagrid Pin
Rocky#18-Mar-08 20:12
Rocky#18-Mar-08 20:12 
GeneralRe: unbound datagrid Pin
mr.me19-Mar-08 6:48
mr.me19-Mar-08 6:48 
Generalcrystal report Pin
Naresh12345678915-Mar-08 3:21
Naresh12345678915-Mar-08 3:21 
GeneralRe: crystal report Pin
Herman<T>.Instance1-Apr-08 23:43
Herman<T>.Instance1-Apr-08 23:43 
GeneralDatagridview Refresh Control Problem Pin
soniasan14-Mar-08 22:37
soniasan14-Mar-08 22:37 
GeneralRe: Datagridview Refresh Control Problem Pin
Herman<T>.Instance1-Apr-08 23:47
Herman<T>.Instance1-Apr-08 23:47 
GeneralProblem with DataGridViewComboBoxColumn - try to disable/hide already selected values [modified] Pin
Skeletor2314-Mar-08 11:43
Skeletor2314-Mar-08 11:43 
GeneralStrange Error on Data Bound ComboBox Pin
Brady Kelly13-Mar-08 7:43
Brady Kelly13-Mar-08 7:43 
GeneralRe: Strange Error on Data Bound ComboBox Pin
led mike14-Mar-08 4:58
led mike14-Mar-08 4:58 
GeneralRe: Strange Error on Data Bound ComboBox Pin
Brady Kelly16-Mar-08 22:27
Brady Kelly16-Mar-08 22:27 
GeneralRe: Strange Error on Data Bound ComboBox Pin
ChandraRam17-Mar-08 0:37
ChandraRam17-Mar-08 0:37 
GeneralRe: Strange Error on Data Bound ComboBox Pin
Brady Kelly17-Mar-08 1:36
Brady Kelly17-Mar-08 1:36 

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.