Tab Control Question

Dear Sir
If I have a control in the front panel of one page in tab control and I want to add the same control in another page in tab control to use it. How can I do that ??
I'm waiting your reply

Then you are probably going to want a loop with an event structure.
One event would be: Changed Value on control 1.  When that happens, you need to also change the value of control 2 (to the same number).
Second event would be: Changed Value on control 2.  When that happens, change control 1 also.
There are  a variety of ways of changing the value of a control (the easiest, but least elegant is to use a local variable) -- the important thing is the event structure.
-Matt Bradley
************ kudos always appreciated, but only when deserved **************************

Similar Messages

  • User-Interface tab control question

    Heey everyone,
    I`ve disigned a program and a user interface, on this user interface there is a tab control (see attachement) in this tab control you can select several measurements. This is a school project and according to my teacher it isn`t clear enough which measurement is chosen.
    My question: Is there a way to give the active tab a different color? If not then do you know a way to create a nice user-interface which has the same abilities as the tab control (select measurement and fil in values for the measurement).
    Thank you
    Currently using labview 8.2.1
    Solved!
    Go to Solution.
    Attachments:
    tabcontrol.JPG ‏211 KB

    Hi Grasman,
    it is possible to give different Tabs different colors, first you should activate Multiple colors - "Right-click on a tab on the control. Select Advanced » Allow Multiple Colors.
    To change only the color of the active tab, please see Steve Birds VI, you can find this on the following forum post
    Active Tab Color
    Regards,
    Tobias

  • How can I set the tab order of text box controls on each page of a tab control?

    I need to be able to select the tabbing order of individual controls on a single page of a tabbed control. How??

    In LV 6.1 an up you should be ablel to right click on the edge of the tab control when the tab-page in question is selected.
    The bttom selcetion in the pop-up is "Reoder controls in page..."
    selecting this option will switch editing modes to allow you to specify the ored, just like in a cluster.
    I seem to remeber in older versions you had to drag the tabable controls off the tab control, specify the tabbing oder and then drag them back on. The oldest version I have on this machine is 6.1 so that all I can speak for at the moment.
    I hope this helps,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How can I create a exe file with a tab control on it that work´s ?

    I have a VI with many controls and indicators,these are spread on a tab control.This tab control works with out any problems but if i create a exe file then the tab control is fixed. How can I create a exe file so that the tab control on it work´s ?

    I have made a new Posting with the same question but this time I added a screenshot of the VI.
    Attachments:
    project7.1.jpg ‏129 KB

  • Export image EMF from tab control, help!!

    Hello,
    I am trying to get a good resolution report. I got use export image to EMF file so the graphs look very good resolution. When I appended the image control like png it looked poor quality. Now is ok, now I export image of graphs to emf and then use 'append image to report' using the path of file emf.
    But I have a problem in this case. I am trying to get EMF file from Tab control. I have 8 graphs inside of each page of tab control. I would like to get each page exporting to EMF file and later append the image to report from path of file. The problem is I cant export to emf. I tried the solution in this treads.
    http://forums.ni.com/t5/LabVIEW/send-control-image-programmatically-to-clipboard/td-p/180921/page/2
    But it uses get image and it is bmp, so no good solution.
    I attached pdf file. IT shows the tab control with append control to report (it is like capture in png file) and one graph append control to report png and emf file of another graph and use the path to input in word report. You can see the diference.
    I would like to know if i could export the tab control to emf or any onther vectorial image and later use the path. SInce it will take several pages and i will need sometimes 300-400 graphs...
    Any idea would be great.
    Best Regards.
    Attachments:
    z-capture.png ‏34 KB
    Report22.pdf ‏212 KB

    Hi Mike,
    Thanks for your reply!.
    Well, it was only one example. Check the attached file. It works ok. I split in dataset of 8sec and save the emf files.
    The problem is the report. If I enable it doestnt works fine, since you will be the both parts working in the same time.
    That's why the sequence structure would be ok, one time all the graphs are saved then I could append to report.
    I have another question. I used transparent graph and it works ok. I remove all the scales Y values or labels and customized the graph adding one horinzontal line for X scale (like capture), but in the file emf saved didnt appear. Do you know why?.
    Best Regards, Fred.
    Attachments:
    z-capture1.png ‏31 KB
    z-capture2.png ‏16 KB
    Report1.pdf ‏267 KB

  • Reorder tabs in "tab control"

    To all those willing to help:
    I am using LabVIEW 8.6.  I have created several applications using "Tab Controls" to reduce the size of the UI.  This last one has been problematic in that the first tab does not display when the application is launched.  I have reviewed all project files and configuration settings without luck.  I have also searched through the help files and the NI web site without success.  So I am posting my question here...
    How does one change the tabbing order for the tabs of a "tab control"?  Any and all help would be appreciated.  My thanks ahead of time. 
    Bill Buxton
    Bill Buxton

    Bill,
    Guenters solution will work if you can programatically determine your tab order.  If you would rather rearange your tabs though (see example)
    You can right click the tab control
    and up pops
    I haven't found a way to set this programatically-
    Jeff

  • Create a log in tab in tab control and to create one of the tab is disabled and grayed

    Hello there
    Can you helpme to solve my question about log in in tab control? So basically i have two page in a tab control, page 1 contains log in such as username, password and login button and second page is nothing. After the user input the correct username and password into the string form, page 1 will be disabled and grayed and autmoatically will be in page two? I also upload the vi that i created and please correct me if i have something wrong about my vi.
    Please help me with this asap, because i have assignment based on the lab view about client server.
    Thanks
    Solved!
    Go to Solution.
    Attachments:
    Untitled 112.vi ‏19 KB

    Hi,
    Aaa.. the blue box is an Enumeration Constant. Because I've used something like this you cannot change the name of the Tabs. To fix it:
    Simply replace these two Constants with Numerical Integer Constants 0 - for the first Tab and 1 - for the Second Tab. It took me a while to understand what you wanted to say . This way you can change the name without getting an error.
    I've rewritten the entire VI in order to be clean (I was ashamed of the previous one). You can still use the first one.
    Just an advice: Even if it looks at the beginning more complicated try to use Event Structure all the time when you have buttons. The use of loops with buttons and if structure (like in your vi) creates a lot of problems and it's hard to debug.
    Paul
    Attachments:
    password.vi ‏35 KB

  • Tab control page label change color programmatically

    Hi everybody!
    I have a question about a tab control.
    I'm trying to figure out a way to programmatically change the  properties of the tab labels so the selected tab's label looks different to the others.
    I'd like to do this by changing aspects of it's font and it's color. But I can't find out how to access it either directly or by reference.
    I can get at the label string so if all else fails I could make the selected one all capitals!
    Am I missing something, or is this one of those things which can't be done?
    I'm using Labview 11.
    Regards,
    Jonathan.

    The link still works for me!
    Search the forum for "Tab Color".
    This does not change the text, but the tab color which is what I do to high light the selected tab.
    I use dark gray and light gray to help the user tell which tab is "active".
    Not exactly what you wanted.
    http://forums.ni.com/t5/LabVIEW/How-can-I-change-the-font-color-size-of-tab-controls/m-p/967920/high...
    http://forums.ni.com/t5/LabVIEW/Programmatically-changing-page-color-in-a-tab-control/m-p/840699/hig...
    http://forums.ni.com/t5/LabVIEW/tab-control-color/m-p/3062557/highlight/true#M873360
    Omar

  • Tab control colour

    Hi All,
    A annoying problem ive come up against. Why is the colour of my tab control different to my background and cluster colour? They are supposed to be all the same. I used the 'Get Colour' tool and applied the colour to all items. I have attached a vi (LV8.2) to demonstrate this. Any ideas?
    Attachments:
    tabcontrol_colour.vi ‏7 KB

    This is a great question. I have studied the differences and can visibly tell exactly what you are saying. Nevertheless, there are colors which look the same.
    For a good grey use: 12369084
    There are other colors that I was able to find.
    However, the best thing to try is this: If you want the Cluster to be the same color as the tab control, make the background of the cluster transparent. When you are changing the color hit the space bar to select between border and background and hit the the "T" in the top left corner of the color change box.
    I hope this helps,
    Rick Kuhlman
    Applications Engineering

  • Lock Tabs with Tab Control

    Hi all,
    I am working on a LabVIEW program with a tab control that creates five tabs with questions on each tab page.  I would like to lock the tabs such that the user could not move on to the second tab by clicking on the next tab, but only by clicking on the correct answer to the question displayed on the tab.  If that is not possible, I would like to at least lock the tabs so that the user could only move on to the next tab after a set unit of time, or that they were automatically directed to the next tab after that amount of time.  I'd really appreciate any help that could be offered!
    Thanks!
    Lora

    You could use an Event structure to detect when the user tries to move to a new tab and test for your conditions there.
    Message Edited by jcarmody on 04-17-2009 08:03 PM
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice
    Attachments:
    Example_VI_BD.png ‏5 KB
    Untitled 1.vi ‏12 KB

  • Tab control color

    I posted a similar topic a few weeks ago and I had marked it as solved because I had an individual VI running this block of code that worked. However, once I implemented it into my VI, it stopped working and I have no idea why. What it's supposed to do is cycle back and forth between tab controls and whichever tab control is currently selected will have a different background color. It should change the color of the tab whether it was manually selected or selected by the automatic cycling. I will include the standalone VI, which is working perfectly fine, and the full VI where it is no longer working. Any help will be greatly appreciated. Thank you! (P.S. everything else in the full VI works just fine. The only thing not working is the color of the tabs. Everything else in the event structure works just fine. tab colors auto switch is the working VI.)
    Solved!
    Go to Solution.
    Attachments:
    tab colors auto switch_MODCA.vi ‏17 KB
    1222OakRoomTabColor.vi ‏219 KB

    altenbach wrote:
    Next time, continue with (or at least give a link to) the previous discussion. No need to start a new thread with the same subject.
    Do NOT mutiliate one of my carefully constructed VIs (with MODCA in the name) and post the butchered version under the same name. This is disrespecful. If you modify a VI, change the file name.
    Just glancing at your "oak room" VI, it seems extremely inefficient with lots of duplicate and questionable code. Do you really need to get the tab pages references in three different places? Once outside the loop is probably enough, just branch the wire.
    I was thinking of continuing the previous thread, but I thought it wouldn't be such a good idea since I had already marked it as solved. As far as the filename, I apologize. I didn't know that it was disrespectful in any way. Thank you for the suggestions on the code. I am currently working on getting the code to function and then going back to clean it up. Perhaps this isn't the best method, but I am on a tight deadline and this is my first attempt at ever working with labview or any coding for that matter so I am having a bit of trouble with it. 

  • Changing tab control strings

    I found that if I modify the TEST_UUTS string in ModelStrings.ini, I can change the text displayed in my entry point button.
    [MODEL]
    TEST_UUTS = "ATE TEST"
    SINGLE_PASS= "DEBUG"
    Similarly, I made changes to UIControlOperatorInterfaceStrings.ini to change what shows up in the tabs for my Top-Level VI in the TestStand 3.5 Operator Interface.
    [TSUI_OI_MAIN_PANEL]
    EXECUTION = "Test Execution"
    SEQUENCE_FILE = "Test Sequence"
    Now for my questions - one specific, one general
    1) If I add a page (tab) to my tab control (say Quick  BIT), I was told I could just create a contant in CustomStrings.ini and TestStand would grab the text out of that file.
    [TSUI_OI_MAIN_PANEL]
    QUICK_BIT = "Quick BIT"
    How/where does it do that?  I assume this constant (QUICK_BIT) would have to be unique and it would have to be specified in one of the properties dialog boxes somewhere?
    2) In general, where does TestStand use these contants (say, for example, the one for TEST_UUTS)?

    Hi,
    You have to call the TestStand - localize Front Panel.vi, which is found in the TestStand Palette in your LabVIEW. You need to provide the Engine reference which you can obtain from IAppllicationMgr.GetEngine and also a string containing the section name found in your CustomStrings.ini
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Create "Tab Control" like the news section in sap-corporate-portal

    Hello everyone,
    my name is akan korul and i'm a student working with the enterprise portal (EP 6.0) for about two weeks.
    about my problem:
    I want to create a tab control (tabstrip) similar to the sap corporate portal news section. How could i realize this very nice object? I was searching for similar threads but i think the creation of the tabcontrol via html is not a suitable solution. Any other ideas?
    I need this tab control to display our weekly company menu in a separate section.
    Thank you very much in advance to everyone.
    With best regards
    Akan Korul

    Hello Detlef,
    thank you very much for your suggestion and your helpful answer. Maybe I have to specify my problem a little bit:
    I want to create a very simple TabExplorer with following structure:
    Monday/Tuesday/Wednesday/Thursday/Friday
    Each day contains the menu (lunch) and some other informations, which has to be maintained by the employee himself.
    @Detlef: Thank you for the information but is there just an easier way to realize this?
    apologize these questions but I'm an absolutely newbie on this topic :-).
    With best regards / Grüße
    Akan

  • I use LabView 6i and I use Dialog Tab Control, but I can't put colors on it, some one try it before?

    The Diaglog Tab Control works very well, but I could not paint it with Front Panel tools or with its property. Any one knows about this, thanks!

    THANK YOU!!! I have spent hours searching for the answer to this question. I didn't realize that there were two different tab controls! This is just another example of why I use NI products and software. Where else will you get this kind of product support.
    Dave Green
    Process Systems

  • Tab Control Lock ? File Permanent Delete ?

    I have couple of questions.
    I have a tab control that I use for displaying test metrics during run-time. The first tab has a bunch of graphs. Whenever I browse to other pages in the tab during run time, the graphs do not autoscale. So I want to lock the tab for a particular amount of time when the test is in progress. Is there a way to do it ? I am not able to find a property node that would do it.
    Also, I am deleting some temp files generated by my code after test completion. Is there a way to permanently delete it ? [I do not want these files in the recycle bin]
    Thanks
    Kudos always welcome for helpful posts

    (1) Create a property node for the tab control, select property: disabled, and wire a "1" to it to disable, then change to 0 to enable it again later.
    (2) How are you deleting the files? If you use the delete function from the file I/O palette, they will not end up in the recycle bin. Your program should do the cleanup as part of the exit code automatically.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Parsing XML data stored as CLOB in DB and save attribute values in table

    Hello, I have a CLOB column in table that is holding XML data as follows, <banners> <banner-image id="0"> <type>BANNER</type> <local-path>http.gif</local-path> <click-through-url>www</click-through-url> <make>Acura</make> </banner-image> <banner-imag

  • Pls. help with ADO Error Code

    Somebody pls. advise how to overcome this error  see snapshot [http://img16.imageshack.us/my.php?image=errw.jpg] The SQL returns results in TOAD but CR is unable to recognise th tables.  Mave

  • Forms runtime error

    I am getting below error in form 6 & 6i while runing, there are no issues in compiling, but after runing a form I am getting below error. Compiling procedure FETCH_DATA... Compilation error on procedure FETCH_DATA: PL/SQL ERROR 0 at line 0, column 0

  • Adding participants to the conference by dilout

    Hi everyone, We have a problem with Lync 2013 conferences. When we try to add a participant by calling him to the phone number - we receive error that "Phone number can not be reached". If try to add the same number few times - it will dial normally.

  • Issue after 10.7.5 combo update from 10.7.4

    10.7.5 Combo updater has messed up up all 3 iMac 3.4GHZ i7 SSD 16GB Ram I upgraded from 10.7.4. -The worse nightmare of all: Spotlight has become DEAD slow to index main boot SSD with only 45gb used 203 free, it shows 3 days with 10.7.4 it was doing