I was going to delete this thread and start a new one that's similar, but instead use this reply as an update.
I need to display a list of data in a container. I was returning the data to the sheet, but was limited by #of rows in the visible area I'm working with. So the data contains two columns: A date, and text. The source of the data is provided via ADO query.
In a very simple way, I need to show a scroll bar if the query results exceed the area of the container. I also need the text of the query (column 2) to wrap if it exceed the container width *but not wrap into the date field, cluttering the appearance.
I'm having trouble either finding the right "container", or formatting the appropriate container as desired. Here's what I've tried:
• ListView - Seems ideal, but not available on all machines? I need compatability across multiple machines.
• ListBox - Can show columns and data fine, displays a scrollbar if data exceeds size, but does not word wrap.
• TextBox - Can achieve a columnar appearance, but no column feature. Displays a scrollbar, but word wrap is a 'full' wrap, and breaks into the dates over the far left, obscuring the data.
Can someone give me some feedback on options to perhaps control the wordwrap of a textbox, or wordwrap a listbox, or try another idea or workaround? Again, it seems the ListView is the ideal object, but I don't want to implement something that may not work for other users.