Copy from an analog numeric to another

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
KevinA.
Posts: 34
Joined: Wed Oct 24, 2012 1:22 pm

Copy from an analog numeric to another

Post by KevinA. »

How can I copy from an analog numeric display to another one by pressing a button?

mark.monroe
Posts: 824
Joined: Tue Mar 13, 2012 9:53 am

Re: Copy from an analog numeric to another

Post 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;
		}
Best Regards,
Mark Monroe

Beijer Electronics, Inc. | Applications Engineer

KevinA.
Posts: 34
Joined: Wed Oct 24, 2012 1:22 pm

Re: Copy from an analog numeric to another

Post by KevinA. »

Thanks again for fast reply :D

Post Reply