Documentation bug - "creating an about box" in wrong topic

I think I found a small error in the documentation for LabVIEW 2012. Under the Index tab, find 3D Surface. For some reason, the topic "Creating an About Dialog Box for a Stand-Alone Application" is listed under it, even though it has nothing to do with the 3D Surface plot. See attached image.
Solved!
Go to Solution.

Hi nathand,
Thanks for the freedback. I will make sure this bug gets reported to the correct poeple and fixed.
TimC
National Instruments
Applications Engineer

Similar Messages

  • Tutorial or Documentation on how to enhanced quiz Right / Wrong Captions

    Good Morning,
    I'm working on a Captivate 8 module and I've setup my quiz and all is working great.  I would however like to enhance the caption when you answer a quiz so that instead of just displaying the Green / Red box with the text, I would instead like to perhaps have an actor pop in with some text (in a speech bubble perhaps). 
    I've looked for tutorials online and in some of the documentation, but I'm not seeing how to enhance the standard quiz right / wrong captions to do anything other than show the green and red box?
    Can someone guide a bit on how to accomplish this, or perhaps some documentation / tutorial that demonstrates this ability.
    Thanks

    I have tested the same scenario at my end and able to achieve by using the advance action.
    You may uncheck the Incorrect and correct captions and create two callout boxes with correct and incorrect text and also insert two different images on the same slide. You need to hide them to display in the output "not visible in output".
    On quiz slide on success I have applied an advance action in which I have created a standard action to show the correct callout and its related image and similarly on the Last attempt I have created another standard action to show the incorrect callout along with related image.
    If you need further information please send me your email address as private message.
    Regards,
    Rajeev.

  • How do I create a check-box matrix question using Acrobat XI Pro?

    I would like to insert a question that is a 10 x 10 matrix that allows respondents to select multiple boxes in each row.  For example, the "add item > rating scale" feature formats a matrix the way I would like, although it only seems to allow for radio buttons.  With this feature, respondents can only select one item per row.  Is there any way to use this feature with check-boxes rather than radio buttons?  Or a different feature to create a matrix that allows for multiple selections per row? 
    Thanks so much,
    Andy 

    I created a 30 page Form in Microsoft Word with 20 to 30 check boxes on each page using the Zapf Dingbats Font.
    When I used Acrobat XI Pro to automatically convert the form it fails to create usable check boxes.
    It worked properly about 3 times on test pages but it will not do it again.
    Manually inserting check boxes one by one on 30 pages is mind numbing to say the least.
    Why doesn't the software work properly anymore?

  • How to create Drop Down box in screen painter..??

    Can anybody give me sample code or detailed description about creating Drop-Down Box in a screen...??
    I have created the drop down box in screen..
    But how to make data to be visible in Dropdown box, when i click the drop icon in that box...???
    Regards
    Pavan Sanganal

    Here are couple of DEMO programs for the same functionality
    DEMO_DROPDOWN_LIST_BOX       
    DEMO_DYNPRO_DROPDOWN_LISTBOX 
    You execution sequence will be PBO - Process before output, then the screen is displayed and the PAI Process after input.
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • Creating Dynamic select boxes

    Can we create dynamic select boxes which will change when the user selection changes. How many levels we can go about.
    For example
    we have one combo box named states--> depending upon the states selected the corresponding districts should be shown in the other combo box, and when the user selects a district it should show the corresponding villages or towns and further..
    Can we do it without ajax concept. if yes how?
    If we have to use ajax one level is easy how to go about two or three levels.
    Thanks in advance.

    Hi !
    ya it is possible to change values of Combobox depending on the value changed in another combobox.
    it is possible when you implement Model and by reference of that
    model you can change values of that combobox such as.
    model1.removeAllItems();
    model1.addItemAt(location); etc
    inspite of this if you need code help i will provide it to you.

  • Copyright year in Java control panel about box

    I think the about box did not display the copyright year properly.
    Copyright (c) @@COPYRIGHT_YEAR@@ Oracle and/or it's affiliates

    hungwai wrote:
    The version of Windows/Java
    -Windows XP 32-bit and Windows ultimate Vista 64-bit
    -Java SE 1.6.0_21Perhaps you should raise a bug report. To do that, visit the [bug database|http://bugs.sun.com/bugdatabase/] and follow the instructions.
    I checked my Windows based Netbook and confirmed the version shows OK for 1.6.0_20.
    And just to correct something I said earlier, the Ubuntu Linux JCP does have an About box, under the General tab. Don't quite know how I missed it the 1st time. It shows the version correctly for 1.6.0_14.

  • How-to create dependent list boxes in a table -Frank Sample

    hi everyone i would like to ask a suggestion about Frank's example on How-to create dependent list boxes in a table -Frank Sample ...
    i want to extend this example for 3 dependent lists... including locations, departaments and employes....
    this the ListboxBean java that Frank is using in his example.... and this is only for locations and departaments tables and it works ok... i want to add the third list for employers wich is dependent only from departaments list.... as i am not good in java i would like to ask u a suggestion on how to develop the third list in this java class ...
    public class ListboxBean {
    private SelectItem[] locationsSelectItems = null;
    private SelectItem[] departmentsSelectItems = null;
    public SelectItem[] getLocationsSelectItems() {
    if (locationsSelectItems == null){
    FacesContext fctx = FacesContext.getCurrentInstance();
    ValueBinding vbinding = fctx.getApplication().createValueBinding("#{bindings.LocationsView1Iterator}");
    DCIteratorBinding locationsIterBinding = (DCIteratorBinding) vbinding.getValue(fctx);
    locationsIterBinding.executeQuery();
    Row[] locRowsArray = locationsIterBinding.getAllRowsInRange();
    // define select items
    locationsSelectItems = new SelectItem[locRowsArray.length];
    for (int indx = 0; indx < locRowsArray.length; indx++) {
    SelectItem addItem = new SelectItem();
    addItem.setLabel((String)locRowsArray[indx].getAttribute("City"));
    addItem.setValue(locRowsArray[indx].getAttribute("LocationId"));
    locationsSelectItems[indx] = addItem;
    return locationsSelectItems;
    return locationsSelectItems;
    public SelectItem[] getDepartmentsSelectItems() {
    FacesContext fctx = FacesContext.getCurrentInstance();
    ValueBinding vbinding = fctx.getApplication().createValueBinding("#{row}");
    JUCtrlValueBindingRef rwJUCtrlValueBinding = (JUCtrlValueBindingRef) vbinding.getValue(fctx);
    Row rw = rwJUCtrlValueBinding.getRow();
    if (rw.getAttribute(6) != null){
    OperationBinding oBinding = (OperationBinding) fctx.getApplication().createValueBinding("#{bindings.ExecuteWithParams}").getValue(fctx);
    oBinding.getParamsMap().put("locId",rw.getAttribute(6).toString());
    oBinding.execute();
    ValueBinding vbinding2 = fctx.getApplication().createValueBinding("#{bindings.DepartmentsView2Iterator}");
    DCIteratorBinding departmentsIterBinding = (DCIteratorBinding) vbinding2.getValue(fctx);
    departmentsIterBinding.executeQuery();
    Row[] depRowsArray = departmentsIterBinding.getAllRowsInRange();
    // define select items
    departmentsSelectItems = new SelectItem[depRowsArray.length];
    for (int indx = 0; indx < depRowsArray.length; indx++) {
    SelectItem addItem = new SelectItem();
    addItem.setLabel((String)depRowsArray[indx].getAttribute("DepartmentName"));
    addItem.setValue(depRowsArray[indx].getAttribute("DepartmentId"));
    departmentsSelectItems[indx] = addItem;
    return departmentsSelectItems;
    public void setLocationsSelectItems(SelectItem[] locationsSelectItems) {
    this.locationsSelectItems = locationsSelectItems;
    public void setDepartmentsSelectItems(SelectItem[] departmentsSelectItems) {
    this.departmentsSelectItems = departmentsSelectItems;
    Thanks in advance :0

    Hi,
    I think that all you need to do is to look at how I implemented the dependent detail for querying the Employees select items
    Then you make sure the DepartmentsVO and the EmployeesVO have bind variable to query them according to the pre-selected value in their respective master list
    Frank

  • BUG: Create Subversion Connection Dialog Loop

    Hi,
    Using JDeveloper 11g:
    1. Check out an application from a repository using the command-line version of Subversion (svn).
    2. Open the .jws file for an application.
    3. Right-click a Java file that exists in the "Java Files" pane.
    4. Select something that requires a subversion repository (Right-click >> Versioning >> Properties).
    5. JDeveloper will prompt for connection parameters.
    6. Press ESC to cancel the operation.
    JDeveloper will splash an error dialog indicating that no connection parameters were supplied. A few moments later it displays the prompt for connection parameters. Press ESC to cancel the operation, and the prompt cycle repeats.
    Stack trace:
    java.lang.NullPointerException
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.getWorkspaceDirectoryURLs(ChangeListEventQueue.java:739)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.getWorkspaceArtifactURLs(ChangeListEventQueue.java:718)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processRequeryEvent(ChangeListEventQueue.java:260)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvent(ChangeListEventQueue.java:238)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvents(ChangeListEventQueue.java:606)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(ChangeListEventQueue.java:699)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.mav$eventLoop(ChangeListEventQueue.java:53)
            at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$4.run(ChangeListEventQueue.java:524)
            at java.lang.Thread.run(Thread.java:619)

    I lodged both a documentation bug, and an enhancement request with Oracle Support about this issue. The documentation bug is that the docs keep referring users to the Versioning menu for all things that have to do with source control - but the repository browser is not there - as you learned. The enhancement request is to move it.

  • "About" Box, Robohelp 8, and Internet Explorer

    I am having an issue with the About box in our custom-built skin and (seemingly) all versions of Internet Explorer.  I have an About box configured that contains information such as our company name, copyrights, and a link to my email for questions.  Since we have several different versions of our online help, we decided to add the current help version to the box.  Unfortunately, one of our employees who uses IE 9 attempted to click on the About box and discovered that it was not there in the navigation bar. We use a graphic as the link, and the graphic was not beside the Search bar as it is in other browsers.   I use Firefox currently, but I know it used to show up in Internet Explorer.  We checked on my version (IE 7), and it was missing from there also.  I checked the Properties screen in WebHelp to ensure that the correct skin was configured and that I had Add About Box checked, and everything seemed to be fine.  The crazy thing is that I know the About box used to show up in IE 6 and when I first got IE 7. We really need to resolve this because most of our clients still have Internet Explorer.  While it is not as critical as some of the other Help, the About box still performs a service and is the most appropriate place to add the current Help version. 
    Has anyone else had this problem with RoboHelp 8's About box and Internet Explorer?  Does anyone know a method for making it show up in Internet Explorer (any version will do)?  When I tested it, I had the pop-up blocker turned off to eliminate that as a cause, but that would not explain the graphic appearing either. 
    Thank you,
    Leigh Steele

    I'm wondering if rather than the IE version, it is more about upgrading to RoboHelp 8. Do you keep copies of the old help outputs in a way that you can tell which version of RoboHelp created them? I'm hoping that you can open a RoboHelp 6 or 7 produced output and see how that works.
    Also you refer to a custom-built skin. Do you mean a supplied skin that you customised or you truly created you own skin somehow? Have you tried using a supplied skin to see if you still have the problem then?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Creating a combo box to change graph type

    Hello Gurus,
    I need to create a combo box in a web page to change the graph type used. How would I go about to achieve this?
    Thanks.

    ceate the second combo box , at the palce where i will create the first combo boxAs i see .. u dont require two comboboxes in u r case just have to set the combobox with different ComboBoxModel each time u make a selection.
    in listener event of the combobox change the model with setModel function. You can create new model by
    combo1.setModel(new JComboBox(new Object[]{"opt1","opt2","opt3","opt4"}).getModel());

  • Documentation for creating midi device plugin bundle?

    I've got a custom MIDI controller (vmeter), and wanted to know if there was any documentation for creating a plugin bundle file to make Logic Pro integration easier? The documentation says plug-ins can be added to the Logic Pro Applicaiton folder / Contents/MIDI Device Plugins subfolder. Any advice on how to make those .bundle files?

    Depending on the format of your "templates", you could go with any of the options – Plugin, IAC or JavaScript.
    Plugins give you the most power, but as you note, have to be written in C/C++ using Visual Studio.  For Acrobat X, you need VS2008.   You should be able to compile the sample plugins in the SDK – just be sure to follow the instructions/docs about where to put the SDK folders.   OR consider installing the using the Plugin Wizard that is in the Tools directory which will help you create new projects.
    IAC or JavaScript.  There isn't anything in IAC proper that will help you and you don't want to use the ActiveX control, you want to use the COM APIs.    Again, try the included samples for C# or VB.
    HOWEVER, what you can do it is call the JavaScript APIs (there is one for adding a watermark which you'll use) from your .NET application.  See the docs about the JSObject.

  • How do you create a seach box in MUSE?

    how do you create a seach box in MUSE? - viewer enters a keyword and will be lead to correct product

    Hi there - For questions about individual programs, you're better off posting in their specific forums. Here's the Muse forum: http://forums.adobe.com/community/muse/general_questions_about_adobe_muse
    That being said, there is currently not a search bar widget that can be added to a site directly from within Muse. However, you can add custom HTML code to your page, with a method such as this: http://www.ehow.com/how_6772398_embed-google-search-bar.html. Just add the custom HTML to your Muse page by going to Object > Insert HTML.
    This page might also help you out: http://www.adobe.com/products/muse/embedded-html.edu.html
    Good luck!

  • Is this a bug or am I using the wrong flags in userChrome.css

    I'd like to have my Bookmark Toolbar automatically hide until I move my mouse over the location. I found some code a while ago to do this, but I never really tried it until now with FF4. When I put in the code and move the bookmark toolbar into the self-hiding panel, it works fine until I open a new window or exit/restart the browser.
    <br />
    <pre>#PersonalToolbar {display: none;}
    #navigator-toolbox:hover > #PersonalToolbar {display: -moz-box;}
    </pre>
    The auto-hide until hover works fine with the box, but the Bookmark Toolbar comes up completely empty. No arrow, just empty space. Every time I comment out the line in userChrome.css, the buttons reappear. When I move the bookmark toolbar out and then re-enable the line and restart, the buttons are fine when I move them back in until the next exit.
    I've tried this on three machines (all Windows 7 though, both 32-bit and 64-bit) and the behavior is the same. I've also tried disabling all add-ons and extensions with no change in the results.
    Is this a bug or am I using the wrong flags (-moz-box)? Thanks for any ideas/help provided.

    cor-el:
    Thanks for the suggestion. I already tried rebuilding that file as well and it didn't help. Also, all the changes I make are retained from session to session in terms of placement and what's shown/hidden, it's just the contents of the bookmark toolbar that disappear. The toolbar is still there and I can drag things to it, but again, they disappear after restarting the browser.
    edit (clarification):
    When I say the items disappear, I mean they are no longer visible or clickable. They are still there in the sense that they appear in the Bookmark menu and if I move the Bookmark Toolbar from its own toolbar into the space next to the Menu Toolbar, they are then shown.

  • R12: New Instance creation: what is create warranty check box?

    Hello all,
    In R12, we can create Item instance from Contract launchpad screen itself.
    When New Instance sub form opens, it has "create warranty" check box.
    What is the purpose of this checkbox?
    Regards
    Preeti

    Yes,you can create so that you can cover this instance in the same contract quickly ( i am hoping it is not automatically adding to the contract where you created from). This must be keeping in mind the customer service getting calls about new product that customer wanted to get covered.
    Warranty creation depends on whether the product (item) has BOM with warranty item as a component or not. Do you have that setup done for this item?
    Thanks
    Nagamohan

  • Is there a way to create a contact box on photoshop and save as PDF?

    Can someone explain how or where to find a tutorial to create a contact box on photoshop then save as a pdf? Thank you!

    Contact box? Your question is not clear perhaps if there was one and only one standard contact box on planet Earth there would probably be more the one correct answer to you question.  Please describe what your desired in the PDF file. If you want something that can be filled in like a contact form you may need to use a different Adobe product like Acrobat. Or something to create an HTML Page with a contact form.

Maybe you are looking for