guyz,

I've written the following code but it doesn't work

Dim usrTemp as DAO.User

set usrTemp = wsMyWorkspace.Users("OldUsername")
usrTemp.Name = sNewUsername

upon reading VB's documentation I know that it failed because the 'Name' property is read-only. the documentation also states that it is read/write when 'unappended' however.

what's the correct way to rename a user? is it possible???

thanks