Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Labview, trying to develop a GUI for Sudoku game

Status
Not open for further replies.

sivamit

Full Member level 4
Joined
Dec 1, 2005
Messages
201
Helped
20
Reputation
40
Reaction score
14
Trophy points
1,298
Activity points
2,651
Hi,
Im trying to develop a GUI for Sudoku game.
In this there is an array which is given as input to a formula node and the same array should also get updated at the end of the fomula node.
My code is running properly but the value is not getting updated in the front panel GUI array..

Please help..
 

Re: Labview problem..

You must use a local variable.

A local variable allow you to write to a control or read from an indicator, which is something you can't normally do with the regular terminals of an object. Locals have two modes: read and write. A local variable terminal can only be in one mode at a time, but you can create a second local terminal for the same variable in the other mode. Understanding the mode is pretty straightforward: in read mode, you can read the value from the local's terminal, just as you would from a normal control; in write mode, you can write data to the local's terminal, just as you would update a normal indicator.
 

Re: Labview problem..

svicent said:
You must use a local variable.

A local variable allow you to write to a control or read from an indicator, which is something you can't normally do with the regular terminals of an object. Locals have two modes: read and write. A local variable terminal can only be in one mode at a time, but you can create a second local terminal for the same variable in the other mode. Understanding the mode is pretty straightforward: in read mode, you can read the value from the local's terminal, just as you would from a normal control; in write mode, you can write data to the local's terminal, just as you would update a normal indicator.

Hi..I m new to Labview.. I really dont know how to use local variable..
Please help.
For ur ref. I have attached my vi file.

My intension is to update the 3x3 matrix (here matrix 6) ultimately the main array..
 

Re: Labview problem..

To create a local variable put the cursor over the object (your array) and then right click to open the pop-up menu; select Create-Local Variable.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top