|
-
Jul 22nd, 2006, 06:52 PM
#1
Thread Starter
Fanatic Member
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?
-
Jul 23rd, 2006, 01:23 PM
#2
Thread Starter
Fanatic Member
Re: ms access datasheet select a specif record
I got 1. solved (recordset.move)
anyone about highlighting the whole row?
-
Jul 24th, 2006, 03:28 AM
#3
Thread Starter
Fanatic Member
Re: ms access datasheet select a specif record
-
Jul 25th, 2006, 02:38 PM
#4
Thread Starter
Fanatic Member
Re: ms access datasheet select a specif record
-
Dec 13th, 2011, 06:22 PM
#5
New Member
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?
-
Dec 19th, 2011, 05:46 PM
#6
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|