Form for Windows Authentication

L

Luigi Z

Hi all,
in my WinForm (C# 2.0) application, I need to create something that consent
to run the .exe only for user in an intranet.
Something that present 2 textbox, username and password, with username
already filled with the name of the user, which then insert its password, and
then the application starts.
Has anyone ideas to create this?

Thanks in advance.
 
N

Norman Yuan

If you are doing your Win Form app with VS2008, go to project properties and
select "Services" tab, check the check box of "Enable client application
services". For more information on this, click "Learn more about client
application services" link, or search the net for "client application
services".

Of course you can re-invent the wheel (doing your own user loging
in/authentication) as it has been re-invented so many times.
 
L

Luigi Z

Norman Yuan said:
If you are doing your Win Form app with VS2008, go to project properties and
select "Services" tab, check the check box of "Enable client application
services". For more information on this, click "Learn more about client
application services" link, or search the net for "client application
services".

Of course you can re-invent the wheel (doing your own user loging
in/authentication) as it has been re-invented so many times.

Thanks for response Norman; unfortunately I'm using Visual Studio 2005 (C#
2.0).
I can get it all the same?

Luigi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top