It would depend on how your users log on, If the Username / UserLevel are stored as variable or actually visible on the form then you could use the OnCurrent event for the form:
If UserLevel = "Admin" Then
Cmd_Add.Visible = True
Cmd_Delete.Visible = True
Else...