J
JString
Hello all.
Lately I've been dealing with alot of corruption related problems with my
back end so I'm beginning to think of ways to try and improve the situation.
I had an idea that's alot like a drill down technique and I'd like to see
what others think about it, so here goes:
1. open main forms for read-only access
2. once a user finds a record to edit, user clicks an edit command button
3. open a recordset for that specific record using a query statement
4. use the getrows method to return an array of the data for that record
5. open a new form in single form view with no record source or control
sources and populate the form with data from the array
6. user modifies data and clicks an 'update' button
7. collect and process all data in the form into an update query statement,
then run.
8. main form is requeried.
The reason that I wanted to use arrays is to avoid consequences from a lost
connection. I'm hoping that when a user loses his or her connection when
it's read-only there will be less lock downs of the back end. So, am I out
of my mind or what? Does anyone have any suggestions?
Lately I've been dealing with alot of corruption related problems with my
back end so I'm beginning to think of ways to try and improve the situation.
I had an idea that's alot like a drill down technique and I'd like to see
what others think about it, so here goes:
1. open main forms for read-only access
2. once a user finds a record to edit, user clicks an edit command button
3. open a recordset for that specific record using a query statement
4. use the getrows method to return an array of the data for that record
5. open a new form in single form view with no record source or control
sources and populate the form with data from the array
6. user modifies data and clicks an 'update' button
7. collect and process all data in the form into an update query statement,
then run.
8. main form is requeried.
The reason that I wanted to use arrays is to avoid consequences from a lost
connection. I'm hoping that when a user loses his or her connection when
it's read-only there will be less lock downs of the back end. So, am I out
of my mind or what? Does anyone have any suggestions?