Login dialog for Windows client application - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:28:50Zhttp://stackoverflow.com/feeds/question/1018575http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application5Login dialog for Windows client applicationPaul Stovell2009-06-19T15:23:28Z2009-06-19T15:42:16Z
<p>Is there a Win32 function I can call to show a Windows login dialog?</p>
<p>E.g., Internet Explorer and Visual Studio's Team Explorer both show a credentials dialog when accessing a website - how can I show that dialog?</p>
<p>I have a .NET Windows client application that uses the logged in Windows user identity when communicating to web services. The services use that user ID to determine who is calling the service and to decide what they have permissions to see. </p>
<p>I would like to add a command that allows the current user to do effectively a "run as", where they can enter the username/password of another user and we have the application act as them. </p>
<p>I could build a custom dialog and use the LoginUser() function, but I would rather use something "official". </p>
http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application/1018636#10186361Answer by Bob Nadler for Login dialog for Windows client applicationBob Nadler2009-06-19T15:36:29Z2009-06-19T15:36:29Z<p>I think you're stuck creating your own dialog. It's not that hard to make it look official though.</p>
http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application/1018662#10186625Answer by SLaks for Login dialog for Windows client applicationSLaks2009-06-19T15:42:13Z2009-06-19T15:42:13Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/aa375177.aspx" rel="nofollow">CredUIPromptForCredentials</a> API function</p>
<p>See also <a href="http://weblogs.asp.net/hernandl/archive/2005/11/21/usercredentialsdialog.aspx" rel="nofollow">here</a></p>