Visual studio textbox changed to textbox_textchanged. I cannot link the textbox with

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JamesOliver2234
    New Member
    • May 2014
    • 1

    Visual studio textbox changed to textbox_textchanged. I cannot link the textbox with

    All of my textbox's are turned into textbox_textcha nged. I am trying to create a login system on visual studio c# and whenever I try to link the text box with a button it gives me an error. Please help!

    Ex.

    Error - "TextBox2_TextC hanged.text" cannot be grouped with multiples
  • Luk3r
    Contributor
    • Jan 2014
    • 300

    #2
    The name of your Textbox is simply Textbox2. "TextChange d" is an actual event. You should just be using: Textbox2.text

    Comment

    Working...