| Author: Sabu C Alex 12 Aug 2008 | Member Level: Gold | Rating: Points: 1 |
hai anu
create a property in usercontrol to get the value from textbox
|
| Author: Nagarajan 12 Aug 2008 | Member Level: Gold | Rating: Points: 3 |
Create a public property in your usercontrol / customControl, wrapping the numeric textbox's text property
inside the usercontrol
public string Text { get { return nTextBox.Text; } set { nTextBox.Text = value; } }
|