Click here to Skip to main content
15,893,190 members
Home / Discussions / C#
   

C#

 
GeneralRe: plz help Pin
grkrishna24-Mar-09 22:20
grkrishna24-Mar-09 22:20 
GeneralRe: plz help Pin
Pete O'Hanlon24-Mar-09 22:36
mvePete O'Hanlon24-Mar-09 22:36 
QuestionHow to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
Rahad Rahman24-Mar-09 20:34
professionalRahad Rahman24-Mar-09 20:34 
AnswerRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language PinPopular
Christian Graus24-Mar-09 20:43
protectorChristian Graus24-Mar-09 20:43 
GeneralRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
Luc Pattyn25-Mar-09 3:14
sitebuilderLuc Pattyn25-Mar-09 3:14 
AnswerRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
Xmen Real 24-Mar-09 20:53
professional Xmen Real 24-Mar-09 20:53 
AnswerRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
0x3c024-Mar-09 21:05
0x3c024-Mar-09 21:05 
AnswerRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
Tom Deketelaere24-Mar-09 23:22
professionalTom Deketelaere24-Mar-09 23:22 
AnswerRe: How to save image in a folder? and how to show image in a picturebox with windows project by C# language Pin
Thomas Krojer25-Mar-09 2:45
Thomas Krojer25-Mar-09 2:45 
QuestionHow to attach a file(attachment) in a datagrid cell? Pin
hhill24-Mar-09 20:27
hhill24-Mar-09 20:27 
AnswerRe: How to attach a file(attachment) in a datagrid cell? Pin
King Julien24-Mar-09 21:37
King Julien24-Mar-09 21:37 
QuestionListView in C# Pin
mrithula824-Mar-09 20:00
mrithula824-Mar-09 20:00 
AnswerRe: ListView in C# Pin
Christian Graus24-Mar-09 20:25
protectorChristian Graus24-Mar-09 20:25 
GeneralRe: ListView in C# Pin
mrithula824-Mar-09 20:56
mrithula824-Mar-09 20:56 
GeneralRe: ListView in C# Pin
King Julien24-Mar-09 21:23
King Julien24-Mar-09 21:23 
GeneralRe: ListView in C# Pin
mrithula824-Mar-09 21:36
mrithula824-Mar-09 21:36 
GeneralRe: ListView in C# Pin
King Julien24-Mar-09 23:00
King Julien24-Mar-09 23:00 
GeneralRe: ListView in C# Pin
mrithula825-Mar-09 0:11
mrithula825-Mar-09 0:11 
GeneralRe: ListView in C# Pin
King Julien25-Mar-09 0:55
King Julien25-Mar-09 0:55 
GeneralRe: ListView in C# Pin
mrithula825-Mar-09 19:25
mrithula825-Mar-09 19:25 
Hi I am able to list all the exe files in listView control.If the 1st exe has started i want to set the status of the ist sub item to "Started"
foreach(Process pr in proclist)
           {
               String proname = pr.ProcessName;
               //listBox4.Items.Add(proname);
               lvsi=new ListViewItem.ListViewSubItem();
               lvsi.Text="Started...";
               lvi.SubItems.Add(lvsi);
           }

           int b = proclist.Count;
           listBox4.Items.Add(b.ToString());
proclist contains the list of all exe that have started.Currently there is only 1 exe(i.e the 1st one in the listview control).I want to display started to the 1st subitem.The above code that im using displays "started" as the last sub item.How can i change this?
GeneralRe: ListView in C# Pin
King Julien25-Mar-09 20:08
King Julien25-Mar-09 20:08 
GeneralRe: ListView in C# Pin
mrithula825-Mar-09 20:18
mrithula825-Mar-09 20:18 
GeneralRe: ListView in C# Pin
King Julien25-Mar-09 20:49
King Julien25-Mar-09 20:49 
GeneralRe: ListView in C# Pin
mrithula825-Mar-09 21:08
mrithula825-Mar-09 21:08 
GeneralRe: ListView in C# Pin
King Julien25-Mar-09 21:30
King Julien25-Mar-09 21:30 

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.