Forum Discussion
demaionewton
Nov 04, 2022Copper Contributor
Cloning a record works ONLY if I add a MsgBox
I have a very simply VBScript that clones a record taken almost step-by-step from an Access Macro. Here's the copy: DoCmd.RunCommand acCmdSelectRecord DoCmd.RunCommand acCmdCopy DoCmd.RunCommand ...
- Nov 04, 2022Did a bit of research and found that I don't need the 2 lines:
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdSelectRecord
These don't seem to be necessary. Removing them and the MsgBox eliminates the bug.
Tom_van_Stiphout
Nov 04, 2022Steel Contributor
This might be a case where DoEvents could make a difference.
- demaionewtonNov 04, 2022Copper Contributor
Tom_van_Stiphout Great Idea! I hadn't thought of that.