String and grid woes
Hi, I have a few problems with a string displaying in my layout. here's my string...
String Days[] ={"Sun","Mon","Tues","Wed","Thur","Fri","Sat"};
I've created a grid like so...
DaysPanel.setLayout(new GridLayout(7,2));
I've tried so many ways of trying to get the days to appear in the grid, but they just wont. I know I'm at fault here so any help would be great. Here's what I was thinking would work, but doesnt...
DaysPanel.add(Days)
I've tried many variants of this and nothing seems to be happening.
Any Ideas as to why the days wont show in the grid?
I hope my post has made some sense. thanks D

