Change font in DBRW?

  • Thread starter Thread starter Jackie
  • Start date Start date
J

Jackie

In my database results I have changed the buttons in _fpclass/fpdbrgn1 to
display text (next, prev etc) rather than arrows. I would also like to
change the font, but I can't see how to do so.

Can anyone help?

Thanks,
Jackie
 
Hi Jackie:
Open the fpdbrgn2.inc file in a text editor, find where the buttons are
written - here's the first one:

Response.Write "<NOBR><INPUT TYPE=" & fp_sType & " NAME=""" & fp_sFormKey &
""" VALUE=""" & fp_sLabel & """>"

and modify it like this:

Response.Write "<NOBR><INPUT STYLE='font-size:8pt; font-family:Georgia;
background-color:yellow; color:red' TYPE=" & fp_sType & " NAME=""" &
fp_sFormKey & """ VALUE=""" & fp_sLabel & """>"

HTH,

--

~ Kathleen Anderson
Microsoft FrontPage MVP
Spider Web Woman Designs
http://www.spiderwebwoman.com/resources/
 
Back
Top