Results 1 to 2 of 2

Thread: [1 - 18 : 18] Color=7

  1. #1
    karen Guest

    [1 - 18 : 18] Color=7

    I would like the record count [1-18:18] to display, but I don't want Color=7 to display.

    MyDb.dbStatusBar = False turns off both features.

    What do I use to display only the record count?

  2. #2
    Keith Guest

    [1 - 18 : 18] Color=7 (reply)

    Hi Karen,
    This is what I have been using for the last year or two.

    Mydb.dbStatusBar = false

    RC = Mydb.dbRecordCount
    RP = Session("SV_RecordPointer_5000&#34 + 1
    CSB = &#34;<CENTER><TABLE Border=2 cellpadding=2 bordercolor=#0066ff>&#34; & _
    &#34;<TR><TD BGCOLOR=lightyellow><FONT color=0000cc Size=2><B>&#34; & _
    &#34;Record Number: &#34; & &#34;<FONT color=cc0000 Size=2><B>&#34; & RP & &#34;<FONT color=0000cc Size=2><B>&#34; & &#34; of &#34; & RC & _
    &#34;</B>&nbsp;YOUR OWN TEXT HERE</FONT></TD></TR></TABLE></CENTER>&#34;
    response.write(CSB)

    Hope this helps...
    ------------
    karen at 3/28/01 10:02:05 AM

    I would like the record count [1-18:18] to display, but I don&#39;t want Color=7 to display.

    MyDb.dbStatusBar = False turns off both features.

    What do I use to display only the record count?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •