Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Move textboxes from a tab to another tab is not good? 1

Status
Not open for further replies.

RSX02

Programmer
May 15, 2003
467
CA
Hi
I had many textboxes, check box, combo box, radio button, well...many objects in a tab control (let's called it Tab1)
I had to move all them in a new tab control (called tab2)
Since I moved them, all the events that I have for all of them doesn't occured. For example, if I had code in my SmBuildingNetSensibleLoad_TextChanged event, even if I make the change in this textbox, it doesn't proceed the code that I have in it.
When I double click on the textbox, it brings me to SmBuildingNetSensibleLoad_TextChanged_1 (the "_1" is the difference)
Why it does this?! I don't want to reput my code for all these items in others events.
Do I have to reset something to make it works correctly?
Thanks in advance
 
the name of the function isn't important. Look at the end of the line for the "Handles [ObjectName].[EventName]"

if that portion is missing, type it in. For example: Handles Textbox1.KeyPress

-Rick

----------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top