A message comes up saying that credentials cannot be verified. The edit window does come up, but immediately wants to close and asks if you want to save the data. If you click Cancel, you can go ahead and add the user.
This doesn't happen when you try to edit a current user or if you try to add one of the other items (roles, etc).
And since you seem to be the Orkin man today, let me know if you find anything else
You guys are quick. I was just about to report the bug that Kevin found and I see that it has already been fixed. But I do have another one. In the source code for the Security project there is a bug in the project that prevents the source from compiling. The post-build event command line does not reference AfterBuild.bat in the correct location.
The current command line is
c:\AfterBuild.bat "$(TargetPath)" "$(TargetDir)$(ProjectName).xml"
Changing it to the following fixes the problem
"$(SolutionDir)AfterBuild.bat" "$(TargetPath)" "$(TargetDir)$(ProjectName).xml"
-Larry