Copy from an analog numeric to another
Posted: Tue Nov 06, 2012 8:55 am
How can I copy from an analog numeric display to another one by pressing a button?
Support forum for iX Developer users
http://ixtalk.beijerelectronics.us/
Code: Select all
void Button1_Click(System.Object sender, System.EventArgs e)
{
this.AnalogNumeric1.Text = this.AnalogNumeric2.Text;
}