allow data entry only for few controls

Rajashekar_S

New member
Local time
Today, 07:30
Joined
Mar 26, 2008
Messages
6
i have a data access page, which as a querry in it.

When i set dataentry true, none of the recrods are visible.

but, when i set dataentry false all the records are visible, here i have to change a value (ex; change a value in drop down ) which should get saved into the data base,

Please help.
 
R,

Setting DataEntry to Yes allows the user to ONLY enter new records.
You need DataEntry set to NO and AllowEdits set to Yes.

For individual controls on the screen, you can set Locked=Yes or
Enabled=No to restrict entry of data.

Wayne
 
Thanks a Lot

It works for me.....

R,

Setting DataEntry to Yes allows the user to ONLY enter new records.
You need DataEntry set to NO and AllowEdits set to Yes.

For individual controls on the screen, you can set Locked=Yes or
Enabled=No to restrict entry of data.

Wayne
 

Users who are viewing this thread

Back
Top Bottom