My project is standalone application. I want to show my search result using user control window. so I added user control to my project. and I wrote code for it attached to form. It attached properly. But I want show my search result using that user control window's text box so how can i do this. Please help me in form1
tr.rtnTxtMake = text;
user control
string txtMake;
public string rtnTxtMake
{
get { return txtMake; }
set { txtMake = value; }
}
This is my code; how do I show this text? It's not working with txt_ree.Text = txtMake.ToString()
;