04-16-2015 09:16 AM
Hi.
I want to create five different views. Each view consists of some numeric indicators showing values that i get from a database. I want my main screen to be consisting of icons.
Thnx
04-16-2015 09:27 AM
Let's enhance your question with a question. Are you wanting to have 5 separate monitors displaying a FP?
04-16-2015 09:48 AM
@Raiz wrote:
Hi.
I want to create five different views. Each view consists of some numeric indicators showing values that i get from a database. I want my main screen to be consisting of icons.
- Can i make five different independent views
- Can i use icons to switch amongst different views
Thnx
make use of horizontal and vertical split bar..
04-16-2015 10:07 AM
There are a number of ways of doing this:
In either case, the code for implementing the interface is not too difficult. For examples/discussion of both techniques, check here.
Mike...
04-16-2015 10:22 AM
Hi
Thanx for your prompt reply.
I have to display separate screens on same monitor.
For example in wincc flexible you can make different screens on different layers and navigate amongst them. is it possible in labview? i am not able to figure out the starting point becoz of my limited knowledge og labview?
Thanx
Mahi
04-16-2015 10:29 AM
The basic answer to your question is "Yes, it is possible to have multiple panels on a single monitor". There are multiple ways to do this (splitting the screen, using sub-panels, using a Tab control), but they are not "beginner" tasks. If you want to do this yourself (as opposed to asking an experienced LabVIEW user to do this for you, and just wanting to know if it is possible or not), then start learning LabVIEW, perferably with someone who has experience and can give you hands-on guidance. At a minimum, spend the time to view all (or most) of the LabVIEW tutorials on the Web, and be prepared to put a decent amount of time into gaining the expertise you will need.
Bob Schor
04-16-2015 10:37 AM
I am of the mind that what you want to use is tabs. Pretty simple.
04-16-2015 10:41 AM
Using a tab structure with each tab representing each of your views might work. Using a case structure. Feed the output of tab control to the case structure. Whenever you are on the tab corresponding to a given display put the code for that display inside the case structure.
04-16-2015 10:52 AM
04-16-2015 05:47 PM
One way I've prevented "Block Diagram Mess" when dealing with Tabs is to put the Tab Control in an Event Structure and have a Queued Message Handler "waiting in the wings". When you click on a Tab, the Event Loop responds by sending a Message whose name is the name of the Tab. All that Message has to do is focus on doing whatever the Tab needs to have done (which is often "not much", as it is sometimes just a repository for some controls and indicators).
Bob Schor