LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to Write & Read same field(eg Ring field) simultaneously and in same file


hey guys,
i am facing problem in reading and writing from a file to a field(eg ring,numeric) both operation has to be done respectively and front panel having only a single field(used for both read and write).

Thanx in advance

0 Kudos
Message 1 of 12
(3,660 Views)

Hello,

Maybe something like in the example that I made for you? See the attached files. vi can only be open in labview 8.5

Software developer
www.mcm-electronics.com





PORTUGAL
Download All
0 Kudos
Message 2 of 12
(3,640 Views)

In case you don't have 8.5: Right click on the control or indicator, select Create and then Reference.  Now you can pass your reference to a Property node, and use the Value property to set or read (right click, change to read/write).  Property nodes are under Application Control.



Message Edited by JeffOverton on 03-12-2008 03:20 PM
0 Kudos
Message 3 of 12
(3,637 Views)

hey jorge..... thanx for your reply but i am using LABVIEW 7.1 . i would be grateful if u could send some screen shots of those files or solution in LABVIEW 7.1 .

thanx

0 Kudos
Message 4 of 12
(3,624 Views)

Hi devil,

Here is the screenshot of teh VI.

- Partha ( CLD until Oct 2027 🙂 )
0 Kudos
Message 5 of 12
(3,619 Views)

Hello;

Im currently trying create a file and write its first entry, keeping that file open, run a subVI and get the data into a spreadsheet.

On the spread sheet Im getting 2 1D arrays of 10 components each. One representing time, ad the other representing values of a sine function at those time.

I want to attach, or append on top of the spread sheet the name of each of those array before their values.

I new to LabView, .: I apologize if I said something incorrect on the explanation of my problem.

Here is a picture of what I have...


0 Kudos
Message 6 of 12
(3,597 Views)
Hi Caluctra,


I believe this is what you are trying to do. Please let me know if its not.


Eli S.
National Instruments
Applications Engineer
0 Kudos
Message 7 of 12
(3,574 Views)
See attached image.
Eli S.
National Instruments
Applications Engineer
0 Kudos
Message 8 of 12
(3,573 Views)

Hi Eli_S, and thanks for answer my question.

 

At the begining I though about wiring the path of the file I wanted to create to both write to text.vi and write to spread sheet File.vi like you showed on you screen shot. On my struggle to solve the problem I read that because of the parallel manner in which LabVIEW icons execute there could be some issues since both write to text file.vi and write to spread sheet file.vi  icons would try to write to the same file simultaneously, and what I  wanted was to create the file write TimeX\tab\Sin(2*pi*100)\EOL and then with the file open still go to the write to spread sheet file.vi and write the remaining 2 1D vectors.

Something i beleave is curious, at my job I redraw the circuit but in 7.1 version and i could wire the output of the write character to file.vi directly into the write to spread sheet File.vi file path; Something I could not do on version 8.0.

I finally could solve the situation wiring a refurm to path icon from the refnum output of the write to text file.vi to the file path input of the write to spread sheet file.vi. Luckily it worked great.

Im now stuck on another situation again;

Im trying to create 2 1d arrays X and Y. X=Xo+idx, where i=0,1,1...N-1  Xo=lower limit Xn-1=upper limit, and Y=5*X^4.

Now am using 2 formula nodes, one outside a forloop and one inside. One the one outside Im getting dx=spacing btw point and on the one inside the loop am getting the two arrays X&Y respectively.

The error is on the inside the loop formula node and it says integer type required.

I thank you in advance for your help.

 

 

Download All
0 Kudos
Message 9 of 12
(3,557 Views)

Please post your screenshots as .png files, not pictures embedded in word documents.

The reason for the error is that the "to the power of" function is ** not ^

So your formula should be:

x=lower+(i*dx);
y=5*(x**4);

0 Kudos
Message 10 of 12
(3,551 Views)