DBR "Split lines"..

  • Thread starter Thread starter Frank Smith
  • Start date Start date
F

Frank Smith

I would like to show the results from a DB read where some of the cells
are on a first line and the other cells on the line below.
Need some expert help on this one to modify the code.
 
I am thinking about a DB record of:
Field1 = date
field2 = Event
field3 to 10 = names of people

Would like to show field1 and field2 on a line.
Immediately below that show the fields for the names horizontally.

Not sure how two DBR's would do that.
 
The DBRW generates a single row table in Design view

Select the whole row in code view (<tr> thru </tr>) then copy it right below itself in code view
Delete from the first row all the content of the unwanted cells (in all but 1st 2 cells)
Do the same for the second row (delete content of 1st 2 cells)
Merge the now empty cells in your table
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|
| I am thinking about a DB record of:
| Field1 = date
| field2 = Event
| field3 to 10 = names of people
|
| Would like to show field1 and field2 on a line.
| Immediately below that show the fields for the names horizontally.
|
| Not sure how two DBR's would do that.
|
| MD Websunlimited wrote:
| > Hi Frank,
| >
| > Use two DBRW on the page.
 
Back
Top