Support forum for MegunoLink
-
ElectricRay1981
- Posts: 6
- Joined: Thu Jan 26, 2023 5:27 pm
Sun Feb 05, 2023 5:42 pm
Is there any way to send e.g. the Trackbar.Value to a label.text directly in the interface panel? Or is this impossible?
I tried this:
Code: Select all
[lblSpeedSetpoint.Text] = [TrackBarMotorSpeed.Value]
But this is not accepted
-
philr
- Posts: 430
- Joined: Mon May 26, 2014 10:58 am
Fri Feb 17, 2023 7:16 am
Hi, you can use this notation
{IPTextBox1.Text = IPTrackBar1.Value.ToString()}
I use {} brackets cause it stops any serial data from being sent as well. If you did want serial data to be sent you can change to []