Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sorry, I'm not quite sure what you are asking. I assume you tried changing the primary keys and it would not put in a duplicate contact record but I don't understand the last queston.vanlanjl said:Also how do i make it populate the form?
Private Sub Combo37_AfterUpdate()
Me.RecordsetClone.FindFirst "[Last Name] = '" & Me![Combo37] & "'"
If RecordsetClone.NoMatch Then
MsgBox "No Match"
Else
Me.Bookmark = Me.RecordsetClone.Bookmark
End If
End Sub
SELECT tblUserName.Username
FROM tblUserName
ORDER BY tblUserName.tblUserName.[LastName], tblUserName.Username;
SELECT tblContacts.ID, tblContacts.Company, tblContacts.[Last Name], tblContacts.[First Name], tblContacts.[E-mail Address], tblContacts.[Job Title], tblContacts.[Business Phone], tblContacts.[Home Phone], tblContacts.[Mobile Phone], tblContacts.[Fax Number], tblContacts.Address, tblContacts.City, tblContacts.[State/Province], tblContacts.[ZIP/Postal Code], tblContacts.[Country/Region], tblContacts.[Web Page]
FROM tblContacts;