0

I started making a very simple application where a list of names is shown in a checked-listbox. Now I would like to add a date as a second column value. This means i have two use a two-dimensional array. What containers could be suitable to visualize a 2 dim-array on a form?

I was thinking as an alternative I could keep it one dimensional and use a delimiter. Would there then be a method to format this date on the extreme right side of a listbox? I guess I would have to extract the date part, but I don't see how i could position it in a listbox.

I am working with VS2010 and using a windows forms project. I have no experience in VB (but some in c++), and no experience with GUI's at all.

Thanks in advance

1
  • 1
    ListView is going to be your easiest option. There are ways to get ListBox/CheckList bx to do it, but it's alot of code, and ListView does it better. Commented Jun 16, 2012 at 16:22

1 Answer 1

1

Either the ListView in details/report mode or the DataGrid would be good. Personally I prefer the ListView when possible.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.