Not sure what to use for view output
What should I use and how to use something that functions like a label box but can handle several columns and columns? Something that looks like this.
Code:
----------------------------------------------
|Name |Age |Birthday |
| a | f | k |
| b | g | l |
| c | h | m |
| d | i | n |
| e | j | o |
----------------------------------------------
Name | Age | Birthday are headers and the letters are variables
Re: Not sure what to use for view output
Hmmm... several columns AND columns? That's a tricky one. ;) But seriously, don't use a Label. If you have tabular data then use a control that's made to display tabular data, i.e. a ListView or DataGridView.
Re: Not sure what to use for view output
Yeah. I know I can't use Label for this. I tried to google listview but I can't find any guide for beginners.
Re: Not sure what to use for view output
Or Multiple Label controls inside the Table Layout Panel Control
Re: Not sure what to use for view output
Re: Not sure what to use for view output
I'll try it out later. thanks :)