B Blue-Apple New member Local time Today, 22:16 Joined Feb 22, 2005 Messages 6 Feb 27, 2005 #1 I create a delete button on my form but sometimes it doesn't work (the record has not been deleted after I clicked it). Does any one know why ? thanks~!
I create a delete button on my form but sometimes it doesn't work (the record has not been deleted after I clicked it). Does any one know why ? thanks~!
S ssoltic Registered User. Local time Today, 12:16 Joined Sep 1, 2004 Messages 65 Feb 27, 2005 #2 This code must be on Click event of button Code: DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70 DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
This code must be on Click event of button Code: DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70 DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
B Blue-Apple New member Local time Today, 22:16 Joined Feb 22, 2005 Messages 6 Feb 28, 2005 #3 Thanks, I will try that.