Hi, being kind of new to coding aspect of Access, i am unware what this does. Can someone please give me a quick explanation? Especially the lines aceditmenu,

Thanks

VB Code:
  1. Option Compare Database
  2.  
  3. Private Sub Command31_Click()
  4. On Error GoTo Err_Command31_Click
  5.  
  6.  
  7.     DoCmd.GoToRecord , , acNewRec
  8.  
  9. Exit_Command31_Click:
  10.     Exit Sub
  11.  
  12. Err_Command31_Click:
  13.     MsgBox Err.Description
  14.     Resume Exit_Command31_Click
  15.    
  16. End Sub
  17. Private Sub Command32_Click()
  18. On Error GoTo Err_Command32_Click
  19.  
  20.  
  21.     DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
  22.     DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
  23.  
  24. Exit_Command32_Click:
  25.     Exit Sub
  26.  
  27. Err_Command32_Click:
  28.     MsgBox Err.Description
  29.     Resume Exit_Command32_Click
  30.    
  31. End Sub
  32. Private Sub Command33_Click()
  33. On Error GoTo Err_Command33_Click
  34.  
  35.  
  36.     DoCmd.Close
  37.  
  38. Exit_Command33_Click:
  39.     Exit Sub
  40.  
  41. Err_Command33_Click:
  42.     MsgBox Err.Description
  43.     Resume Exit_Command33_Click
  44.    
  45. End Sub