Copy from an analog numeric to another
Copy from an analog numeric to another
How can I copy from an analog numeric display to another one by pressing a button?
-
- Posts: 824
- Joined: Tue Mar 13, 2012 9:53 am
Re: Copy from an analog numeric to another
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
Mark Monroe
Beijer Electronics, Inc. | Applications Engineer
Re: Copy from an analog numeric to another
Thanks again for fast reply