Click here to Skip to main content
15,891,669 members
Home / Discussions / C#
   

C#

 
Questionpaint APPLICATION code in "C# NET" Pin
poonam jagdale1-Mar-09 20:21
poonam jagdale1-Mar-09 20:21 
AnswerRe: paint APPLICATION code in "C# NET" Pin
0x3c01-Mar-09 20:24
0x3c01-Mar-09 20:24 
Questionexe files Pin
mrithula81-Mar-09 19:57
mrithula81-Mar-09 19:57 
AnswerRe: exe files Pin
Christian Graus1-Mar-09 20:08
protectorChristian Graus1-Mar-09 20:08 
QuestionField Link in Datagrid Pin
Ramkithepower1-Mar-09 19:38
Ramkithepower1-Mar-09 19:38 
AnswerRe: Field Link in Datagrid Pin
0x3c01-Mar-09 20:35
0x3c01-Mar-09 20:35 
Question# I/O operatinons Pin
shefa' isied1-Mar-09 19:37
shefa' isied1-Mar-09 19:37 
AnswerRe: # I/O operatinons Pin
Christian Graus1-Mar-09 19:40
protectorChristian Graus1-Mar-09 19:40 
Questiondatagrid Pin
cst_kvp1-Mar-09 19:21
cst_kvp1-Mar-09 19:21 
AnswerRe: datagrid Pin
Christian Graus1-Mar-09 19:41
protectorChristian Graus1-Mar-09 19:41 
Questionexceptions Pin
aratireddy1-Mar-09 19:05
aratireddy1-Mar-09 19:05 
AnswerRe: exceptions Pin
ABitSmart1-Mar-09 19:31
ABitSmart1-Mar-09 19:31 
QuestionVoice conference application Pin
yesu prakash1-Mar-09 18:59
yesu prakash1-Mar-09 18:59 
AnswerRe: Voice conference application Pin
ABitSmart1-Mar-09 19:37
ABitSmart1-Mar-09 19:37 
GeneralRe: Voice conference application Pin
yesu prakash1-Mar-09 19:49
yesu prakash1-Mar-09 19:49 
GeneralRe: Voice conference application Pin
ABitSmart1-Mar-09 19:56
ABitSmart1-Mar-09 19:56 
QuestionLIB file error Pin
milapjp1-Mar-09 18:09
milapjp1-Mar-09 18:09 
Questionclosing tcp where socket is connected Pin
A_A1-Mar-09 17:49
A_A1-Mar-09 17:49 
AnswerRe: closing tcp where socket is connected Pin
Bharat Jain1-Mar-09 20:42
Bharat Jain1-Mar-09 20:42 
JokeRe: closing tcp where socket is connected Pin
A_A2-Mar-09 3:37
A_A2-Mar-09 3:37 
Questionadd image into image list using image index ( problem) Pin
S K Y1-Mar-09 15:11
S K Y1-Mar-09 15:11 
AnswerRe: add image into image list using image index ( problem) Pin
Luc Pattyn1-Mar-09 16:22
sitebuilderLuc Pattyn1-Mar-09 16:22 
Hi,

I haven't used ImageList class yet, but I just read some of the documentation, and that helps.
An ImageList has a Images property, which is a collection, meaning you can get one of its members by using an index, you can clear the collection by calling Clear(), and adding to the collection by calling Add(). So this would be my first attempt:

// having a listview that may or may not have some images in its list already,
// and having another list of images, we copy the latter in the former:
foreach(Image image in ImageList1) {
    myListView.Images.Add(image);
}


Smile | :)
Luc Pattyn [Forum Guidelines] [My Articles]

- 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 the code block button (PRE tags) to preserve formatting when showing multi-line code snippets


modified on Sunday, June 12, 2011 8:56 AM

GeneralRe: add image into image list using image index ( problem) Pin
S K Y1-Mar-09 21:07
S K Y1-Mar-09 21:07 
AnswerRe: add image into image list using image index ( problem) Pin
Luc Pattyn2-Mar-09 2:24
sitebuilderLuc Pattyn2-Mar-09 2:24 
QuestionDrag Drop Problem Pin
S K Y1-Mar-09 14:28
S K Y1-Mar-09 14:28 

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.