Would appreciate if you would reupload the source. The one provided is missing Resources.resx, Settings.settings, and AssemblyInfo.cs.
I wanted to add support for multiple D3 process handling with the one copy.
I replaced:
Code:
SelectProcessDialog dialog = new SelectProcessDialog(processes);
if (dialog.ShowDialog(this) == DialogResult.OK)
{
finder = new ItemFinder(dialog.GetID());
}
else
return false;
with:
Code:
foreach (Process p in processes)
{
finder = new ItemFinder(p.Id);
}
and it should work with all the processes, but I can't compile without the 3 files.
Many thanks.