private void Processes_Load(object sender, EventArgs e)
{
foreach (Process process in Process.GetProcesses())
{
Count++;
listView1.Items.Add(process.ProcessName);
//listView1.Items(Count).SubItems.Add(process.Id);
}
}
Hopefully you can see what i'm trying to do there, oh yeah int Count is declared way up at the top of the source.

New Topic/Question
Reply




MultiQuote





|