08-05-2015 01:39 AM
Dear,
I got no code yet because i really don't know how to do it,
i got a table and in the first column store data like 1,2,3,4,5 ...
now sometimes its necessary to block a cell that when im reading the values
a number can not written to a cell like 1,.,2,3,4,5...
how can i do that ?
08-05-2015 02:46 AM
08-05-2015 02:58 AM
thx for the answer but those data are coming from rs232 so it is not user input
so i should be able to switch out a cell with software.
greetings and thx
08-05-2015 03:01 AM - edited 08-05-2015 03:01 AM
Hi drek,
those data are coming from rs232 so it is not user input so i should be able to switch out a cell with software.
You wrote you got a table. A table is an UI element displaying data to the user…
When you receive your data from RS232 you need to parse the data. In this parsing process you can handle all the data items as you like, including "blocking" parts of them…
08-05-2015 03:02 AM
but dont find the command to block a cell ? 😉
08-05-2015 03:05 AM
Hi drek,
there is no "ready-to-use" command!
It's your job to parse the received string. And it's your job to handle the received data in the string. And it's your job to put the data from the string into a "table" (or better: array) and while doing so filter out unwanted items! (All this is called "programming" 🙂 )