Question call listview columnclick

Zexor

Well-known member
Joined
Nov 28, 2008
Messages
520
Programming Experience
3-5
How do you call a listview_columnClick event directly with a column number?
 
You don't. Event handlers are executed when an event is raised. If you want a method to process a specific column index then write a method that takes a column index as an argument and processes it. You can then call that method from the event handler and from anywhere else that needs to as well.
 

Latest posts

Back
Top