Question Double click problem

roney

Member
Joined
Feb 12, 2009
Messages
7
Programming Experience
Beginner
hi all,

I have taken a panel on windows form.

on that panel i have dynamically created 5 textboxes.

Now, my problem is that, when i double click any textbox of these 5 textboxes, i should get its location i.e x,y coordinates .

i have tried the page double click event, panel double click event but all in vain.

Please help its urgent
 
Use AddHandler statement to add handler for DoubleClick event of the textboxes.
 
You can look up "AddHandler statement" in help, there is a code sample there.
 
Also, if you type "addhandler" in an internet search engine you will find both the online help topics and many more tutorials and examples.
 
Back
Top