chrisjames25
Registered User.
- Local time
- Today, 13:13
- Joined
- Dec 1, 2014
- Messages
- 404
Hi I have a input form with a subform showing what i have previously input
i use the following code on an enter info command button
THe applydata sub takes data from unbound textboxes and puts them in bound text boxes.
My issue is when i click the enter info command button i get a bad screen flicker. I have gone throught the code line by line and the flicker dissapeared if i remove the go to next record part of the code.
ANy idea why this line would create a screen flicker or if the code can be changed to remove the flciker?
i use the following code on an enter info command button
Code:
Private Sub Cmd_enter_Click()
Application.Echo False
ApplyData
DoCmd.GoToRecord , , acNext
'DoCmd.RunCommand acCmdRecordsGoToNext
Me.Sub_Batch.Form.Requery
Application.Echo True
End Sub
THe applydata sub takes data from unbound textboxes and puts them in bound text boxes.
My issue is when i click the enter info command button i get a bad screen flicker. I have gone throught the code line by line and the flicker dissapeared if i remove the go to next record part of the code.
ANy idea why this line would create a screen flicker or if the code can be changed to remove the flciker?