12-28-2010 12:45 PM
Right click on the local variable and select Change to Read.
I don't understand your last message.
I would recommend looking at the online LabVIEW tutorials
LabVIEW Introduction Course - Three Hours
LabVIEW Introduction Course - Six Hours
12-28-2010 01:00 PM
i've done it but still dont have the column header like in the front panel after i save the file and open it with notepad
attached is the saved data
12-28-2010 01:38 PM
The header information is not data that is stored in the table, but a separate property of the table. You will need to feed the array of column headers through, write that to the file first as a 1-D array of strings. Then write the data from the table.
12-28-2010 02:04 PM
To expand on Ravens Fans suggestion, simply wire hte Column Headers array to a Write to Spreadsheet File. Wire a True into the Append to File input. Then, to avoid having to specify the file name again on your 2nd write, wire the new file path output through the while loop to the 2nd instance of Write to Spreadsheet File. Be sure to set the Append input to False on the 2nd write. See pictures below:
12-29-2010 12:48 AM
i do as u said..the header column did appear in my save file but my input number dont..do u know why?
please take a look at my vi
12-29-2010 02:32 AM
Hi Hohoi,
there are some changes in the tbob suggestion..
you have to do the below changes ( mentioned in bold letter) in the code to execute as you expect.
1. Wire the Column Headers array to a Write to Spreadsheet File. Wire a FALSE into the Append to File input.(since its going to be new file)
2. To avoid having to specify the file name again on your 2nd write, wire the new file path output (not through the while loop) to the 2nd instance of Write to Spreadsheet File.
3. Be sure to set the Append input to TRUE on the 2nd write - this will append the numeric data in to file you written in step 1
12-29-2010 02:47 AM
Hi Hohoi,
made few changes yo your VI hope it helps you...
Regards,
Prashant
12-29-2010 03:08 AM
Hi G K
i made the changes but my input number still didn't come out in my save file
Hi PCSNF
i cant open ur vi..mine is only version8.6 ;(
12-29-2010 03:16 AM
Hi G K
i made the changes but my input number still didn't come out in my saved file
Hi PCSNF
i cant open ur vi..mine is on version8.6 ;(
12-29-2010 03:18 AM - edited 12-29-2010 03:21 AM
Hi
you are not connected the numeric data in the second write.
Check the vi attached (LV8.6)