Didn't expect to be back so quickly, but here we are...
I'm running an SQL UPDATE Statement to update a users record for information stored on them
This is the code I'm using
LoginID is a public variable defined when the user logs in as a unique id for the user as they enter the system
This is repeated for each text box input then it's run with this:
This is also copy and pasted for each text box.
Call me blind, but I can't see the issue - although I'm sure it'll be pointed out to me easily.
Any help is as always greatly appreciated.
Thanks, Ryan
I'm running an SQL UPDATE Statement to update a users record for information stored on them
This is the code I'm using
Code:
SQLForename = "UPDATE tblUserDetails SET FirstName = " & txtForename & " WHERE LoginID = " & LoginID
LoginID is a public variable defined when the user logs in as a unique id for the user as they enter the system
This is repeated for each text box input then it's run with this:
Code:
CurrentDb.Execute (SQLForename)
This is also copy and pasted for each text box.
Call me blind, but I can't see the issue - although I'm sure it'll be pointed out to me easily.
Any help is as always greatly appreciated.
Thanks, Ryan