How are you currently handling the mouse clicks? If you're handling them though the MouseDoubleClick event, I'm willing to bet there's a way to do it there. The MouseEventArgs parameter will give you the location of the mouse click relative to the top-left of the grid control. From there, you can figure out which column is being clicked.

Would you mind posting the code where you handle the mouse click? Maybe then I could help a bit more.