S
scott
I've got a continuos sub form with a recordsource that's listed below. The
subform dispays accounts and their passwords, etc. My problem is because I'm
using a sql join statement, I can't delete any subform records from the
subform. Normally, I would not use a join statement in a subform, but I was
forced to do it in order to sort by the user's First and Last name that
resides in a related users table (The accounts table has a userID field that
links to users table).
Given that situation, is there any way to delete records from a continuos
subform if the subform has a recordsource that uses a join like my below
sql?
RECORDSOURCE:
SELECT a.accID, a.userID, a.accUser, a.accPwd, a.accEmail, u.userLast,
u.userFirst
FROM accounts AS a INNER JOIN
users u ON a.userID = u.userID
ORDER BY u.userFirst, u.userLast
subform dispays accounts and their passwords, etc. My problem is because I'm
using a sql join statement, I can't delete any subform records from the
subform. Normally, I would not use a join statement in a subform, but I was
forced to do it in order to sort by the user's First and Last name that
resides in a related users table (The accounts table has a userID field that
links to users table).
Given that situation, is there any way to delete records from a continuos
subform if the subform has a recordsource that uses a join like my below
sql?
RECORDSOURCE:
SELECT a.accID, a.userID, a.accUser, a.accPwd, a.accEmail, u.userLast,
u.userFirst
FROM accounts AS a INNER JOIN
users u ON a.userID = u.userID
ORDER BY u.userFirst, u.userLast