JFormattedTextField getValue() is returning the wrong type

So this is a very strange I've found in my ever-growing project I've been working on. I have four text boxes set up. Essentially, one is the total, the second is part_one, the third part_two, and the last the_rest.
They've all been declared and initialized identically, e.g.:
JFormattedTextField total = new javax.swing.JFormattedTextField(java.text.NumberFormat.getCurrencyInstance(Locale.US));
JFormattedTextField part_one = new javax.swing.JFormattedTextField(java.text.NumberFormat.getCurrencyInstance(Locale.US));
JFormattedTextField part_two = new javax.swing.JFormattedTextField(java.text.NumberFormat.getCurrencyInstance(Locale.US));
JFormattedTextField the_rest = new javax.swing.JFormattedTextField(java.text.NumberFormat.getCurrencyInstance(Locale.US));the_rest is supposed to auto update as any of the other three are changed (the_rest = total - part_one - part_two)
However, I'm having issues updating the text boxes, as I am getting a ClassCastException when trying to calculate the_rest:
float calculated = calculateTheRest((Float)total.getValue(), (Float)part_one.getValue(), (Float)part_two.getValue());
the_rest.setValue(calculated);And my calculateTheRest() function:
private float calculateTheRest(Float total, Float part_one, Float part_two) {
        if(total == null)
            total = 0.0f;
        if(part_one== null)
            part_one = 0.0f;
        if(part_two== null)
            part_two = 0.0f;
        return total - (first + second);
}What am I doing wrong here?
Edited by: GranoblasticMan on Sep 16, 2008 7:49 AM
Fixed typos... was hand-retyping this, not copy-and-pasting.
Edited by: GranoblasticMan on Sep 16, 2008 7:51 AM
And the exact error message I'm getting is:
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.Long

For the time being, I've changed my calculateTheRest() function:
        private float calculateTheRest(Object total, Object part_one, Object part_two) {
        if(total == null)
            total = new Float(0.0f);
        if(part_one == null)
            first = new Float(0.0f);
        if(part_two == null)
            second = new Float(0.0f);
        return convertToFloat(total) - (convertToFloat(part_one) + convertToFloat(part_two));
private float convertToFloat(Object o) {
        if(o instanceof Number)
            return ((Number)o).floatValue();
        return Float.NaN;   
}But I'm still wondering why this would happen. Do FormattedTextFields not actually store decimal values?

Similar Messages

  • Expression must return the interface type in Transformation Step in BPM

    hi,
    We are getting below while activating the IP,
    Expression must return the interface type SI_Send_AA
    Expression must return the interface type SI_Get_AA
    No semantic errors found
    We have a Transformation Step in BPM,
    In OM, Source is SI_Send_AA and Target is SI_Get_AA
    Also Container variable points to  the same Abstract SI's.
    Few Thread's for Same are error are:
    Error in  BPM
    expression must return the interface type
    Transformation step in ccBPM scenario
    Error while compiling Business Process
    Even after checking these i am getting this Exception.
    Please Help!
    Thanks,
    Mayank

    Also Container variable points to the same Abstract SI's
    Are you sure that you are using Abstract Message Interfaces only and that these are referring to relevant container variables.
    Normally it happens that there is some mis-match between the message types/ interfaces that we use in the mapping and that we use in the BPM.
    If still not solved, then delete the Transformation step --> save --> activate......then again Edit the BPM to include the Transformation Step.
    Regards,
    Abhishek.

  • Elements 9 saved file "cannot open because it is the wrong type of file"

    I have Windows XP.  I just purchased Photoshop Elements 9.
    I open a raw, tiff or jpg image in Elements 9, make changes to it and then save it as a tiff or jpg.
    About a third of the time the icon for the saved image appears as a file and not a thumbnail of the image in my saved folder.
    When I try to re-open it in Elements 9 I get the message "Cannot open because it is the wrong type of file"
    I never had this problem with Elements 7.
    Please help!
    Mike

    Every camera model has its own raw format, and Adobe can't update the camera raw plug-in until it gets the information from the manufacturer, and the process takes a while. You shouldn't have to wait more than a couple of months for this. In the meantime you can use the manufacturer's software, or try downloading the latest DNG converter to see if it can make DNG files from your camera that will work in ACR.
    Incidentally, you're not talking to adobe here, just to other users like yourself.
    The standlalone DNG converter download is here:
    http://www.adobe.com/downloads/updates/
    Just pick the DNG Converter  for your platform from the pulldown menu.

  • .RW2 File "Cannot open because it is the wrong type of file" - P.E. 9

    I just got the new Panesonic Lumix DMC-G3 and took some pictures with it today and found that Photoshop Elements couldn't open the pictures because they were the "wrong type of file".  Now the file format is a  Raw .RW2 and I have opened many of them before in the past and they have been just fine! I think it may be that Photoshop isn't updated yet, because I checked and I had no new updates but do any of you have any ideas as to how I could fix this?! (Besides switching to JPEG)
    ADOBE IF YOU SEE THIS PLEASE UPDATE YOUR SOFTWARE SO YOUR CONSUMERS CAN OPEN THE LUMIX DMC-G3'S RAW FILES! THANK YOU!

    Every camera model has its own raw format, and Adobe can't update the camera raw plug-in until it gets the information from the manufacturer, and the process takes a while. You shouldn't have to wait more than a couple of months for this. In the meantime you can use the manufacturer's software, or try downloading the latest DNG converter to see if it can make DNG files from your camera that will work in ACR.
    Incidentally, you're not talking to adobe here, just to other users like yourself.
    The standlalone DNG converter download is here:
    http://www.adobe.com/downloads/updates/
    Just pick the DNG Converter  for your platform from the pulldown menu.

  • Expression must return the interface type

    <b>Dear XI experts,</b>
    My scenario is ;
    The input parameter for the RFC is send through a file and the response from the RFC comes into XI which is then written into a File (dummy). Finally I want to have Transformation(Message Mapping to IDoc) and send to Target system.
    The diagram of the following is shown below;
    http://photos1.blogger.com/blogger/3087/1595/1600/6.jpg
    I am getting Error in Transformation Step, <b>EXPRESSION MUST RETURN THE INTERFACE TYPE <Target message>. </b>
    <b>
    Pls advice, Anybody ??</b>

    Hi Faith,
    ->This error occurs when the interface mentioned in the interface mapping and in the container difference.
    ->Here in your case the target Message Interface in the Interface Mapping and the Interface of the container <b>modify</b> are different. Do check that.
    Hope this helps.
    Regards,
    Jesse.

  • Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.

    Hello, I am filtering by date
    DATEADD(d,DATEDIFF(d,0,GETDATE()),0), but
    doing like below gives me an error
    ADODB.Command error '800a0bb9'
    Arguments are of the wrong type, are out of acceptable range,
    or are in
    conflict with one another.
    /aa.asp, line 19
    line 19 is
    Recordset1_cmd.Parameters.Append
    Recordset1_cmd.CreateParameter("param1",
    135, 1, -1, Recordset1__MMColParam) ' adDBTimeStamp
    any one have any idea as to why
    grateful for any help
    thanks
    k
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/connpeepeek.asp" -->
    <%
    Dim Recordset1__MMColParam
    Recordset1__MMColParam =
    "DATEADD(dd,DATEDIFF(d,0,GETDATE()),0)"
    If (Request("MM_EmptyValue") <> "") Then
    Recordset1__MMColParam = Request("MM_EmptyValue")
    End If
    %>
    <%
    Dim Recordset1
    Dim Recordset1_cmd
    Dim Recordset1_numRows
    Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
    Recordset1_cmd.ActiveConnection = MM_connpeepeek_STRING
    Recordset1_cmd.CommandText = "SELECT usr_image1,
    dateimage_usr FROM
    diddle.ps_usr_image WHERE dateimage_usr = ?"
    Recordset1_cmd.Prepared = true
    Recordset1_cmd.Parameters.Append
    Recordset1_cmd.CreateParameter("param1",
    135, 1, -1, Recordset1__MMColParam) ' adDBTimeStamp
    Set Recordset1 = Recordset1_cmd.Execute
    Recordset1_numRows = 0
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>
    <%
    Recordset1.Close()
    Set Recordset1 = Nothing
    %>

    Ben,
    If dbo.TG_Account is a table in your FDM database, then you should be able to populate the recordset with:
    strSQLAcct = "SELECT Account FROM dbo.TG_Account"
    Set rsAcct = DW.DataAccess.farsFireHose(strSQLAcct, False)

  • When capturing images from a Nikon D600, they show in Bridge, but when clicked to load into CS6,an error message says that it is the wrong type of document, even jpeg files. This is a NEW frustration.

    When capturing images from a Nikon D600, they show in Bridge, but when clicked to load into CS6,an error message says that it is the wrong type of document, evne jpeg files. This is a NEW frustration.

    Nikon raw files would open up in Adobe Camera Raw and so should jpegs.
    If you select one in Bridge and give the command "Ctrl r" (Windows), what happens?
    Also what is the version of ACR in the title bar?
    Gene
    Note: unmark your question as "answered". the green balloon next to the subject shows it as "solved".

  • The disc is the wrong type for the operation

    Hello!
    I'm using DVD Studio Pro 4 and as I try to burn a double layer DVD I get a message saying "The disc is the wrong type for the operation". I've tried several brands, but I get the same message. What can possibly be wrong?
    Thanks for helping me!
    /Andreas from Sweden

    If you are trying to do this on the internal Superdrive they have problems writing to Dual Layer DVD disks of any make and or type.
    IMHO the DVD drive Apple uses is not very good.
    If this is a fairly new Mac system I suggest you take it to an Apple store and show them that it can't write to Dual Layer DVD discs of any make and maybe they will replace it with on e that will.

  • Trying to sort bookmarks, but gets these errors: one or more of the included folders is in the wrong type. Sorting failed.

    I'm trying to sort my bookmarks, but I get the following to errors:
    one or more of the included folders is in the wrong type. Sorting failed.
    What can cause this?
    Firefox 4.0/W7 Home Premium

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Having an inherited function return the derived type instead of the base type

    I am writing two classes in C#:
    A Matrix class
    that represents a general Matrix with n-by-m dimensions
    A SquareMatrix class
    that inherits from Matrix and
    has the constraint of being n-by-n
    The reason I designed it this way is because square matrices support additional specific operations like calculating the determinant or the inverse, so being able to guarantee that those functions are avaliable with the specific type you're using are nice things
    to have. Additionally it would support all the regular Matrix operations and can be used as a Matrix
    I have a function in Matrix called getTranspose().
    It calculates the transpose of the Matrix and returns it as a new Matrix
    I inherited it in SquareMatrix,
    but because the transpose of a square matrix is guaranteed to be square matrix, I also want it to return a SquareMatrix
    I am unsure about the best way to do this.
    I can re-implement the function in SquareMatrix,
    but that would be code duplication because it's essentially the same calculation
    I can use implicit typecast operators, but if I understand correctly that would cause unnecessary allocations (upcast SquareMatrix to Matrix,
    create a new Matrix as
    the transpose, create a new SquareMatrix during
    typecasting and throw away the tranposed Matrix)
    I can use explicit typecast operators, but it would be stupid to have to typecast the transpose of a SquareMatrix explicitly,
    and it also has the same problem of the implicit operator with unnecessary allocations
    Is there another option? Should I change the design of having SquareMatrix inherit
    from Matrix?
    This problem also applies to operators. It seems that I have to either implement typecasting operators which might cost in performance, or have to re-implement the same code.

    Inheritance not helping to eliminate repetition and typecasts is often a sign that generics would help. You can do something like:
    public T getTranspose<T>()
    // or non-member function
    T getTranspose<T>(T input)
    I haven't fully worked it out, but it seems it might get awkward on the calling side. I know C# does some inference with generic methods, but I don't know C#, so I'm not familiar with the details. That might be the way you have to go, though, if you want
    full compile-time type checking with the least amount of repetition in the implementation.
    Another option would be to create private helper functions, then pass in the result type you want, for the helper to populate, like:
    public SquareMatrix getTranspose() {
    SquareMatrix result = new SquareMatrix();
    transposeHelper(result);
    return result;
    This gives you more boilerplate on the implementation side, but at least it isn't full repetition.
    A third option is just to check if the result is square in the Matrix implementation, and return a
    SquareMatrix if it is, like:
    public Matrix getTranspose() {
    Matrix result;
    if (resultIsSquare())
    result = new SquareMatrix();
    else
    result = new Matrix();
    // calculate result
    return result;
    This has the advantage of not needing any implementation at all for getTranspose() in
    SquareMatrix, but at the expense of requiring type checking of the return value at the call site. It also works for cases like multiplying two non-square matrices that happen to give a square result. You give up most compile-time type checking,
    though.
    If your application happens to mostly require run-time instead of compile-time type checking anyway, you might as well just give up the different types and throw an exception if you call a method that a non-square matrix doesn't support. I believe this is
    the approach most existing libraries take, especially since there are other conditions than being non-square that can cause methods like
    inverse() to fail.
    Speaking of libraries, there are a lot of good ones out there for matrix math, that are already heavily tested and optimized. Don't reinvent the wheel if you don't have to.

  • Methods returning the wrong values...

    Hi,
    I've managed to get my hands on vb6 (though, it would be really nice if there was vb .net support.. I thougt this was coming in 1.5?) and have run into a rather odd problem. get Methods seem to return values from the wrong methods! For example, let's pretend my activex control stores values about a person. getName would return their age, while getAge might return null! Something is also going wrong with my method that accepts input and returns a value (okay, it is a money conversion program!)... it is returning null!
    I have verified that all these methods work perfectly by running the code in JBuilder with a Main class.
    Any idea what to do?
    (or how to make it work in .net!!!)
    Thanks!

    Wow!! I think the key was using the CreateObject command. I was adding it as a control, like I would a textbox. Things are working perfectly as far as I can tell! I wonder how I am supposed to test it in the vb6 testbox then.. Hrm.. Odd.
    This is great, though!! Thanks so much. :)

  • WCF returning "The content type text/html of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8)"

    I have a WCF service I am trying to run on a new installation of 64-bit Windows Server 2008 IIS. Although it runs fine on Windows 2003 IIS, it is throwing the error in the thread title, which appears to be a server config issue, but I am not sure. Googling and searching the MSDN forums did not turn up a solution. I tried running WCF Logging, but that didn't help either.
    Does anyone have any suggestions on how to solve this probelm?
    Here is the error:
    The content type text/html of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 1024 bytes of the response were: '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <title>500 - Internal server error.</title>
    <style type="text/css">

    I have the same issue on Windows 7 machine. The service works fine using a SoapUI client but a .Net client faisl to get a response.
    Hi,
    I have a WCF service which works perfectly when using SoapUI but throws error in my .Net client.
    {"The content type text/html; charset=UTF-8 of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first
    1024 bytes of the response were: '<HTML><HEAD><link rel=\"alternate\" type=\"text/xml\" href=\"http://xyz.mysite.com/ysa/Broker.svc?disco\"/><STYLE type=\"text/css\">#content{ FONT-SIZE: 0.7em;
    PADDING-BOTTOM: 2em; MARGIN-LEFT: 30px}BODY{MARGIN-TOP: 0px; MARGIN-LEFT: 0px; COLOR: #000000; FONT-FAMILY: Verdana; BACKGROUND-COLOR: white}P{MARGIN-TOP: 0px; MARGIN-BOTTOM: 12px; COLOR: #000000; FONT-FAMILY: Verdana}PRE{BORDER-RIGHT: #f0f0e0 1px solid; PADDING-RIGHT:
    5px; BORDER-TOP: #f0f0e0 1px solid; MARGIN-TOP: -5px; PADDING-LEFT: 5px; FONT-SIZE: 1.2em; PADDING-BOTTOM: 5px; BORDER-LEFT: #f0f0e0 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #f0f0e0 1px solid; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e5e5cc}.heading1{MARGIN-TOP:
    0px; PADDING-LEFT: 15px; FONT-WEIGHT: normal; FONT-SIZE: 26px; MARGIN-BOTTOM: 0px; PADDING-BOTTOM: 3px; MARGIN-LEFT: -30px; WIDTH: 100%; COLOR: #ffffff; PADDING-TOP: 10px; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #003366}.intro{MARGIN-LEFT: -15px}</STYLE><TITLE>Broker
    Service</TITLE></HEAD><BODY><DIV id=\"content\"><P class=\"head'."}
    I have the same service hosted on my local machine and when I point to the local service I can execute the operation with no issues. The message encoding is Soap11. I tried changing to Soap12 but I get exact same error. Any ideas greatly appreciated.
    I do have windows Activation Features installed and I am using .Net Framework 4.
    Thanks
    Sofia Khatoon

  • Simple Query with subquery returns the 'wrong' result

    DB version: 11.2
    We created about 27 schemas in the last 4 days. The below query confirms that.
    SQL > select username, created from dba_users where created > sysdate-4;
    USERNAME                       CREATED
    MANHSMPTOM_DEV_01              12 Jul 2012 11:55:16
    PRSM01_OAT_IAU                 13 Jul 2012 01:51:03
    F_SW                           11 Jul 2012 17:52:42
    FUN_CDD_HK_SIT                 09 Jul 2012 15:33:57
    CEMSCOMPTOM_UAT_01             12 Jul 2012 11:43:45
    STORM02_OAT_IAU                13 Jul 2012 02:06:29
    27 rows selected.  -------------> Truncated outputFrom DBA_TS_QUOTAS.max_bytes column , we can determine the space quota allocated for a user/schema
    SQL > desc dba_ts_quotas
    Name                                      Null?    Type
    TABLESPACE_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(30)
    BYTES                                              NUMBER
    MAX_BYTES                                          NUMBER
    BLOCKS                                             NUMBER
    MAX_BLOCKS                                         NUMBER
    DROPPED                                            VARCHAR2(3)So, I wanted to see the allocated space for the users created in the last 4 days. The below query should return only 27 records because the subquery returns only 27 records. Instead it returned 66 records !
    select username, tablespace_name, max_bytes/1024/1024 quotaInMB
    from dba_ts_quotas
    where username in (select username from dba_users where created > sysdate-4);Any idea why ? I know it is not a bug with oracle. Its just I haven't been eating fish lately.

    Hi,
    J.Kiechle wrote:
    So, I wanted to see the allocated space for the users created in the last 4 days.DBA_TS_QUOTAS doesn't give the allocated space but rather the maximum allowed for a given user.
    J.Kiechle wrote:
    The below query should return only 27 records because the subquery returns only 27 records. Instead it returned 66 records !What if your user John has Quotas on 3 tablespace TBS1, TBS2 and TBS3 ?
    You cannot expect the outer query to only retrieve at most 27 rows just because the inner query returns 27 rows.
    For allocated space by tablespace for recently created users, you'd better query dba_segments. something like :select owner, tablespace_name, trunc(sum(bytes)/1024/1024) alloc_mb
    from dba_segments
    where owner in (select username from dba_users where created > sysdate - 4)
    group by owner, tablespace_name
    order by owner, tablespace_name;

  • SAP ABAP license key for NSP returning the wrong system number

    Ladies and Gentlemen,
    when trying to generate a license key for SAP NetWeaverAS ABAP 702 SP6 32bit Trial on your minisap.htm site, i am getting returned a key which does not contain the system number 000000000311504226 under with the 32bit Trial is delivered. Is it possible, that with your new 64bit Trial the system number changed and you are only offering the creation for the 64bit release on your website currently? Could you add back in the 32bit version again?
    Thanks in advance and best greetings
    Joern Brabandt

    The installation key returned is:
    Begin SAP License -
    SAPSYSTEM=NSP
    HARDWARE-KEY=O0162369962 -- which is right
    INSTNO=DEMOSYSTEM
    BEGIN=20110412
    EXPIRATION=20110712
    LKEY=MIIBOgYJKoZIhvcNAQcCoIIBKzCCAScCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCAQYwggECAgEBMFgwUjELMAkGA1UEBhMCREUxHDAaBgNVBAoTE215U0FQLmNvbSBXb3JrcGxhY2UxJTAjBgNVBAMTHG15U0FQLmNvbSBXb3JrcGxhY2UgQ0EgKGRzYSkCAgGhMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMTA0MTMxNjIyMDJaMCMGCSqGSIb3DQEJBDEWBBQ94k8EGqtBHtoNCkMpzFDzhV9gVzAJBgcqhkjOOAQDBC4wLAIUI8r9sei4qJBK7ObqMlPP1WgENtoCFCSO/Pk5Ynypm1ondFQTKm67eLH0
    SWPRODUCTNAME=NetWeaver_ADA
    SWPRODUCTLIMIT=2147483647
    SYSTEM-NR=000000000311550903 -- which is wrong!

  • "File Dialog" Express VI returns the wrong path when the user selects the desktop

    In labview 8.0.1 with Windows
    XP, the File Dialog Express VI seems to return something other than the path
    selected by the user when configured to browse for folders (or files and
    folders) and the user selects the desktop.
    I can't determine exactly when it works and when it fails, but it always seems
    to fail if the user selects the desktop from the places bar (the shortcuts on
    the left side of the dialog) or from the drop-down menu at the top of the
    dialog and then clicks the "Current Folder" button to dismiss the
    dialog.  In this case it always returns whatever path is wired to the
    "Start Path" terminal.
    If the user navigates to the desktop with the "Up One Level" button
    or by selecting the actual desktop directory under Documents and Settings, the
    correct path is returned.
    If the user selects a file before clicking the desktop icon, then clicks
    "Current Folder" the correct path is returned.
    If the user clicks the desktop icon, clicks open, then clicks "Current
    Folder" the correct path is returned.
    It's possible to work around this bug in most cases by setting the start path
    to the desktop.
    Has anyone seen this behavior before?
    Can anybody verify this behavior by running the attached VI?
    In the past, when I've reported issues like this I've received responses from
    NI engineers that basically said "Thanks, but we already knew
    that".  Is there anywhere that users can search the list of known
    bugs and avoid wasting time tracking down issues that are already understood by
    NI?
    Thanks,
    Adam Brewster
    Attachments:
    File Dialog Test.vi ‏39 KB

    I'm on 8.2 and I can't get it to fail no matter how I select the desktop. I haven't tried it in 8.0, but I imagine that if this really is a bug, they did know about it and fixed it with 8.2. If this causes a real problem for you, I would suggest upgrading if you can.

Maybe you are looking for

  • Cannot upgrade iTunes to 11.2.2 and cannot sync my iPhone 4 without iTunes upgrade?

    I can't sync my iPhone 4 to my MacBook anymore.  I get an iTunes message that I need to upgrade but my system check says I have all the upgrades.  I tried to download iTunes 11.2.2 but my Mac can't handle it (OS X 10.5.8).  Am I stuck in a 'Catch 22'

  • Multiple click boxes in the same page

    I'm trying to include 4 click boxes in the same page in Captivate 5. The idea is when user clicks on each box, the content reveals and stays on the screen. The first click box works fine. But when click the second box, the content shows only for less

  • San Francisco  - LTE Network Outage

    Once again LTE is either non existent or not even working in my location in San Francisco. I live  near GG park  94117  (Cole / Page/ Waller/ Haight area and all day  (sat. sept 28th), I've  haven't been receiving any data and keep receiving "Network

  • Mail needs to be restarted every time I awake my computer from sleeping,

    Every time I awake my computer from sleeping, Mail needs to be restarted. Why's that? The problem is that if I'm not aware of i it, my Mail stays offline. Any help? Thanks Nico

  • Just installed Tiger, where is........?

    I bought the 4CD Tiger set from Applerescue and installed it on my 450 MHz G4 PowerPC on an empty spare 27 GB hard drive. The dock has a ? for iMovieHD. I also noticed iPhoto is no longer a part of OS X as it was in Panther. I did a custom install om