03-12-2016 04:38 AM
hi
how can i Clear Text of "write buffer" When i Press Enter ?
03-12-2016 06:16 AM
hi
send me the more details or example code what your try...
03-12-2016 06:40 AM
@md3848 wrote:how can i Clear Text of "write buffer" When i Press Enter ?
Assuming "write buffer" is a control on your front panel, you will need an event structure to capture the value change event of the "write buffer" and do whatever it is you need to with that value. Also in that event case, use a local variable to write an empty string to the control.
03-12-2016 07:01 AM - edited 03-12-2016 07:04 AM
03-12-2016 07:06 AM
No. Do NOT use the Value property for this. Use a local variable. The property node is 1000s times slower than the local variable.
03-15-2016 12:04 AM
hi crossrulz,
No. Do NOT use the Value property for this. Use a local variable. The property node is 1000s times slower than the local variable.
IF use local variable can't able to controll the data flow.than why your say use local variable..
03-15-2016 02:22 AM
Hi Gokul,
in the image the DATAFLOW is (apparently) enforced using a flat sequence.
So why waste precious CPU time for thread switches by calling a property node when a local variable will give the same result in less time?
03-15-2016 02:34 PM
@GokulGKM wrote:IF use local variable can't able to controll the data flow.than why your say use local variable..
A property node does not follow data flow either. It introduces the exact same race conditions as a local variable, but it horribly slower.