01-31-2022 02:28 PM
Please use "save for previous" before attaching. Many users here cannot open VIs saved in LabVIEW 2021.
02-01-2022 02:36 AM
sorry for mistake this file labview version 15
02-01-2022 04:53 AM - edited 02-01-2022 04:54 AM
Your Welcome
02-01-2022 05:12 AM - edited 02-01-2022 05:13 AM
Hi guru,
simple answer: when you (or the user) want to change FP element data then you need to use a control.
Indicators only show data (data sink), they aren't inputs (data sources)!
Why do you need so many references and property nodes to access array data?
02-01-2022 05:53 AM
yeah I accept this I try property and invoked node and array reference also but I do not reinitialize the default value it displays previous data on the array so I need to edit the array indicator.
02-01-2022 05:55 AM
Anyone uploads the sample code of reinitializing zero value on the control.
02-01-2022 07:02 AM
Hi guru,
@guru13 wrote:
Anyone uploads the sample code of reinitializing zero value on the control.
Which control are you talking about?
Until now you only had string array indicators…
02-01-2022 10:53 AM - edited 02-01-2022 11:12 AM
What a mess! You have not said what you want to edit at runtime. I assume it is "table data". Right?
Tell us exactly how you use the program, what you then want to edit at runtime, and what you expect to see afterwards.
I think you should start over with the basic LabVIEW tutorials, because most of your code is just plain Rube Goldberg (example)! Once you are more familiar with the basic concepts of dataflow, things will become more clear.
Compare these following two code segments:
Why would you need to reset to default if you are writing new data anyway?
(Note that if you have array diagram constants containing data, you should always make the container large enough to immediately see what the array size is. for larger arrays, just show the scrollbars instead.)
02-03-2022 09:57 PM
Thanks you so much it works very well...