fiogf49gjkf0d I dont think there is an out of the box ASP.NET selectall(), but you could add some javascript to do this from your onchange event...
As Raul mentioned it is a composite control, I think the TextBox is the first control in the colleciton though so something like this may do the trick:
((TextBox)MYCURRENCYCONTROL.Controls[0]).Attributes.Add("onfocus", "this.select()");
Do this as well as your Focus() call and it should then run the javascript you have attached to the control to select everything. Give that a try..
Cheers,
Nick
|