LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

navigation betweet two interfaces

HI everyone 

 

plz how can I navigate betweet two intefaces labview (e.g if I selecte a button from one interface it will takes me to the other one)

 

cordially

0 Kudos
Message 1 of 9
(4,471 Views)

@asso24 wrote:

HI everyone 

 

plz how can I navigate betweet two intefaces labview (e.g if I selecte a button from one interface it will takes me to the other one)

 

cordially


interfaces?

 

What do you mean?

0 Kudos
Message 2 of 9
(4,450 Views)

hi

 

(interface labview) = front panel 

0 Kudos
Message 3 of 9
(4,442 Views)

It is still not clear exactly what you want to do.  Two possibilities come to mind.

 

- Use subpanels.

 

- Or set the VI Properties >> Window Appearance to "Show front panel when called." You may also want to check "Close afterwards if origianlly closed."

 

Lynn

0 Kudos
Message 4 of 9
(4,427 Views)

@asso24 wrote:

hi

 

(interface labview) = front panel 


Honestly, why haven't you taken the free LabVIEW tutorials yet?

 

0 Kudos
Message 5 of 9
(4,426 Views)

Yes, first go though the FREE tutorials the when you know enough about LabVIEW to begin tackling your basic problem, check out this post and the couple following it.

 

Mike...


Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 6 of 9
(4,377 Views)

hi everyone I think that you misunderstand me

If I insert the name and the password and I click to the "ok" button It will takes me to another VI , how I can do that , plz have anyone  an idea about te diagram

plz see the pic bellow

sorry about my english it is not my language mother 

cordially

navigation.PNG

0 Kudos
Message 7 of 9
(4,367 Views)
OK, well the complete answer depends on how the rest of your code is structured.

1. You can as Lynn suggested do something with subpanels,.
2. You could dynamically launch the other Vi when correct information is entered.
3. The other VI could already be open but hidden and blocked by the modal sign on screen.

There are a lot of options.

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 8 of 9
(4,357 Views)

The simplest method is to have a top level VI that does not show its front panel.  This top level VI is often a state machine.  So in your state machine, you just state which VI you call.  If you need to show the front panel of that VI that is being called, use the Show Front Panel When Called and the Close Afterward option in the VI properties.  So when you call that VI, its front panel will show.



There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 9 of 9
(4,310 Views)