DBRW into a scrolling text box?

  • Thread starter Thread starter SAC
  • Start date Start date
S

SAC

I'd like to put the results of a database put into a scrolling text box
rather than have all the records show in a table.

It's like showing so many record at once and having a vertical scroll bar on
the right rather than a next button to view more records.

How can I do this?

Thanks.
 
Not possible, instead use an IFrame on your page, then display the results
table page in the IFrame, since you are using the FP DRW, you can use the
paging function to limit the number of records.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
I'm sorry, I'm pretty new to this. What's an IFrame? I see where I can
make a new page that has frames on it.

Thanks.
 
Which version of FP are you using?

IFrame = Inline Frame

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
2000

Thomas A. Rowe said:
Which version of FP are you using?

IFrame = Inline Frame

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Assuming you really want it in a text are, with the output formatted as
plain text, do :

<textarea>
<!-- # include DRW ...... -->

<%=FP_field("fp_rs,"yourdata") %>

<!-- # closing include... -->
</textarea>
 
However, that would only handle a single field/record.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top