Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been using the Listview's Checkboxes property to add a single checkbox control to each row in my ListView.

There is one problems with this however:

Issue: The CheckBoxes property only adds the checkbox in front of the first column. I would like a checkbox after the last column (if at all possible).

What I would like my ListView to look like:

| Column Header 1 | Column Header 2 | Column Header 3 |
    "some data"       "more data"      'CheckBox' Here

Thank you very much for any help with this!

Evan

share|improve this question

1 Answer

Unfortunately, I don't think that's possible (or at least not easily).

If feasible, I'd suggest you to switch to a DataGridView, that gives you more control over columns types, and allows you to create one or more CheckBox columns wherever you want.

share|improve this answer
1  
See Hans answer here for more info, only the first column can be a checkbox – Jeremy Thompson Jul 24 '12 at 2:44
@JeremyThompson: thanks for the info :) – digEmAll Jul 24 '12 at 12:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.