Problem with SUBSTR and GROUP BY

Hi people...
I'm needing a little help with this case. I'm executing this SQL and got error ORA-01722. I've tried to use number columns, alias and the syntax below and always got error. My problem is the SUBSTR, without it I can run the SQL with no error.
SQL> ED
Gravou arquivo afiedt.buf
1 SELECT TO_CHAR(DATA,'DD/MM') AS DATA,
2 SUBSTR(TO_CHAR(DATA,'DAY'),1,3) AS DIA_SEM,
3 SUM(DECODE(TIPOBAIXA,1,1,0)) AS INST,
4 SUM(DECODE(TIPOBAIXA,1,0,1)) AS REM,
5 SUM(DECODE(TIPOBAIXA,1,1,0))-SUM(DECODE(TIPOBAIXA,1,0,1)) AS DIFF
6 FROM BAIXA
7 GROUP BY TO_CHAR(DATA,'DD/MM'), TO_CHAR(DATA,'DAY')
8* ORDER BY TO_CHAR(DATA,'DD/MM') DESC
SQL> /
GROUP BY TO_CHAR(DATA,'DD/MM'), TO_CHAR(DATA,'DAY')
ERRO na linha 7:
ORA-01722: invalid number
Somebody has an idea of how I can solve this?
Thanks,
Fabiano

SQL> create table baixa
  2  as
  3  select sysdate data, 1 tipobaixa from dual union all
  4  select sysdate - 1, 0 from dual union all
  5  select sysdate - 2, 1 from dual
  6  /
Tabel is aangemaakt.
SQL> SELECT TO_CHAR(DATA,'DD/MM') AS DATA
  2       , TO_CHAR(DATA,'DY') AS DIA_SEM
  3       , SUM(DECODE(TIPOBAIXA,1,1,0)) AS INST
  4       , SUM(DECODE(TIPOBAIXA,1,0,1)) AS REM
  5       , SUM(DECODE(TIPOBAIXA,1,1,0))-SUM(DECODE(TIPOBAIXA,1,0,1)) AS DIFF
  6    FROM BAIXA
  7   GROUP BY TO_CHAR(DATA,'DD/MM'), TO_CHAR(DATA,'DY')
  8   ORDER BY TO_CHAR(DATA,'DD/MM') DESC
  9  /
GROUP BY TO_CHAR(DATA,'DD/MM'), TO_CHAR(DATA,'DY')
FOUT in regel 7:
.ORA-01722: invalid number
SQL> select to_char(data,'dd/mm') as data
  2       , to_char(data,'DY') as dia_sem
  3       , sum(decode(tipobaixa,1,1,0)) as inst
  4       , sum(decode(tipobaixa,1,0,1)) as rem
  5       , sum(decode(tipobaixa,1,1,0))-sum(decode(tipobaixa,1,0,1)) as diff
  6    from baixa
  7   group by to_char(data,'dd/mm')
  8       , to_char(data,'DY')
  9   order by 1 desc
10  /
DATA  DI                                   INST                                    REM                           DIFF
05/01 VR                                      1                                      0                              1
04/01 DO                                      0                                      1                             -1
03/01 WO                                      1                                      0                              1
3 rijen zijn geselecteerd.Regards,
Rob.

Similar Messages

  • Problem with decimals and grouping characters in Java 6

    I'm having problems with locales in Java 6.
    I have the following code:
    NumberFormat format = NumberFormat.getInstance(new Locale("es", "CO", "Traditional_WIN"));
    BigDecimal number = new BigDecimal("123456");
    System.out.println(format.format(number));If I run it with Java 5, I get 123,456 which is OK, and is excatly the output I would expect.
    If I run it with Java 6, I get 123.456 Why am I getting a different output?
    Am I doing something wrong?

    change the separator symbol, something like:
    DecimalFormat format = (DecimalFormat)NumberFormat.getInstance(new Locale("es", "CO", "Traditional_WIN"));
    BigDecimal number = new BigDecimal("123456");
    DecimalFormatSymbols dfs = format.getDecimalFormatSymbols();
    dfs.setGroupingSeparator( ',' );
    format.setDecimalFormatSymbols( dfs );
    System.out.println(format.format(number));regards;

  • Problem with EAP and RADIUS

    Hi *,
      I have the following problem with RADIUS and EAP authentication.
    Radius server sends an "Access-Accept" packet to my AP, but the station does not authenticate.
    I've tried with different encryption configuration and with different authentication methods under "dot11 essid", but nothing changes...
    What could it be?
    Debug piece and configuration follows:
    *Jan 25 14:23:34.795: RADIUS/ENCODE(00000012): acct_session_id: 17*Jan 25 14:23:34.795: RADIUS(00000012): sending*Jan 25 14:23:34.799: RADIUS:   4E 47 56 7A 78 65 4A 4F 55 31 47 40 77 6C 61 6E  [NGVzxeJOU1G@wlan]*Jan 25 14:23:34.799: RADIUS:   2E 6D 6E 63 30 30 31 2E 6D 63 63 30 30 31 2E 33  [.mnc001.mcc001.3]*Jan 25 14:23:34.799: RADIUS:   67 70 70 6E 65 74 77 6F 72 6B 2E 6F 72 67        [gppnetwork.org]*Jan 25 14:23:34.799: RADIUS:  NAS-Port-Type       [61]  6   802.11 wireless           [19]*Jan 25 14:23:34.799: RADIUS:  NAS-Port            [5]   6   265                       *Jan 25 14:23:34.799: RADIUS:  NAS-Port-Id         [87]  5   "265"*Jan 25 14:23:34.799: RADIUS:  NAS-IP-Address      [4]   6   192.168.173.2             *Jan 25 14:23:34.811: RADIUS/DECODE: EAP-Message fragments, 20, total 20 bytes*Jan 25 14:23:34.831: RADIUS/ENCODE(00000012):Orig. component type = DOT11*Jan 25 14:23:34.831: RADIUS:  AAA Unsupported Attr: ssid              [265] 8   *Jan 25 14:23:34.831: RADIUS:   57 69 66 69 45 41                                [WifiEA]*Jan 25 14:23:34.831: RADIUS:  AAA Unsupported Attr: interface         [157] 3   *Jan 25 14:23:34.831: RADIUS:   32                                               [2]*Jan 25 14:23:34.831: RADIUS(00000012): Config NAS IP: 192.168.173.2*Jan 25 14:23:34.831: RADIUS/ENCODE(00000012): acct_session_id: 17*Jan 25 14:23:34.835: RADIUS(00000012): sending*Jan 25 14:23:34.835: RADIUS:   10 01 00 01 07 05 00 00 D9 37 C3 D9 79 3E 33 EA  [?????????7??y>3?]*Jan 25 14:23:34.835: RADIUS:   F3 7D 73 43 BF BA D0 6A                          [?}sC???j]*Jan 25 14:23:34.835: RADIUS:  NAS-Port-Type       [61]  6   802.11 wireless           [19]*Jan 25 14:23:34.835: RADIUS:  NAS-Port            [5]   6   265                       *Jan 25 14:23:34.835: RADIUS:  NAS-Port-Id         [87]  5   "265"*Jan 25 14:23:34.835: RADIUS:  NAS-IP-Address      [4]   6   192.168.173.2             *Jan 25 14:23:35.035: RADIUS: Received from id 1645/64 192.168.177.158:1812, Access-Challenge, len 304*Jan 25 14:23:35.039: RADIUS:   46 10 78 5F 5F B0 CB 6C 0B 05 00 00 DA C3 BF 28  [F?x__??l???????(]*Jan 25 14:23:35.039: RADIUS:   E0 18 2B 95 97 C2 0A D7 40 53 FE 62              [??+?????@S?b]*Jan 25 14:23:35.039: RADIUS(00000012): Received from id 1645/64*Jan 25 14:23:35.039: RADIUS/DECODE: EAP-Message fragments, 60+220, total 280 bytes*Jan 25 14:23:35.355: RADIUS/ENCODE(00000012):Orig. component type = DOT11*Jan 25 14:23:35.355: RADIUS:  AAA Unsupported Attr: ssid              [265] 8   *Jan 25 14:23:35.355: RADIUS:   57 69 66 69 45 41                                [WifiEA]*Jan 25 14:23:35.355: RADIUS:  AAA Unsupported Attr: interface         [157] 3   *Jan 25 14:23:35.359: RADIUS:   92 DA 5E 26 CF 40 01 22 7A 8E F5 C1              [??^&?@?"z???]*Jan 25 14:23:35.359: RADIUS:  NAS-Port-Type       [61]  6   802.11 wireless           [19]*Jan 25 14:23:35.359: RADIUS:  NAS-Port            [5]   6   265                       *Jan 25 14:23:35.359: RADIUS:  NAS-Port-Id         [87]  5   "265"*Jan 25 14:23:35.359: RADIUS:  NAS-IP-Address      [4]   6   192.168.173.2             *Jan 25 14:23:35.367: RADIUS: Received from id 1645/65 192.168.177.158:1812, Access-Accept, len 30*Jan 25 14:23:35.367: RADIUS:  authenticator 8C 2C 1B 97 82 BB 6C 7F - AA D3 4A AB CA 22 8B B7*Jan 25 14:23:35.367: RADIUS:  EAP-Message         [79]  10  *Jan 25 14:23:35.367: RADIUS:   03 01 00 04 00 00 00 00                          [????????]*Jan 25 14:23:35.371: RADIUS(00000012): Received from id 1645/65*Jan 25 14:23:35.371: RADIUS/DECODE: EAP-Message fragments, 8, total 8 bytes*Jan 25 14:23:35.671: %DOT11-7-AUTH_FAILED: Station d023.dbb8.d6a9 Authentication failed
    Config:
    aaa new-model!aaa group server radius rad_eap server-private 192.168.177.158 auth-port 1812 acct-port 1813 key 7 044803071D2448!aaa authentication login eap_methods group rad_eapaaa authorization exec default if-authenticated aaa authorization network default if-authenticated !         aaa session-id commonip name-server 192.168.177.45!                dot11 ssid WifiEAP1   vlan 10   authentication open eap eap_methods    authentication shared eap eap_methods   authentication key-management wpa optional   guest-mode!         bridge irb!         interface Dot11Radio0 no ip address no ip route-cache !        encryption vlan 10 mode ciphers aes-ccm tkip wep128 !        broadcast-key vlan 10 change 300 !        ssid WifiEAP1 !        antenna gain 0 station-role root!         interface Dot11Radio0.10 encapsulation dot1Q 10 native no ip route-cache bridge-group 1 bridge-group 1 subscriber-loop-control bridge-group 1 block-unknown-source no bridge-group 1 source-learning no bridge-group 1 unicast-flooding bridge-group 1 spanning-disabled!         interface GigabitEthernet0 ip address 192.168.173.3 255.255.255.0 no ip route-cache!         interface GigabitEthernet0.1 encapsulation dot1Q 10 native no ip route-cache bridge-group 1 no bridge-group 1 source-learning bridge-group 1 spanning-disabled!         interface BVI1 ip address 192.168.173.2 255.255.255.0 no ip route-cache!ip radius source-interface BVI1 bridge 1 route ip
    thanks so much!

    Stefano: not sure if related but there is an unsupported attribute in the debugs:
    Jan 25 14:23:35.355: RADIUS:  AAA Unsupported Attr:
    *Jan 25 14:23:35.355: RADIUS:   57 69 66 69 45 41
    *Jan 25 14:23:35.355: RADIUS:  AAA Unsupported Attr: interface
    Try to eliminate any configured attributes on radius except those in IETF radius. Then try again.
    You may also chech by removing the shared eap as suggested above. Let us know if this works.
    Sent from Cisco Technical Support iPad App

  • Problems with RAC and XA: Fallback

    Hello,
    we are seing problems with RAC and XA (Tuxedo 11, DB 11.2), specifically encountering "ORA-24798: cannot resume the distributed transaction branch on another instance".
    The first scenario relates to fallback after a RAC node failure. There are two servers, S1 and S2. S1 makes an ATMI call to S2. Both servers are in the same Tuxedo group, using TMS_ORA. RAC is set up for failover (BASIC), no load balancing.
    The sequence is:
    - S1 and S2 are connected to the same RAC node n1. All is well.
    - RAC node n1 fails. S1, S2 and the TMS_ORA all fail over to RAC node n2. After the failover has happened, all is well.
    - RAC node n1 recovers. All is still well (as there is no automatic fallback).
    - S1 (or S2) is restarted (either intentionally or because of a crash). Since n1 is up again, S1 connects to n1. Now we get ORA-24798. Permanently.
    S1 is connected to n1 and S2 is connected to n2. Since both are in the same group, both use the same XA transaction branch. When called, S2 attempts to JOIN the transaction branch that S1 started. But the DB (11.2) does not allow the same branch to span more than one node. Hence the ORA-24798.
    This seems to be a severe limitation in the combination of Tuxedo, XA and RAC. It basically means we still have to use DTP services, even with Tuxedo 11 and DB 11.2. Or are we missing something?
    We could put S1 and S2 into different groups, but that seems to be inefficient, and not practical for a real application (10s of servers).
    I am extrapolating from this that RAC load balancing would also not work, as S1 and S2 could be connected to different RAC nodes.
    Roger

    Roger,
    When using an external transaction manager such as Tuxedo you should still declare Oracle services as DTP services when using Oracle Database 11g. The Tuxedo documentation is not clear about this. The relevant 11gR2 RAC documentation is at http://download.oracle.com/docs/cd/E11882_01/rac.112/e16795/hafeats.htm and states
    "An XA transaction can span Oracle RAC instances by default, allowing any application that uses the Oracle XA library to take full advantage of the Oracle RAC environment to enhance the availability and scalability of the application.
    "GTXn background processes support global (XA) transactions in an Oracle RAC environment. The GLOBAL_TXN_PROCESSES initialization parameter, which is set to 1 by default, specifies the initial number of GTXn background processes for each Oracle RAC instance. Use the default value for this parameter clusterwide to allow distributed transactions to span multiple Oracle RAC instances. Using the default value allows the units of work performed across these Oracle RAC instances to share resources and act as a single transaction (that is, the units of work are tightly coupled). It also allows 2PC requests to be sent to any node in the cluster.
    "Before Release 11.1, the way to achieve tight coupling in Oracle RAC was to use Distributed Transaction Processing (DTP) services, that is, services whose cardinality (one) ensured that all tightly-coupled branches landed on the same instance—regardless of whether load balancing was enabled. Tightly coupled XA transactions no longer require the special type of singleton services to be deployed on Oracle RAC databases if the XA application does not join or resume XA transaction branches. XA transactions are transparently supported on Oracle RAC databases with any type of service configuration.
    A"n external transaction manager, such as Oracle Services for Microsoft Transaction Server (OraMTS), coordinates DTP/XA transactions. However, an internal Oracle transaction manager coordinates distributed SQL transactions. Both DTP/XA and distributed SQL transactions must use the DTP service in Oracle RAC."
    This issue came up earlier this year in another newsgroup thread at https://forums.oracle.com/forums/thread.jspa?threadID=2165803
    Regards,
    Ed

  • Problem with substring in xsl file?

    Hallo,
    i have a xsl file, when using
    <xsl:value-of select="StsEdat"/> i've got 2007-05-21, that's o.k.
    when using <xsl:value-of select="substring(StsEdat,9,2)"/> the answer is blank.
    also 0,5 or so on. substring at this position delivers blank. why?
    what can it be? i'am helpless.
    any help is appreciated.

    Hi,
    I used <xsl:value-of select="substring(StartDate,9,2)"/> the answer was 21 and to 0,5 the answer was 2007. It seems that's ok!
    Try to do it and see if you have problem with substring.
    <xsl:variable name="StsEdat">2007-05-21</xsl:variable>
    <xsl:value-of select="substring($StsEdat,9,2)"/>
    or this weird way, :)
    <xsl:variable name="StsEdat">2007-05-21</xsl:variable>
    <xsl:value-of select='substring-after(substring-after($StsEdat, "-"), "-")' />
    Regards,
    Cleiton

  • Problem with showing a group of records in dynamic page (PLS-00428  error)

    Hi
    I have problems with viewing a group of records from db. I've created Page, which "Page Type" attribute is "PL/SQL". In "PL/SQL Code" field, I've written very simple SQL query: "SELECT * FROM PORTAL_DEMO.EMP ;"
    I'd like to generate HTML table with it's result. Unfortunately, every time I get the same Exception:
    Error 30584: DBMS_SQL has raised an unhandled exception. ORA-06550: line 1, column 7: PLS-00428: an INTO clause is expected in this SELECT statement
    Is it necessary to write a COURSOR (and use HTP function) to realize this functionality? I succeed, trying this way - but it is very uncomfortable ( a lot of code ).
    What I have done in wrong way?
    Please help me.
    Best regards
    Mario

    How do I handle this?

  • Lync 2013 I have a strange problem concerning group call pickup in lync 2013.the pickup calls on snom 710 having only a second delay, but in lync client it having about 5-7 second Anybody out there having similar problems with call pickup Groups?

    HI
    I have a strange problem concerning  group call pickup  in lync 2013.the pickup calls on snom 710 having only a second delay, but in lync client it having  about 5-7 second
    Anybody out there having similar problems with call pickup Groups?

    Hi,
    Did you meet any other call delay when you using Lync?
    As the issue happen for Lync desktop client, it can be performance issue. Please check if there is any error message from FE Server when the issue happen.
    Also please check if you have updated Lync Server to the latest version, if not, update it and then test again.
    Best Regards,
    Eason Huang  
    Eason Huang
    TechNet Community Support

  • Problems with JSF and included subviews

    Hi everybody,
    I' ve got a problem with JSF and included subviews which makes me going
    crazy. I've got no clue why my web-pages are represent wrongly. The only
    tip I've got is that it must be connected with the kind I do include my JSF-pages.
    When I use <%@file="sub.jsp"%> my pages are are represent right. When I use <jsp:include page="Sub.jsp" /> or <c:import url="Sub.jsp" /> ( mark: the usage of flush="true" or flush="false" doesn't matter )
    my pages are represent wrongly.
    The usage of tags like f:facet or f:verbatim were also included but didn't point to an solution.
    I searched the whole Sun Developer Forum and some other web-sites for any solution for my problem but the given hints and clues didn't help. Now I'm trying to post my problem directly in Sun's Forum in hope to get help.
    My environment is the following:
    JAVA JDK 1.5 Update 4
    Tomcat 5.5.9
    JSLT 1.1
    Sun JSF 1.1
    Win 2K
    Here's my code:
    Main.jsp
    <%@ page language="java"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%
              String path = request.getContextPath();
              String basePath = request.getScheme() + "://" + request.getServerName()
                        + ":" + request.getServerPort() + path + "/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <base href="<%=basePath%>">
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <link rel="stylesheet" href="stil.jsp" type="text/css" />
    </head>
    <body>
         <f:view>
              <h:form>
                   <div class="table">
                        <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 1"/>
                             <h:outputText styleClass="tdinfo" value="value 2"/>
                        </div>
                        <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 3"/>
                             <h:outputText styleClass="tdinfo" value="value 4"/>
                        </div>
                   </div>
              </h:form>     
              <jsp:include page="Sub.jsp" />
         </f:view>
    </body>
    </html>Sub.jsp
    <%@ page language="java"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <f:subview id="subview">
         <h:form>
              <div class="table">
                   <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 11"/>
                             <h:outputText styleClass="tdinfo" value="value 22"/>
                   </div>
                   <div class="tr">
                        <h:outputText styleClass="tdleft" value="value 33"/>
                        <h:outputText styleClass="tdinfo" value="value 44"/>
                   </div>
              </div>
         </h:form>
    </f:subview>stil.jsp
    <%@page contentType="text/css"%>
    <%
        String  schwarz     = "#000000",
                grau1       = "#707070",
                grau2       = "#c0c0c0",
                grau3       = "#e0e0e0",
                grau4       = "#e8e8e8",
                grau5       = "#fdfdfd",
                blau        = "#0000dd",
                tuerkis     = "#00cfff";
        String  liniendicke = "1px",
                linienart   = "solid";
        String allgemeineTextFarbe           = schwarz;
        String allgemeineHintergrundFarbe    = grau3;
        String infoTextFarbe                 = blau;
        String fieldsetRandFarbe             = blau;
        String fieldsetRandDicke             = liniendicke;
        String fieldsetRandArt               = linienart;
        String hrLinienFarbe                 = blau;
        String hrLinienDicke                 = liniendicke;
        String hrLinienArt                   = linienart;
        String inputAktivHintergrundFarbe    = grau5;
        String inputReadonlyHintergrundFarbe = grau4;
        String inputPassivHintergrundFarbe   = grau4;
        String inputPassivFarbe              = schwarz;
        String inputRandFarbe1               = grau1;
        String inputRandFarbe2               = grau5;
        String inputRandDicke                = liniendicke;
        String inputRandArt                  = linienart;
        String inputButtonHintergrundFarbe   = grau3;
        String legendenFarbe                 = blau;
        String linkFarbe                     = blau;
        String linkAktivFarbe                = tuerkis;
        String linkBesuchtFarbe              = blau;
        String linkFocusFarbe                = tuerkis;
        String objectGitterFarbe             = grau5;
        String objectGitterDicke             = liniendicke;
        String objectGitterArt               = linienart;
        String tabellenGitterFarbe           = grau5;
        String tabellenGitterDicke           = liniendicke;
        String tabellenGitterArt             = linienart;
    %>
    <%-- ----------------------------------------------- --%>
    <%-- Textdarstellung mittels der Display-Eigenschaft --%>
    <%-- in den Tags div und span                        --%>
    <%-- ----------------------------------------------- --%>
    *.table {
        display:table;
        border-collapse:collapse;
    *.tbody {
        display:table-row-group;
    *.tr {
        display:table-row;
    *.td,*.tdright,*.tdleft,*.tdinfo,*.th {
        display:table-cell;
        padding:3px;
        vertical-align:middle;
    *.td,*.th {
        text-align:center;
    *.tdright {
        text-align:right;
    *.tdleft {
        text-align:left;
    *.tdinfo {
        color:<%=infoTextFarbe%>;
        text-align:right;
    *.th {
        color:<%=infoTextFarbe%>;
        font-weight:bold;
    }thanks in advance
    benjamin

    Hello Zhong Li,
    many thanks for your post, but it didn't work.
    My problem is that the JSF-Components im my included or imported
    JSP-Pages does not accept any kind of style or styleClass for
    designing. The components take over the informations for colors
    but not for alignment.
    When I take a look at the generated JAVA-Source in $TOMCAT/WORK/WEBAPP for my sub.jsp ( sub.java )
    it seems that the resulting HTML-page would be presented correctly.
    But later when I start the application via Firefox or Mozilla the html-sourcecode is totally wrong.
    In my example I create a simple grid with 2 rows and 2 columns.
    Both columns contains JSF-Outtext-Components and are included with div-tags.
    The generated Sub.java shows that the text would be setted in the div-tags. Unfortunately the html-sourcecode represented by my browser shows that jsf-text is not setted in the tags but in the <h:form> tags. The div-tags are neither rounded by <h:form> nor containing the JSF-OutText-Components.
    Any clue?
    Many thanks Benjamin
    Here is the html-code from Firefox:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <base href="http://polaris21:8080/webtest/">
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <link rel="stylesheet" href="stil.jsp" type="text/css" />
    </head>
    <body>
         <form id="_id0" method="post" action="/webtest/Main.faces" enctype="application/x-www-form-urlencoded">
              <div class="table">
                   <div class="tr">
                        <span class="tdleft">value 1</span>
                        <span class="tdinfo">value 2</span>
                   </div>
                   <div class="tr">
                        <span class="tdleft">value 3</span>
                        <span class="tdinfo">value 4</span>
                   </div>
              </div>
              <input type="hidden" name="_id0" value="_id0" />
         </form>     
          <form id="SUB:_id5" method="post" action="/webtest/Main.faces" enctype="application/x-www-form-urlencoded">
               <span class="tdleft">value 11</span>
              <span class="tdinfo">value 22</span>
              <span class="tdleft">value 33</span>
              <span class="tdinfo">value 44</span>
              <input type="hidden" name="SUB:_id5" value="SUB:_id5" />
         </form>
         <div class="table">
              <div class="tr">
              </div>
              <div class="tr">
              </div>
         </div>
    </body>
    </html>

  • Random problems with Mail and ACL

    Am running 10.5.2 on a 2.8 GHz Intel iMac
    Have been experiencing problems with Mail.
    As I'm the only user I've set up Mail Preferences so that a password isn't required every time. However, on occasions, but not always, I get a repeated request for my password - on two of the three Mail accounts I have. No matter how many times I key in the password I keep being asked again. The only solution is to shut the computer down and come back to it sometime later when - most times - it works fine.
    I have an iPod Touch which lifts mail off my server, via the same wifi connection and it works fine.
    Then I had a problem where I couldn't quit Mail. I rebooted several times but Mail continued to refuse to Quit. I had to do a Force Quit every time.
    I've tried repairing permissions. Takes ages then get the following relating to ACL's.
    Whilst I've been using Macs since the mid 80's I'm not a techie and haven't got a clue what ACL's are or what they do.
    In the past when I've (regularly) run Repair Permissions as part of my system housekeeping I've had no problems.
    However, now when I run a Permissions repair this is what I get:
    Repairing permissions for “Macintosh HD”
    Permissions differ on "private/var/log/secure.log", should be -rw------- , they are -rw-r----- .
    ACL found but not expected on "System/Library/User Template/English.lproj/Sites".
    Group differs on "Library/PreferencePanes", should be 0, group is 80.
    Permissions differ on "Library/PreferencePanes", should be drwxr-xr-x , they are drwxrwxr-x .
    ACL found but not expected on "System/Library/User Template/English.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/English.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/English.lproj/Downloads".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/MIDI Drivers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Compositions".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Input Methods".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Screen Savers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Voices".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library".
    ACL found but not expected on "System/Library/User Template/English.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/English.lproj/Music".
    ACL found but not expected on "System/Library/User Template/English.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/English.lproj/Public".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/lib/jvm.cfg", should be 0, user is 95.
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/classlist" , should be 0, user is 95.
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Japanese.lproj/Public".
    ACL found but not expected on "System/Library/User Template/German.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/German.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/German.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/German.lproj/Library".
    ACL found but not expected on "System/Library/User Template/German.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/German.lproj/Music".
    ACL found but not expected on "System/Library/User Template/German.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/German.lproj/Public".
    ACL found but not expected on "System/Library/User Template/French.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/French.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/French.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/French.lproj/Library".
    ACL found but not expected on "System/Library/User Template/French.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/French.lproj/Music".
    ACL found but not expected on "System/Library/User Template/French.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/French.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Spanish.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Italian.lproj/Public".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Library".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Music".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/Dutch.lproj/Public".
    ACL found but not expected on "System/Library/User Template/da.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/da.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/da.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/da.lproj/Library".
    ACL found but not expected on "System/Library/User Template/da.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/da.lproj/Music".
    ACL found but not expected on "System/Library/User Template/da.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/da.lproj/Public".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Library".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Music".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/fi.lproj/Public".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Library".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Music".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/ko.lproj/Public".
    ACL found but not expected on "System/Library/User Template/no.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/no.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/no.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/no.lproj/Library".
    ACL found but not expected on "System/Library/User Template/no.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/no.lproj/Music".
    ACL found but not expected on "System/Library/User Template/no.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/no.lproj/Public".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Library".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Music".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/ru.lproj/Public".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Library".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Music".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/sv.lproj/Public".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Library".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Music".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/pt.lproj/Public".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Library".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Music".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/zh_CN.lproj/Public".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Sites".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Documents".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Library".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Music".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/zh_TW.lproj/Public".
    Permissions repair complete
    After a reboot I ran Permissions Fix again, several times, every time with the same results?
    I went into into System/Library/User Template but the folder has a "no entry" i.e. red circle with white horizontal bar. I clicked on this but get message I don't have sufficient access privileges.
    I'm the only user and admin.
    Can someone tell me what's going on?

    Hi Charlie,
    The Mail app is requesting my password - again and again.
    The odd thing is that I have a three email accounts - all set up with the password stored in Mail Prefs so I don't have to enter each time - but only two accounts give me problems.
    The other strange thing is that when I boot up the computer first thing in the morning and check my mail there's rarely (if ever) a problem.
    I leave the computer on during the day then check my mail again after lunch - when the computer has been 'sleeping'. It's usually then that I hit a problem. Even rebooting at this stage doesn't always work. It's as if my iMac needs be shut down for several hours to work consistently.
    Something else I realised yesterday was that when the computer has been sleeping and I check Mail (in the afternoon) and Mail starts requesting password over and over again - and the black whirly hovers over the account - its often impossible to do a simple Quit on Mail. I have to do a Force Quit.
    First time I've ever experienced such confusing problems with Macs - and been using them since around 1986!

  • Problem with JFrame and busy/wait Cursor

    Hi -- I'm trying to set a JFrame's cursor to be the busy cursor,
    for the duration of some operation (usually just a few seconds).
    I can get it to work in some situations, but not others.
    Timing does seem to be an issue.
    There are thousands of posts on the BugParade, but
    in general Sun indicates this is not a bug. I just need
    a work-around.
    I've written a test program below to demonstrate the problem.
    I have the problem on Solaris, running with both J2SE 1.3 and 1.4.
    I have not tested on Windows yet.
    When you run the following code, three JFrames will be opened,
    each with the same 5 buttons. The first "F1" listens to its own
    buttons, and works fine. The other two (F2 and F3) listen
    to each other's buttons.
    The "BUSY" button simply sets the cursor on its listener
    to the busy cursor. The "DONE" button sets it to the
    default cursor. These work fine.
    The "SLEEP" button sets the cursor, sleeps for 3 seconds,
    and sets it back. This does not work.
    The "INVOKE LATER" button does the same thing,
    except is uses invokeLater to sleep and set the
    cursor back. This also does not work.
    The "DELAY" button sleeps for 3 seconds (giving you
    time to move the mouse into the other (listerner's)
    window, and then it behaves just like the "SLEEP"
    button. This works.
    Any ideas would be appreciated, thanks.
    -J
    import java.awt.BorderLayout;
    import java.awt.Cursor;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class BusyFrameTest implements ActionListener
    private static Cursor busy = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
    private static Cursor done = Cursor.getDefaultCursor();
    JFrame frame;
    JButton[] buttons;
    public BusyFrameTest (String title)
    frame = new JFrame (title);
    buttons = new JButton[5];
    buttons[0] = new JButton ("BUSY");
    buttons[1] = new JButton ("DONE");
    buttons[2] = new JButton ("SLEEP");
    buttons[3] = new JButton ("INVOKE LATER");
    buttons[4] = new JButton ("DELAY");
    JPanel buttonPanel = new JPanel();
    for (int i = 0; i < buttons.length; i++)
    buttonPanel.add (buttons);
    frame.getContentPane().add (buttonPanel);
    frame.pack();
    frame.setVisible (true);
    public void addListeners (ActionListener listener)
    for (int i = 0; i < buttons.length; i++)
    buttons[i].addActionListener (listener);
    public void actionPerformed (ActionEvent e)
    System.out.print (frame.getTitle() + ": " + e.getActionCommand());
    if (e.getActionCommand().equals ("BUSY"))
    frame.setCursor (busy);
    else if (e.getActionCommand().equals ("DONE"))
    frame.setCursor (done);
    else if (e.getActionCommand().equals ("SLEEP"))
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    else if (e.getActionCommand().equals ("INVOKE LATER"))
    frame.setCursor (busy);
    SwingUtilities.invokeLater (thread);
    else if (e.getActionCommand().equals ("DELAY"))
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    System.out.println();
    Runnable thread = new Runnable()
    public void run()
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.println (" finished");
    public static void main (String[] args)
    BusyFrameTest f1 = new BusyFrameTest ("F1");
    f1.addListeners (f1);
    BusyFrameTest f2 = new BusyFrameTest ("F2");
    BusyFrameTest f3 = new BusyFrameTest ("F3");
    f2.addListeners (f3); // 2 listens to 3
    f3.addListeners (f2); // 3 listens to 2

    I've had the same problems with cursors and repaints in a swing application, and I was thinking of if I could use invokeLater, but I never got that far with it.
    I still believe you would need a thread for the time consuming task, and that invokeLater is something you only need to use in a thread different from the event thread.

  • Problem with installing and running some applications or drivers

    When installing and installing some items, towards the end of the installation I get this message:
    /System/Library/Extensions/comcy_driver_USBDevice.kext
    *was installed improperly and cannot be used. Please try reinstalling it or contact product's vendor for update*
    The end result is that some things do not seem to work properly, such as my HP printer. Would anybody have any ideas on how to fix this problem?

    Thank you for your response. Originally, I had a problem with Airport and ended up reinstalling Snow Leopard. Since then, when downloading upgrades etc, such as HP printer drivers, iTunes etc., towards the end of the download when its running the script, I get this message: /System/Library/Extensions/comcy_driver_USBDevice.kext
    +was installed improperly and cannot be used. Please try reinstalling it or contact product's vendor for update+
    Sometimes, the download hangs and is unable to complete. The main problem I've encountered so far with an application is when I use the printer to scan an image via Preview, it's blank: there's nothing there.

  • Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated by itself and now outlook and address book have each over 340,000. What should I do?

    Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated entries and have now 340,000. I reinstalled microsoft office and, thus, outlook, and reinstalled mac OS X system and applications. While I managed to delete outlook contacts so that I can re-sync with my blackberry, the contacts at Mac Address Book were not deleted and still have over 340,000 entries. I do not mind deleting all contacts since I have back up, but I have not been able to delete them. Also, when I go at Address Book and try to delete or merge duplicated entries, the system takes forever and never ends because of such large amount of entries. Worse, when I do so I run out of RAM memory.
    My Macbook pro is just 2 months old.
    What should I do? Is there a way to delete my Mac Address Book without having the problem above?
    Many thanks
    Regis

    zlatan24 wrote:
    For solving out troubles connected with corrupted or lost address book you may use address book recovery. It owns various features such as restoring wab files, it working under any Windows OS. The utility has modern and easy to use interface due to almost every experienced users.
    If it is a windows problem it's not going to run on the OP's MacBook Pro

  • Problems with Safari and Firefox (HTTP?)

    Problems with Safari and Firefox (HTTP?)
    On a laptop G4, 10.5.8 and Safari 5.02 I experience the following:
    On the account of my oldest daughter everything works fine, i.e. wireless internet works and no problems with mail or safari.
    On the same laptop, on the account of my other daughter, the wireless is OK, she can mail etc. But safari nor firefox works. It says: can’t find server (whatever site) and in the activity window it looks if safari tries to open files (in the safari preferences-folder) in stead of http. Same applies to Firefox, so maybe it has more to do with HTTP in general?
    What goes wrong? What to do? I tried the following on the host terminal (tips from Apple)
    defaults write com.apple.safari WebKitDNSPrefetchingEnabled -boolean false
    and
    defaults delete com.apple.safari WebKitDNSPrefetchingEnabled
    but that did not help,
    Nanne

    I'm still wondering why it happens now at this moment in time...
    PC does seem to be a bit odd & inconsistent, the few times I've tested with it, at least so far as we content filtering goes; and if I remember rightly, you're not the first to report previously ok settings suddenly preventing some or all internet until pc is switched off altogether.
    It may work when re-enabled

  • Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/Users/scottmcdonald/Desktop/Screen Shot 2012-03-14 at 9.39.52 PM.png

    Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/

    Have you moved Pages from its installed location? Or just dragged a copy to your current system?
    It can't find some of its resources apparently.
    Peter

  • Problem with DMGs and error: "No Mountable File Systems"

    Problem with DMGs and error: "No Mountable File Systems"
    The files are not corrupt. The problem is occurring with all DMGs that are apparently formatted in MS-DOS FAT16. No the file will not mount with Disk utility or any other disk mounter programs I have found.
    This is now the second time this occurred and now effects my MBP and my iMac. First time i spent days with Apple support and the only solution was ultimately back up the data, reformat the HD, start over from scratch and reload everything. That lasted about a month before the problem resurfaced and is now an issue on both iMac and MBP.
    I tried to identify all the programs I installed immediately before the error, as I am convinced it is the result of a software conflict.
    Recent programs includes:
    1) upgrading from Parallels 5.5 to 6.0 on both machines.
    2) using an HP secure II usb drive and setting up a secure disk.
    3) installing new itunes 10
    4) new update to Flip For Mac.
    The files affected are downloaded dmgs, including personal brain and google earth, both which are formatted in FAT16.
    Any help or thoughts? Apple has now spent hours trying and they say i now have to reformat and wipe and start over. That is unacceptable and based on pasted experience the problem is likely to repeat itself. having to wipe and rebuild a HD ever month is not an solution. i need to fid the root problem.
    In the meantime, anyone got a real solution on how to extract the data for a DMG using a different method?
    Message was edited by: remaia

    Where you able to find the solution, i am having the same problem, all was fine till i install some programs only same one i saw did we both did was flip4mac i uninstalled it but the problem is still there, i also restored and erased the hardrive but im not up to doing that all over again. If you found anything out let me know i would greatly appreciate it

Maybe you are looking for