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.
 
Back
Top