Page 1 of 1

Copy from an analog numeric to another

Posted: Tue Nov 06, 2012 8:55 am
by KevinA.
How can I copy from an analog numeric display to another one by pressing a button?

Re: Copy from an analog numeric to another

Posted: Tue Nov 06, 2012 10:03 am
by mark.monroe
You can either associated them both with the same tag, or you need to write a script to copy the value from one to another.

Code: Select all

		void Button1_Click(System.Object sender, System.EventArgs e)
		{
			this.AnalogNumeric1.Text = this.AnalogNumeric2.Text;
		}

Re: Copy from an analog numeric to another

Posted: Wed Nov 07, 2012 8:26 am
by KevinA.
Thanks again for fast reply :D