Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi i have 3 NumericUpDowns and when i change them, change the value of them on data(for ex. on serial data line).
how can i check its value was changed? for ex. display this value on a textbox as textbox1
Posted

1 solution

Use the NumericUpDown.ValueChanged event
 
Share this answer
 
Comments
mohsenvasefi 15-Oct-13 11:14am    
and how can multiple between 3 NumericUpDown? for ex. the equation by (Numeric1*10+Numeric2*1+Numeric3*0.1)
OriginalGriff 15-Oct-13 11:23am    
decimal d = Numeric1.Value * 10M + Numeric2.Value * 1M + Numeric3.Value * 0.1M;
mohsenvasefi 15-Oct-13 12:42pm    
thanks
OriginalGriff 15-Oct-13 13:57pm    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900