Results 1 to 6 of 6

Thread: ms access datasheet select a specif record

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2005
    Posts
    586

    Unhappy ms access datasheet select a specif record

    1. I need to jump N reocrds down/up in an ms access datasheet.

    2. I'd like to mark the current record in my datasheet by highlighting the whole row, and not just a single field in the record (similar to what's happen when the user presses the record selector)

    any ideas?

  2. #2

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2005
    Posts
    586

    Re: ms access datasheet select a specif record

    I got 1. solved (recordset.move)

    anyone about highlighting the whole row?

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2005
    Posts
    586

    Re: ms access datasheet select a specif record

    anyone?

  4. #4

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2005
    Posts
    586

    Re: ms access datasheet select a specif record

    someone?

  5. #5
    New Member
    Join Date
    Dec 2011
    Posts
    1

    Re: ms access datasheet select a specif record

    Hello,

    2. I'd like to mark the current record in my datasheet by highlighting the whole row, and not just a single field in the record (similar to what's happen when the user presses the record selector)

    any ideas?[/QUOTE]


    I would also really like to know how to mark the current record by highlighting the whole row! Anyone?

  6. #6
    Frenzied Member
    Join Date
    Nov 2010
    Posts
    1,470

    Re: ms access datasheet select a specif record

    you select the row using

    rows(row:row).select
    e.g
    rows("5:5").select

    Selection.Interior.Color = RGB(255, 255, 0)
    or
    Selection.Interior.Color = vbyellow
    or
    Selection.Interior.Colorindex = 24

    you will need to know the red green blue mix the vbnamed color range or the color index values for your choices

Posting Permissions

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



Click Here to Expand Forum to Full Width