views:

136

answers:

1

Hi,

I want to create password field in Data Grid view in WinForm c# .NET.

How should i proceed?

+1  A: 

If it's for creating a password and you must do it in the grid, just use plain text and clear it out once you create the account.

If you're building an app where a customer service rep builds an account for a user, either send the user a password you generate or use some default password for your company (I would only use this with internal-use-only software). Then force them to change it on the user's first login.

I can only assume you don't want the ability of your grid users to view passwords. If indeed that is the case, don't do it!!!

Austin Salonen