TouchScreen
David_w
Posts: 23
What type of code would allow me to show the numbers I type, to also show up on the touchscreen. I think its some sort of string I should be using. I am trying to get the channel 1-99 on the VCR to be displayed also on the touch screen. I have the button setup on my touchscreen as a text input (is that correct) but I have no ideal how to write the code. Any help would be great as I learn program.
0
Comments
This should do what you need. You will have to create a STRING: event for the touchpanel to get the numbers entered tho.
Jeff
DATA_EVENT[dvTP] // dvTP is your Touch Panel Device
{
STRING: // it will trigger when you receive a string from touch panel
{
// all texts received from touch panel will be placed in a system variable named DATA.TEXT type CHAR
}
}
Vinc