Customize Simple OI - Top-Level VI.vi

How do I resize TestStand objects on the front panel of Simple OI - Top-Level VI.vi ?
Most of them are not resizable with LabVIEW 8.0, 8.2, and 8.2.1
Any idea ?
George Zou
http://webspace.webring.com/people/og/gtoolbox

Hi zou,
Sorry for the tardy reply.
We are investigating this behavior further. You are able to resize the objects in the Simple OI in LabVIEW 7.1, but are unable to do so in LabVIEW 8.X. As a workaround, you can use one of the following methods:
1) Create a new control (all new controls are resizable) and delete the old control. You could then reconnect the new control
2) Replace the old control with the same control. This will automatically reconnect the control for you on the block diagram.
3) Customize the control by right-clicking on the control and select Advanced >> Customize. You can then resize the control.
As I said, we are investigating this further and when I have more information, I will let you know.
Matt M
NI

Similar Messages

  • Personalize Top Level Navigation.

    Hi,
    We are planning to implement some customization to portal Top Level Navigation.
    In our system we are having around 20 roles, We need to display only five roles at a time in TLN TAB. Remaining will be accessible on clicking More Tab (After fifth role), which will display remaining roles in hover menu.
    We acheived this part successfully.
    The second part of the requirement is, user should able to personalize the order(sort priority) of his role. So that he can always display frequently using role first.
    How we can develop this part.
    Please feel free to write any thoughts on this.
    Regards
    Baby

    Alex,
    Thanks for the reply.
    That's exactlly my requirement. I like to discuss more on this.   
    Can u explain me what do you mean by storing in database? I need more help on this part.
    My inital thought was to create an application which will function in a simliar way of end user personalization of iviews and pages.
    SInce all the sort informations are maintained at entry point (role) level, should i go at each role and maintain personalized information.
    Is it practilcally feasible to create an application to manage all these personalizations.
    Is there any other simiple solution to this.
    Regards
    Baby

  • How to display image in top level navigation

    Hi,
    how can i display an image in the top level navigation?
    (looks like the top level navigation of the SDN)
    Thanks,
    Norman

    Hello Norman,
    Please read through these forum links which also deal with customization of Portal 'Top Level Navigation'.
    Basically you need to download the required masthead.par and make the necessary changes as mentioned in the forum messages as belwo:
    [Customizing Top Level Navigation|https://forums.sdn.sap.com/thread.jspa?threadID=511530]
    [Customize Portal TLN|https://forums.sdn.sap.com/thread.jspa?threadID=1145007]
    Hope this helps.
    Regards,
    Shailesh

  • Changing permissions on a top level public folder WITHOUT affecting the folders underneath it in Exchange 2007

    Hello everyone,
    We have a pubilc folder we woudl like to lockdown to just the IT techs, but we want eveything below to function as it normally has been.  We have several folders underneath this folder with various permissions for our end users that we dont want changed. 
    How would you change the permissions on a top level folder without affecting (propagating) the folders underneath it?  Also, If I go into the "Administration" tab of the properties of the top level Public Folder I see an option to
    make this folder available to: "All users with access permission" or "Owners only". Would it be as simple to select "Owners only" here or will that restrict the down level folders as well to just the owners?
    Thanks,
    John

    Hi,
    You use PFDAVAdmin to customize your permission level for mailbox and public folder. This is good tool which helped me a lot in most of the permission issue for PF and Mailbox. Follow the below article for more detail of PFDAVAdmin Tool
    http://www.nigelboulton.co.uk/2010/12/delegating-and-propagating-exchange-folder-permissions-using-pfdavadmin/
    Exchange Queries

  • Front panel of a vi pops up when i start my top level vi how can i stop this

    i have a vi that whos front panel should display when the user clicks a front panel button(test instructions),
    however this vi pops up when i run the top level vi. I can manually close the vi, but how do i stop this?
    i tried modifying the Sub VI Set up properties, but that doesnt work.
    Solved!
    Go to Solution.

    Hi jknapp,
    As egraham has pointed out, you can customize the window appearance of your sub VI from the VI Properties.  If you go to File » VI Properties, then under Category select Window Appearance and then Customize..., you should be able to control how the sub VI appears.  Hope this helps!
    Taylor G.
    Product Support Engineer
    National Instruments
    www.ni.com/support

  • Getting at a top-level XML attribute

    It's Friday afternoon... I'm fried and can't seem to figure
    out how to get at a top-level XML attribute.
    Some specifics...
    My XML doc has a single attribute in the top node followed by
    several "version" nodes
    <projData projectName="Spry Project">
    <version>
    I successfully load and create an xml data set from said XML
    file. Later on, I use the getDocument() method to refer to the XML
    DOM doc used by the original xml data set. I need to extract the
    value of the attribute "projectName" into a javascript variable.
    The xpath query should be "projData/@projectName" but all I
    get returned is an undefined value.
    Any ideas? I'm sure it's something simple that I'm
    overlooking.

    > can you please helo.
    This is impossible.
    Obviously your ABAP mapping is wrong. Fix it.

  • Creating a dropdown for Roles in Top Level Navigation

    Hi,
    I am trying to customize the com.sap.portal.navigation.toplevel.par file.
    Can anybody please help me to create a dropdown for various roles in the portal,if the user clicks on the first role in the Top Level Navigation ,he should see a dropdown list with worksets of the role.
    Any help would be really appreciated
    Thanks
    Art Tech.

    Hello Art Tech,
    I hope I understand you right. You want to change the appearance of the custom built TLN according to the currently chosen portal theme, just like the standard TLN would change its appearance.
    Well, if so, then there are two ways:
    1) The HTML and styles/classes of your custom built TLN are still more or less the same as in the standard or you can at least reuse most of the standard HTML output/structure, then applying a new theme would also affect your custom TLN.
    2) You have your own HTML output for the TLN, not relying on anything from the standard TLN, and you most probably work with a custom stylesheet file (e.g. "tln.css"). What you have to do then is to provide a set of TLN stylesheet files for each portal theme you want to support and include it accordingly by retrieving the current theme's name via the ILafService (Look & Feel Service). Or you rely on only one CSS file, then have as many "blocks" of styles (marked with a preceding class selector like in e.g. ".themeNameA ul li a " and ".themeNameB ul li a ") as you have themes, and put a bracket around the TLN-output with class="currentThemeName". For this last approach I give you the sample code (assuming you want to support the themes "SAP Standard", "SAP Tradeshow" and "SAP Chrome"):
    The TLN code: tln.jsp
    &gt;<%@ taglib uri="NavigationTagLibrary" prefix="nav" %>
    &gt;<%@ page import = "com.sapportals.portal.prt.service.laf.*" %>
    &gt;<%@ page import = "com.sapportals.portal.prt.runtime.PortalRuntime" %>
    &gt;<%
    &gt;// include the TLN stylesheet
    &gt;response.include(componentRequest, componentRequest.getResource("css", "css/tln.css"));
    &gt;
    &gt;// retrieve the current theme's technical name
    &gt;ILAFService iLAFService = (ILAFService)PortalRuntime.getRuntimeResources().getService(ILAFService.KEY);
    &gt;String currentTheme = iLAFService.getCurrentTheme(componentRequest).getThemeName();
    &gt;%>
    &gt;
    &gt;&lt;div class="<%=currentTheme%>"&gt;
    &gt;  &lt;ul&gt;
    &gt;  <nav:iterateInitialNavNodes>
    &gt;    &lt;li&gt;<nav:navNodeAnchor navigationMethod="byURL" />
    &gt;    <!-- second level ? -->
    &gt;    &lt;/li&gt;
    &gt;  </nav:iterateInitialNavNodes>
    &gt;  &lt;/ul&gt;
    &gt;&lt;/div&gt;
    The stylesheet: tln.css
    &gt;.sap_standard ul li {background-color:#FFCCCC}
    &gt;.sap_standard ul li a
    &gt;
    &gt;.sap_tradeshow ul li {background-color:#CCCCFF}
    &gt;.sap_tradeshow ul li a
    &gt;
    &gt;.sap_chrome ul li {background-color:#CCCCCC}
    &gt;.sap_chrome ul li a
    I hope this solves your problems.
    Best regards,
    Sven Kannengiesser

  • How to move all files to the top level folder?

    I want to move all files within a particular folder -- and all files in all sub folders -- to the top level. i.e. I want to collapse the folder structure to just one folder. Assume that there are no files with the same name.
    *Method 1*
    My first thought was to use Find:
    1. Limit Find to the particular folder.
    2. Find all files in the folder with Size > 0.
    3. Switch to List view. All files are listed.
    4. Select all files and drag to the top folder
    5. Delete all sub folders manually.
    Problem: Pages files are not found, and maybe others aren't.
    This is a simple method and I'd like to stick with it.
    *QUES 1*
    What condition should I set within Find so that I can be guaranteed of finding all files?
    *Method 2*
    It was suggested in another thread that I use Terminal to move all files to the top level, but I couldn't get it to work. And there was a problem with files that consist of bundles.
    *QUES 2*
    What is the easiest way to consolidate all files within a folder to the top level -- assume no duplicate names -- and at the same time remove all sub folders?
    Message was edited by: Guy Burns

    Thanks for the suggestion of EasyFind.
    To find all files in a certain folder I typed in *[a-z 0-9] as a Boolean search (this thread won't let me post the exact characters required by EasyFind). That should cover every file I've ever named. EasyFind came back with "11719found/12316done".
    Any idea what the missing 500 files would be? I'm hoping they are files that I don't need to know about (invisible files, system files and so on).
    Message was edited by: Guy Burns

  • Add a list from a subsite to the top level site SharePoint 2013

    Hello,  I am trying to display a calendar from sub site to the top level home page and cannot seem to make it happen.  I have opened the calendar in SPD and saved that as a webpart file to my desktop and then uploaded into the app gallery and web
    part list and when I go to add it to the top level home page I get the following error:  'List does not exist' 'The page you selected contains a list that does not exist.  It may have been deleted by another user."  Any idea? 
    I am running 0365 w/SharePoint 2013.
    Thank you!
     

    Hi,
    Please perform the steps below:
    Access calendar list in subsite, in the Customize List tab, click Edit List. It will open SharePoint Designer.
    In Views tab, click Calendar, it will open list view in Advanced mode, and you will see code.
    Delete the part between <ZoneTemplate> and </ZoneTemplate>
    click INSERT in the toolbar > DataView > click calendar list > List View Tools bar appears in green color.
    Click WEB PART, save web part to site gallery (ensure you have site-level admin permission)
    Access root-site, insert web part to page, the web part is in Miscellaneous category.
    For clearly:
    Regards,
    Rebecca Tu
    TechNet Community Support

  • MobileMe top-level folders not accepting mail messages

    Strange thing...
    Now that iPhone has "push" mail, I decided to take all my mail from Mail.app on my mac up to my MobileMe account. I wanted to do this as-is, but it's not quite that simple... However, the whole folder structure and all e-mails therein are now happily living in MobileMe.
    Except that they are not! All the Top-Level folders that contain other folders are now white in Mail.app, and don't exist at all in MobileMe. It's as if all folders were one level higher than they should be - all folders directly contained in a white parent folder appear as top level folders in MobileMe!! On the iPhone, they do exist, but their names are greyed out. Both in Mail.app and on the iPhone, they are empty and you cannot add mail messages to them even though, in Mail.app "on my Mac" they still contain mail and will happily accept mail messages...
    What gives? Is there something I need to do to change them from "folder folders" into "mail folders that happen to also have folders in them"???
    G>

    Not a single answer or post on this...
    I decided to create new folders and add a dummy place holder message in them, then move over all the subfolders to this one. There was a bit of strange behaviour when synchronising with MobleMe (old folder disappeared without my deleting it, etc) but now all is well and all my top level folders can accept mails.
    During the process, it seems like MobileMe didn't know that these folder existed - when renaming or deleting them, I do an error saying that they did not exist. Indeed, on MobileMe, they did not exist and this resulted in all the first level subfolders being at the top level in me.com - very messy. It looks a lot better now!
    G>

  • Customizing Top level navigation

    Hi,
    I have requirement where in i have to customize the top level navigation. Insted of hyper links display i have to show them like buttons, not exactly buttons but the hyperlinks shown for the navigation should be removed.
    Is it possible to show with out links and once click on the respective workset should be able to navigate that workset.
    Is it possible to place image for each workset navigation in top level navigation.
    Regards,
    Ravi.

    Hi Darrell,
    I checked that code and it is using the navHelperServer.getQuickLink method where it gets the Quick Link Value of the pages i guess.
    I could not find the method details and the declaration of this method in the help. Is it the custom method written of that class.
    I am using the below standard code of the LightTopLevelNavigation.
    I guess i need to put the custom code between the navNodeAnchor Tags of Selected and non selected Nodes.
    <TABLE border="0" cellspacing="0" cellpadding="0" class="mainTable" align="center">
      <TR>
    <!--     <TD nowrap class="notch"> </TD> -->
        <TD>
          <TABLE border="0" cellspacing="0" cellpadding="0" class="table1">
            <TR>
              <nav:iterateInitialNavNodes>
                <nav:ifNavNodeInSelectedPath>
                  <TD nowrap class="chosenTDLevel1">
                    <% if(previewMode) { %>
                      <A class="chosenOnLevel1"><nav:navNodeTitle/></A>
                    <% } else if(levels==1) { %>
                      <nav:navNodeAnchor navigationMethod="byURL" anchorAttributes="class='chosenOnLevel1'">
                      </nav:navNodeAnchor>
                    <% } else if(levels==2) { %>
                      <nav:navNodeAnchor navigationMethod="byURL" anchorAttributes="class='chosenOnLevel1'" urlParameters="InitialNodeFirstLevel=true"/>
                    <% } %>
                  </TD>
                  <% if(levels==2) { %>
                    <nav:storeNavNode/>
                  <% } %>
                </nav:ifNavNodeInSelectedPath>
                <nav:ifNotNavNodeInSelectedPath>
                  <TD nowrap class="unChosenTDLevel1">
                    <% if(previewMode) { %>
                      <A class="chosenOnLevel1"><nav:navNodeTitle/></A>
                    <% } else if(levels==1) { %>
                      <nav:navNodeAnchor navigationMethod="byURL" anchorAttributes="class='unChosenOnLevel1'"/>
                    <% } else if(levels==2) { %>
                      <nav:navNodeAnchor navigationMethod="byURL" anchorAttributes="class='unChosenOnLevel1'" urlParameters="InitialNodeFirstLevel=true"/>
                    <% } %>
                  </TD>
                </nav:ifNotNavNodeInSelectedPath>
                   <nav:ifHasMoreIterations>
                     <TD nowrap class="spacingTDPipeLevel2" valign="center"> | </TD>
                   </nav:ifHasMoreIterations>
              </nav:iterateInitialNavNodes>
              <TD nowrap class="spacingTDLevel1"> </TD>
            </TR>
          </TABLE>
    Thanks
    Sumanth

  • Can't drag keywords to top level in the keyword HUD

    After having imported my iPhoto library into Aperture 3, I found the keyword HUD cluttered with all of my 300+ keywords, many of which were duplicated. No idea why that is, but anyway. Some of them now live on top level, some on second floor under the main keyword "iPhoto", some of them are duplicates, some are not. That's the situation.
    So I want to (a) drag some of them to first level, (b) build my own hierarchy, and (c) consolidate those duplicates that are alloted on separate levels. Now I find myself in trouble. Technically, I can drag any second level keyword from one to another first level keyword, but then they remain always on second floor. I find no way to move it to *first level* in the HUD.
    I know that this can be done when the keyword HUD is almost empty. In that case, I drag it to the bottom of the list, see a white border pop up around the HUD, and let go. Simple. But not when the HUDs filled up to the brim?
    Am I missing something?

    OK ... but you're gonna groan. This is, btw, a long-standing bug (but still an excellent question).
    Use the search field to search for the keyword you want to move.
    Take advantage of the now empty space in the Keyword HUD to move the keyword.
    Clear the search field.
    Note that if you set up a well-organized hierarchical keyword list (which seems to be your goal), you can use the other work-around, which is to collapse all levels of the outline.
    You might find these remarks on merging duplicates helpful:
    http://discussions.apple.com/thread.jspa?messageID=12399717&#12399717
    Message was edited by: Kirby Krieger to correct typos -- sorry, seems the coffee hasn't reached the fingertips.

  • Worksets not visible in the top level navigation

    Hi all,
                 I installed ESS business package and.ESS 600 sp08.Everything is fine but the worksets of the ESS role are not coming in the top level navigation (2nd level).They are visible in the detailed navigation.
    I checked the option in the worksets .
    the property invisible in navaigation area .It is set to No.So no issues.
    Still it is not visible
    Any clues please.
    Thanx and Regards,
    rajesh

    Hi,
    As Rightly said
    1)  First copy ESS folder created in "Content provided by SAP" under "Portal Content".
    2)  Copy standard ESS Role for u r customization
    3)  Open Custom Role "Employee Self Service"
    4)  Property Category : Navigation
    5)  Check Entry Point property
    It shuld be NO for Role but It shuld be YES for Workset ESS under it as per standard then Its Fine
    6)  Then Assign this role to u r User thru UserAdmin
    7)  Refresh
    It shuld work !!!!
    Reward Points !!!  If helpful
    Edited by: PK on Mar 25, 2008 11:59 AM

  • Top level navigation repeat tab

    Hi Guys,
    Simple one here, just cant point my fingers to it. The top level navigation tab in my portal is repeating itsself. There are 1 additional set of tabs. HOw do i sort this out? thanks
    regards,
    johan

    For more information on Merging Navigation Nodes and Defining the Sequence, check:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/53/89503ede925441e10000000a114084/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/53/89503ede925441e10000000a114084/frameset.htm</a>
    Kind regards, Hilco

  • Passing data from a subvi to the top level with continuously running loops

    Hi All,
    This is a very simple question, for some reason the data available at a subvi indicator is not making it to the top level vi. I think it might be something to do with the while loop I am using but I cant figure it out, any help will be appreciated. I don't think I fully understand how the data gets out of a continuously running loop.
    GPSdisplay runs a driver called GPS.vi (im not worried about my event structure just yet which might be wrong, but I am yet to test that bit yet) Probe 1 should have the values from GPSCluster
    Loop within GPS.vi. GPSCluster (Probe 2) is being updated correctly
    I cant work out why the data is not being passed to GPSCluster in the top vi
    Solved!
    Go to Solution.

    Hi bennymacca,
    I think you are on the right track with an FGV. You can do this fairly easily with the GPS vi that you have.
    Before I go any further, your GPS while loop will only return the last reading, and because the "Read" boolean output state is FALSE, it will not stop. Do you see it exit at all? From the logic I read, once entering this while loop it won't stop until told to.
    There are a 3 options you can try.
    1) Use an FGV, as you are looking into. To do this you will need to change the state boolean to TRUE and put shift registers in for the GPSCluster - to parse the information around, holding it each time the vi is called and exited. Outside the while loop you will wire up the Cluster to the indicator that you wish to collect (OR, you could have it inside the case statement where it is read - be careful here, though). 
    2) in the main code, above the sequence frame you can place the GPS vi while loop (the "Read" one), having the state boolean wired to a Stop button local variable. This while loop will start depending on how LV feels, so wire an error line to both the While loop and Frame start (indicating that both are to run in a parallel fashion), OR you can put it in a case statement and say 'go' when you want to start reading. With this while loop, you can then output the Read data directly into your Cluster variable as it is generated.
    But, with (2) you are moving yourself away from the purpose of the GPS vi, which would be to bring all functionality of the GPS functionality into one sub vi - which is a good idea.
    3) put a condition on the "Read" case statement boolean state - only make it TRUE when you wish to stop reading data (do you have a time or condition you can refer to here?). Even doing so, you would/may still need shift registers on your while loop to retain data for each iteration.
    I hope all of that helps. Cheers. David.

Maybe you are looking for

  • Regarding function changes in sap backend system

    Hi Team, I would like to check if we can alter functions and its actions/permissions in SAP back end and transport it across landscape. This is needed as we customize the rule set and its difficult to validate the risk analysis changes directly in pr

  • Contractors, Org Charts, and Co-employment issues

    Our legal and HR departments are concerned with putting contractors into our company's organization within SAP.  However, as a workflow developer, I would like to take advantage of the possibilities that are offered by having the contractors in the o

  • Consignment PIR not selected on PR during MRP

    Hello, I'm facing a problem where the consignment PIR is not selected in PR during PR creation through MRP run. Sourcing happens correctly and the supplier number in Source List is assigned to fixed vendor. However the info-record field is blank. Sur

  • Macbookpro freezes when i enter password at login screen

    Over the weekend I had an issue with Security Update 003 and Adobe Version Cue CS2. That got resolved and I no longer had any startup issues, but now I have them again, only they are a little different. My computer froze while converting a Photoshop

  • Disabled dashboard dock is all white and looks different?

    I was tweaking my Macbook Pro with Mountain Lion and I removed the Dashboad to add performance and now the dock is solid white. I think It was more transparent before. I dont like it. How can I change this back? Anyone?