EnterDebugMode/Keeping Sorting Constant
C#
1
Posts
1
Posters
0
Views
1
Watching
-
1. I'm writing a process manager and by the sounds EnterDebugMode is what I want to set, but how do I go about setting MY program to it as the method doesnt seem to be available to Process objects, is it really just as simple as Process.EnterDebugMode()/Process.LeaveDebugMode() without any associated object ? 2. I've got an 'oncolumnclick' sorting method that works fine but when I refresh my listview the sorting disappears, presumably theres an easy way to keep it (my refresh method involves clearing the whole thing and repopulating it) is there a way of figuring out which column was the last to be clicked and then sending a message to programatically 'reclick' it on refresh ? TIA.