DataSheet

  • Thread starter Thread starter Praveen Manne
  • Start date Start date
P

Praveen Manne

Hi,

I have a datasheet and if I select any field, the whole record should be
greyed out. How is this possible?

Thanks
Praveen Manne
 
"greyed out"? It's not possible to change the color of a datasheet's
record's fields....what are you wanting to do?
 
Hi
Thanks for the reply

I want to make the datasheet read only .. when the user clicks on any of the
fields, before entering the data in it .. he should get a feeling that its
read only. I know how to make a datasheet read only, but i dont know how to
make it "look like read only"
 
Don't use a datasheet view. Use a forms view...you can format and design the
controls to look like a datasheet view to the user.

Then, on the OnCurrent event, change all controls to Enabled = False and
Locked = False; that will grey out each control.
 
Back
Top