Hi all,

I have problem and I don't now if I can do following in C#
In text box the user will enter text when he click mouse in specific word I wont to take it to my program To handle it .

Please give me some tip,

The text box has a string property called Text which is the entered text in the text box. For example, if you name your text box myText, you can do the following in your mouse click event:

private void MouseClick(object sender, EventArgs e)
{
   string text = myText.Text;
   if (String.IsNullOrEmpty(text)) // check to see we actually have some text
   {
      throw Exception.Create("Require text!");
   }
   else
   {
      // do something here with the string "text"
   }
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.