I was wondering if anybody knew how to open the active (highlighted) item in notepad using a button
I've got this right now (laugh at me.)
Process.Start("notepad.exe", listView1.ItemActivate);
Obviously this doesn't work, does anybody know what to do :x
http://pastie.org/3241590 source for people to lol @
ItemActivate
is actually an event. You will need to handle that event and place theProcess.Start
code in there.Something like: