Home All Groups Group Topic Archive Search About

Noob Question - Best Control for a TV Guide?

Author
15 Feb 2006 6:35 AM
Nonee
Hello-

   I am writing a program that loads a tv guide listing into a
control.  I looked at the datagridview control but it doesn't seem to
have the ability to overlap columns.  Basically, I would like a
control to list the tv channel on the left side, the time at each half
hour at the top of each column, and then of course all of the listing
in each of the cells.  BUT, I need a control that I can overlap the
column cells.  Can you with the datagridview?  If not, any ideas?  I
could do it entirely by hand but I am not THAT noob...  hehe..  There
HAS to be a better way.

Thanks,

    Josh

Author
15 Feb 2006 7:09 AM
CMM
We're talking WinForms here, right? You might want to check out the souped
up grids from Infragistics or ComponentOne. I don't think the built-in
DataGridView can do what you ask.

Also, have you considered rending the listing using HTML... somehow (like
building the output with a string builder)... and display it in an embedded
webbrowser control? I dunno. HTML tables with its mergeable columns
(colspan=x) seems like a perfect thing for "TV Listings". Just a thought.

--
-C. Moya
www.cmoya.com
Show quoteHide quote
"Nonee" <N***@none.com> wrote in message
news:qoi5v1dk2c0jfv8up1jm93fpb6tlcmgpdj@4ax.com...
> Hello-
>
>   I am writing a program that loads a tv guide listing into a
> control.  I looked at the datagridview control but it doesn't seem to
> have the ability to overlap columns.  Basically, I would like a
> control to list the tv channel on the left side, the time at each half
> hour at the top of each column, and then of course all of the listing
> in each of the cells.  BUT, I need a control that I can overlap the
> column cells.  Can you with the datagridview?  If not, any ideas?  I
> could do it entirely by hand but I am not THAT noob...  hehe..  There
> HAS to be a better way.
>
> Thanks,
>
>    Josh
Author
15 Feb 2006 7:51 PM
Nonee
THANK YOU!!!  Yes, an html form would be perfect.  I could parse the
xml data, output it to a formated html, and load the file into the
form.  That would work great!  Thank you.

Show quoteHide quote
On Wed, 15 Feb 2006 02:09:29 -0500, "CMM" <cmm@nospam.com> wrote:

>We're talking WinForms here, right? You might want to check out the souped
>up grids from Infragistics or ComponentOne. I don't think the built-in
>DataGridView can do what you ask.
>
>Also, have you considered rending the listing using HTML... somehow (like
>building the output with a string builder)... and display it in an embedded
>webbrowser control? I dunno. HTML tables with its mergeable columns
>(colspan=x) seems like a perfect thing for "TV Listings". Just a thought.