shabbaranks
Registered User.
- Local time
 - Today, 15:14
 
- Joined
 - Oct 17, 2011
 
- Messages
 - 300
 
Youve got a one to many on the UserNames and UserGroups this is a many to many. Ive got this at the mo 
 
Also I was feeling brave and went to do some code but Ive obviously written it wrong. Can you spot any mistakes?
 
	
	
	
		
 
shabba!
 Also I was feeling brave and went to do some code but Ive obviously written it wrong. Can you spot any mistakes?
		Code:
	
	
	Private Sub DeleteRecord_Click()
If Me.TimesheetTableSubform.Form.Recordset = "" Then
MsgBox "You have no records to delete", vbInformation
Else
Me.TimesheetTableSubform.Form.Recordset.Delete
Me.TimesheetTableSubform.Form.Recordset.MoveNext
Exit Sub
End If
	shabba!