HELP - ABOUT - Dialog box

I am currently using LV5.1f1 FDS & APP builder on a PC/win95, and I have
a question that I have not been able to find the answer to.....
In some of my earlier applications using LV3.1, 5.0, 5.01f1, I was able
to create a custom About.vi that would be displayed when the user
selected HELP > ABOUT from the menu.
In LV5.1f1, the previous method does not bring up the custom About.vi.
Does anyone know if this feature was removed or changed? Or is this a
bug?
Joe Robinson
GARMIN International
[email protected]

The thread that will not die...
I'm using LabVIEW 8.2.1 on OS X (8.5 is on its way, and I'll give that try). To start, I had to write and external to replace the "About LabVIEW..." item in the application menu to "About myApp", due to an apparent LV bug (discussed in another thread) for my standalone.
I made the About dialog (About.vi) so that it opens centered, transparency 100%, modal, and is not set to show on open or load. The vi sets a display string with the application name and current version, then opens itself (FP.Open = true), shows itself (FP.Transparency = 0), then sits in a while loop till clicked, at which time it sets transparency back to 100 and closes itself.
The problem I'm having is that when the "About..." item is chosen, there is a brief flicker of the window in the "original" position (that is, not centered, but where the vi window was when saved), then it appears where it should (centered) and works correctly. It appears that LabVIEW opens the window, _then_ enforces the 100% transparency (as specified in the vi parameters, not due to program execution).
I've tried running this window from another vi (not via the About menu), and it works perfectly. So, I tried to make an About.vi that would not open at all, but would call my About dialog vi, but this didn't work either--LabVIEW seems to always open the About.vi window, no matter what I try.
This sure appears to be a bug. Any way to fix this?

Similar Messages

  • "Help About" dialog still shows 8.0 after applying 8.0.1 patch

    Hello all,
    I was wondering if anyone who has successfully applied the patch sees version 8.0.1 in the Help > About dialog box. I updated via the Help > Update option and I did see the update downloaded. I was then asked to close Elements 8 so the patch could be applied which I did. However, how does one know if the patch was successfully applied? Most softwate show the latest version when you click Help > About. I still see ver 8.0.

    gtacyclist wrote:
    I have a couple of them including display.dll and "Adobe Premier Elements.exe" with date modified on 2/26/2010 instead of 2/28/2010 (date created is still 9/29/2009). I assume this was the date when I intalled the patch.
    Can anyone provide confirmation beyond assumptions? My files likewise have a created date of 9/29/2009, with a date modified matching the 8.0.1 patch installation date (in this case 3/13/2010). In the other forum post referenced above, Steve Grisetti unfortunately did not distinguish between date created and date modified, and I have no idea where he came up with the 2/28/2010 date.

  • JDialog Problem: How to make a simple "About" dialog box?

    Hi, anyone can try me out the problem, how to make a simple "About" dialog box? I try to click on the MenuBar item, then request it display a JDialog, how? Following is my example code, what wrong code inside?
    ** Main.java**
    ============================
    publc class Main extends JFrame{
    public Main() {
              super();
              setJMenuBar();
              initialize();
    public void setJMenuBar()
         JMenuBar menubar = new JMenuBar();
            setJMenuBar(menubar);
            JMenu menu1 = new JMenu("File");      
            JMenuItem item = new JMenuItem("About");      
            item.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ae) {
                  // About about = new About(this);
               // about.show();
            menu1.add(item);
         menubar.add(menu1);
    public static void main(String args[]){
         Main main = new Main();
    }** About.java**
    =============================
    import java.awt.*;
    import javax.swing.*;
    public class About extends JDialog{
         JPanel jp_top, jp_center, jp_bottom;
         public About(JFrame owner){
              super(owner);
              setDefaultCloseOperation( DISPOSE_ON_CLOSE );
              Image img = Toolkit.getDefaultToolkit().getImage(DateChooser.class.getResource("Duke.gif"));          
              setIconImage( img );
              setSize(500,800);
              Container contentPane = getContentPane();
             contentPane.setLayout(new BorderLayout());           
             contentPane.add(getTop(), BorderLayout.NORTH);
              contentPane.add(getCenter(), BorderLayout.CENTER);
              contentPane.add(getBottom(), BorderLayout.SOUTH);
              setResizable(false);
               pack();            
               setVisible(true);
         public JPanel getTop(){
              jp_top = new JPanel();
              return jp_top;
         public JPanel getCenter(){
              jp_center = new JPanel();
              return jp_center;
         public JPanel getBottom(){
              jp_bottom = new JPanel();
              jp_bottom.setLayout(new BoxLayout(jp_bottom, BoxLayout.X_AXIS));
              JButton jb = new JButton("OK");
              jp_bottom.add(jb);
              return jp_bottom;
    }

    Code looks reasonable except
    a) the code in the actionPerformed is commment out
    b) the owner of the dialog should be the frame
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.

  • About dialog box

    I'm in the process of entering About information and am
    wondering if there's any way to do the following:
    1. Can the About dialog box be made larger?
    2. Can the print in the dialog box be made large to
    accommodate visually impaired individuals without changing screen
    resolution?
    3. Can the preformatted text be changed? For instance, could
    I change
    Author to
    Contact us?
    Also, I've noticed that the line after
    Generated by: Adobe RoboHelp 6.0 doesn't display in some
    resolutions and only partially displays in others. Do you know what
    may be causing that problem?
    Thanks very much for your help.

    Hello friedlanders -
    I don't use RH6 but in RH5 the "About" window is the file
    named:
    whskin_banner.htm
    Open it in a plain text editor and you will see a lot of
    info.
    Make desired changes and save the file to a separate
    directory (the default file in the project root will get over
    written when you generate). After you gen your project just copy
    your modified file into the root directory of your generated
    project, Overwrite=Yes.
    Regards,
    GEWB

  • 'About' Dialog Boxes

    Hello Java group!
    I have a great design for an 'About' dialog box, include a JPG image I put together. What is the best process for building an 'About' Dialog Box? Should I use JBuilder widget's factory, or should I hand crank it? Any one have any sample code? What are About Dialog Box's normal set up as ( modal or modalless?).
    Thanks for your help,
    JavaRob

    Does anyone have any code examples to make an awesome
    About box.
    I'd like to include a JPG I created...Image im = ...;
    JLabel l = new JLabel(im);
    Dialog d = ...
    d.getContentPane().setLayout(new BorderLayout());
    d.add(im, BorderLayout.CENTER);
    d.setBounds(...);
    d.setVisible()
    But actually if ur just making an about window you might want to just use JOptionPane; it's probably better for this situation. Anyway, just design your about page, put your graphic on it, and display it.
    What is the standard control method (modal or
    modalless)?IMO it's modal, but both get used quite a bit

  • The help 'About' dialog shows my system at 37.0.1 but I keep getting "older version of Firefox" messages, even from Mozzila, including an option to download 29!

    I tried to send a page and the 'installing social services' sequence required me to update to "at least version 29." However, my system is up to date. I do so religiously.
    So I thought I would send a support note to ask about that and the support sequence too fired back a message, "looks like your Firefox is out of date." I captured both that any my version info in the attached graphic.
    I have gone through several re-installs to clear this problem but it keeps happening. Why?
    I also see in the "educated guesses" of my system, below this note, that your system is showing my FF version as 26.0! Can a resident piece of malware hijack FF that badly to deny the updates from proceeding yet present a dialog that shows me as being on 37.0.1? I'm speculating here as this issue confuses me. By the way, I have used Kaspersky--also up to date--for ages.
    And I still was not able to send that page, so over to Chrome/Explorer I must go!

    See this:
    https://support.mozilla.org/en-US/kb/websites-say-firefox-outdated-or-incompatible
    Your User Agent is corrupted. It shows Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 '''Firefox/26.0 ZemanaAID/FFFF0089'''

  • Need help about tex box

    hi
    in my project i am using textbox for address.
    in that one check box is there.i checked the checkbox the address are placed in the text box from database and disabled.
    after submit the values are not comming the next page because that is disabled.
    i want values in the text box after it disabled.
    any way is there.
    please help me

    enable it back prior to calling the submit() method
    something like
    func checkSubmit(){
    form.txt.disabled=false
    form.action="XXX"
    form.submit();
    call checkSubmit at the event in which the submit should happen

  • IDCS3: Can't enter values into dialog boxes

    I've just started using InDesign CS3 on an Intel Mac, having been using CS2 on a G5. When I try to enter a value into a dialog box, nothing happens. The dialog box refuses to accept any inputted value. If I use the up/down arrows, I can change the value but only in whole increments. I can't, for instance, place an item 10.5mm from the page edge. It has to be 10 or 11mm.
    The same is true of any dialog box for any value.
    Has anyone else experienced this very frustrating issue?
    Thanks.

    I guess I need to clarify my situation. I was using the wrong terminology. When I talk about "dialog boxes" I mean the palettes like the Control Panel, Paragraph, Character, Stroke, etc. I can't type into any of them. If I put the cursor in, say, the X pos text box and hit tab (to go to the Y pos text box) all that happens is that all the palettes are hidden. It's like I can't get any focus at all in the palette text boxes.
    Sorry about the confusion.
    This problem isn't limited to my machine, it happens on any of our networked Macs running CS3, so I think the problem may be related to something else, possibly the Suitcase Server. But there's no way I can confirm this. I was hoping someone else had had the same problem and discovered a solution.
    Cheers.

  • Hi, I just installed my Creative Suite 6 and the programs close right after launching (for about 5 seconds) with no dialog box about an error. I have tried uninstalling and re-installing but still the same thing. Help pls!

    Hi, I just installed my Creative Suite 6 and the programs close right after launching (for about 5 seconds) with no dialog box about an error. I have tried uninstalling and re-installing but still the same thing. Help pls!

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help.

    Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help. BTW the same 'Save As' dialog in other applications still allow the backspace button to go up one level in the directory.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • Can I add my plugin to the "About Adobe Plug-Ins" dialog box?

    Hello,
    I have created my own Adobe plug-in (.api file), placed it in the plug-ins folder and it's loading and working as expected :-)
    However, when I launch Acrobat and navigate to Help > ''About Adobe Plug-Ins", my plug-in is not listed.
    Is it possible to have my plug-in listed in the 'About Adobe Plug-Ins' dialog box? Or is this reserved for Adobe certified plug-ins only?
    Thanks!

    Excellent - good work!
    You would be listed in the "About 3rd party plugins" section IF you added an about item from your plugin.

  • I don't have my navigation bar at all. I tried to start in safe mode but I never get the dialog box the y say you should get to reset to defaults. Help?

    i don't have my navigation bar at all. I tried to start in safe mode but I never get the dialog box the y say you should get to reset to defaults. Help? I have even uninstalled and reloaded firefox
    == This happened ==
    Every time Firefox opened
    == My wife hit a button and doesn' know what happened

    See if this helps. View > Toolbars, if no check beside Navigation Bar, click on Navigation Bar to check it.
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap once on the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap once and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.18; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 or higher; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html
    <u>'''Install/Update Adobe Flash Player for Firefox (aka Shockwave Flash)'''</u>: your ver. 10.0 r45; current ver. 10.1 r53 ('''important security update 2010-06-10'''; see: http://www.adobe.com/support/security/bulletins/apsb10-14.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash Updating Flash]'''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    -exit Firefox (File > Exit)
    -''<u>In Windows,</u>'' check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -''<u>In Windows,</u>'' double-click on the Adobe Flash installer you just downloaded to install/update Adobe Flash
    -when the Flash installation is complete, start Firefox, and test the Flash installation here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507&sliceId=1
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version of Flash. To install/update the IE ActiveX Adobe Flash Player, same instructions as above, except use IE to download the ActiveX Flash installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Flash ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates. Allow the download/update to occur. If you use this method, no need to proceed with the instructions below, <u>'''but'''</u> do look at the two bulleted items at the bottom "'''<u>NOTE for IE:</u>'''" and "Also see:". Restart Firefox and check your new version here: http://www.mozilla.com/en-US/plugincheck/
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -In Windows: double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Dialog box "cannot verify server I'd"  appeared iPad frozen.   Please help

    I cannot remove this dialog box by clicking cancel or continue so can't turn iPad off and on again. Can anyone help?

    Try a reset:
    Hold the Sleep and Home button down for about 10 second until you see the Apple logo.

  • I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    Canon 1DX support was added to ACR in version 6.7, 7.1.  An updated CS6 should be at level ACR 8.6.  If your ACR is not at level 8.6 try using CS6 menu Help>Updates.  If that does not install ACR 8.6 try downloading the ACR and DNG 8.6 converter and see if ACR 8.6 will install into your CS6.
    Adobe - Adobe Camera Raw and DNG Converter : For Windows
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh

  • When I try to open photoshop I get a "help adobe improve it's produts" dialog box every time and it freezes

    When I try to open photoshop I get a "help adobe improve it's produts" dialog box. No matter what I do, I get this box when I try to open a file in photosop never opens although it appears to be

    Hi Steadyalberta,
    Something might be preventing Photoshop from being able to save your selection on the dialog window properly. You might try right clicking and choose Run as Administrator on the Photoshop icon when launching (Windows) or test if the behavior persists when using a newly created admin user account.
    Hope that helps,
    - Dave

Maybe you are looking for