|
-
May 1st, 2003, 04:55 AM
#1
Thread Starter
Addicted Member
two line headers in datagrids
I need to have two lines in the header of my datagrid,
example:
|----------------|
|--Temperature--| - header line 1
|----------------|
|--Min--|--Max--| - header line 2
|----------------|
|--5.0--|--10.0--| - item line
|----------------|
does anybody know if this is possible?
thanks,
tom.
-
May 1st, 2003, 10:08 AM
#2
PowerPoster
What I do is just bump a one row table right above the datagrid. As long as both are in the same p tag in the html, it gets them pretty close. Other than that, I am not sure.
-
May 2nd, 2003, 02:49 AM
#3
Thread Starter
Addicted Member
yes, i do a similer thing, i put an image just above the datagrid...
anybody else?
tom
-
May 2nd, 2003, 03:28 AM
#4
Addicted Member
Try this:
VB Code:
datagrid1.Columns(1).HeaderText = "Temperature" & "<br>" & "Min | Max"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|