belovedcej
Programmer
Okay - I might be totally crazy - but here's what I want to do.
I have an SQL Server backend and Access adp front end.
I don't want to lose the find features or the other conveniences of having a bound Access form. But our policy here is to not allow users update permissions to the server. Instead, we write stored procedures and activate them with a "save" button in order to update/add a record. The programmers all use .NET - I'm the newbie who uses Access - so their methods don't work for me. I don't know what they do.
I want to bind my forms to a view, providing the users with read-only access to that view.
Then, when the user presses the "edit" button, have the form "unbind" but keep the data for that single record.
After they update the record and press save, edit mode ends, and the form should be "rebound" again.
Of course, I would want something similar for adding a record, too - just clearing the fields instead of keeping anything.
Is this even possible without actually building a whole new form for this that I would open just for edits or adds? I don't want to do that if I don't have to - that makes the app a lot larger.
I have an SQL Server backend and Access adp front end.
I don't want to lose the find features or the other conveniences of having a bound Access form. But our policy here is to not allow users update permissions to the server. Instead, we write stored procedures and activate them with a "save" button in order to update/add a record. The programmers all use .NET - I'm the newbie who uses Access - so their methods don't work for me. I don't know what they do.
I want to bind my forms to a view, providing the users with read-only access to that view.
Then, when the user presses the "edit" button, have the form "unbind" but keep the data for that single record.
After they update the record and press save, edit mode ends, and the form should be "rebound" again.
Of course, I would want something similar for adding a record, too - just clearing the fields instead of keeping anything.
Is this even possible without actually building a whole new form for this that I would open just for edits or adds? I don't want to do that if I don't have to - that makes the app a lot larger.