C# Textbox/ lostFocus

  • Thread starter Thread starter Radhika Dileep
  • Start date Start date
R

Radhika Dileep

When I am double clicking on a textbox in c# it is bringing only the change
event in the code window.

How can I make use of other events of the textbox?
(for button : i need to use doubleclick)

Thanks
 
Radhika Dileep said:
When I am double clicking on a textbox in c# it is bringing only the change
event in the code window.

How can I make use of other events of the textbox?
(for button : i need to use doubleclick)

Thanks
With your interface up in the editor window, select the textbox in question,
then look at the buttons at the top of the Properties Window. You will see a
button with a yellow lightning bolt on it. This is the Events button. Click
on it and the events available will be displayed in the Properties Window.
Find the one you want and double-click on it to create an event procedure
shell in your code module.
Hope this helps.
 

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

Back
Top