C#Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
i have a registration form.
i have two text fields 1.password 2.confirm password
can anybody help me to find out
how to disable copy - paste for a (confirm password) text box control
both by keyboard and mouse right click ?
You could overwrite the KeyPress event and suppress the pressing of the Ctrl+V key combination. Likewise you could give the control a context menu with no items on it which should override the default one.
But it is also possible to paste with MouseRightClick and Paste command. I don't want to disable the contextMenu because I will allow to copy the text, but not paste.