G
Guest
I have inherited an access db with about 70-80 lines of code invoking the
archaic DoMenuItem command. Is it worth my time, from a performance
perspective, to update this code using the newer VBA commands? Most of the
code is for refreshing combo boxes, saving records, and selecting/deleting
records.
Also is the following correct:
AcRecordsMenu, 5, ,acMenuVer70 Replaced by: Me.Object_Name.Requery
AcEditMenu, 8, ,acMenuVer70 and
AcEditMenu, 6, ,acMenuVer70
replaced by: RunCommand acCmdDeleteRecord
archaic DoMenuItem command. Is it worth my time, from a performance
perspective, to update this code using the newer VBA commands? Most of the
code is for refreshing combo boxes, saving records, and selecting/deleting
records.
Also is the following correct:
AcRecordsMenu, 5, ,acMenuVer70 Replaced by: Me.Object_Name.Requery
AcEditMenu, 8, ,acMenuVer70 and
AcEditMenu, 6, ,acMenuVer70
replaced by: RunCommand acCmdDeleteRecord