Hi,
How to take control like sliderextender in windows form.
Any suggestion would be appreciated!
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
FroglegPosted Mar 1, 2011, 3:00 AM
private void trackBar1_Scroll(object sender, EventArgs e)
{
textBox1.Text = Convert.ToString(trackBar1.Value);
}
Vijay YadavPosted Mar 1, 2011, 4:57 AM
Thanks for your reply!!!