A system is built by using the MS Access 2000.
Inside a main form, there is one subform, one SAVE button, one REFRESH button and one text box. When a value is keyed into the text box, user will press SAVE button and theoretically, subform should reflect the immediate result with latest info in the subform (currently it takes 3 to 4 seconds to display the result)
Part of the written VBA under the button SAVE click event as below
Me!SubForm_V_QATransaction.Form.Requery
Me!SubForm_V_QATransaction.Form.Refresh
My questions are below:-
a) How to resolve the delay, means, the committed result should appear in subform immediately after a data is successfully committed into a table.
b) Even I have included VBA code like Me.Refresh, Me.Repaint, Me.Requery, all are helpless. If a data can be displayed instantly , my plan is to remove the REFRESH button to avoid few tries .
Any advice ?
Inside a main form, there is one subform, one SAVE button, one REFRESH button and one text box. When a value is keyed into the text box, user will press SAVE button and theoretically, subform should reflect the immediate result with latest info in the subform (currently it takes 3 to 4 seconds to display the result)
Part of the written VBA under the button SAVE click event as below
Me!SubForm_V_QATransaction.Form.Requery
Me!SubForm_V_QATransaction.Form.Refresh
My questions are below:-
a) How to resolve the delay, means, the committed result should appear in subform immediately after a data is successfully committed into a table.
b) Even I have included VBA code like Me.Refresh, Me.Repaint, Me.Requery, all are helpless. If a data can be displayed instantly , my plan is to remove the REFRESH button to avoid few tries .
Any advice ?