Easy syntax problem (I think.. )

["print" + currentWork + "_mc"].x = 0;
This line of code aint working.... Can someone tell me why =)

i noticed you did ".x" which makes me assume its as3? if so
use getChildByName("print"+currentWork+"_mc").x = 0
if not as3 then
use _x instead of x
or try looking up what "eval" does. hope that points you in
the right direction

Similar Messages

  • Some syntax problems (I guess)

    Hi, I'm having problem with the first constructor in this simplified example code... I want to create a "default" Comparator. I'm not quite sure how to do this.
    public class MyClass<E> {
        private Comparator<E> comp;
        public MyClass() {
            MyClass(new ComparableComparatorBridge());
        public Myclass(Comparator<E> comp) {
            this.comp = comp;
        private class ComparableComparatorBridge<E extends Comparable> implements Comparator<E> {
            public int compare(E o1, E o2) {
                return ((Comparable)o1).compareTo(o2);
    }

    Event if you fix the syntax problems, following the advice of the other posters, you'll have a semantic problem:
    MyClass<E> is parameterized with an unbounded type parameter.
    You cannot assume that E implements Comparable<E>.
    What you'd really need is a parameterizd constructor like this (won't compile):public <C extends E & Comparable<E>> MyClass() {
    this(new ComparableComparatorBridge<C>());
    }Unfortunately, this isn't valid Java. I see two possibilities:
    1. Derive from MyClass and introduce the additional bound on the type parameter of the subclass. Then you can create a default-constructor using the ComparableComparatorBridge in that subclass.
    2. Add a static factory function to MyClass, like this:
    public class MyClass<E> {
        private final Comparator<E> comp;
        public MyClass(Comparator<E> comp) {
            this.comp = comp;
        public static <E extends Comparable<E>> MyClass<E> defaultComparable() {
            return new MyClass<E>(new ComparableComparatorBridge<E>());
        private static class ComparableComparatorBridge<E extends Comparable<E>> implements Comparator<E> {
            public int compare(E o1, E o2) {
                return o1.compareTo(o2);
    }

  • I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware software worked more than 3 times did not fix

    dears,
    I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware I do resoftware more than 3 times did not fix.
    Network also always missing.
    I am living in KS Wichita. I hope you help me pleas.
    Regards.

    iPhone warranty is not international. You will have to return your
    iPhone to Saudi Arabia for repair/replacement. Either take it back
    yourself or send to friend/relative for them to take to Apple. Apple
    will not accept international shipments for repair nor will Apple
    ship repaired/replaced iPhones out of the country where the repair
    was done.

  • I have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!

    i have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!.
    one more question when i phone5 update with iOS 8.1.2 this iOS supported iphone5???

    Hi Ios 8.1.2 Should work on iPhone 4s / 5 You may have a bug Backup to  cloud over WiFi Then Restore back to Factory  Settings This will make iPhone as new. Use same Apple ID & you will get your Apps & Data back Do Restore over your WiFi. Cheers Brian

  • I am having the same problem I think.  With mobileme you simply copy documents to the idisk folder and then synch.  I cannot seem to sink that folder anymore.  Any idea as to how I can simply copy folders to icloud and then access the MS Word and PDF file

    I am having the same problem I think.  With mobileme you simply copy documents to the idisk folder and then synch.  I cannot seem to sink that folder anymore.  Any idea as to how I can simply copy folders to icloud and then access the MS Word and PDF files on my iphone?

    Apple never bopthered to explain that this would happen
    Your iDisk is still accessible after moving to iCloud in exactly the same way as before. Nothing is deleted until June 30th 2012.
    , so I could easily have lost ALL of the files I kept on iDisk.
    No, you couldn't. Firstly, nothing was deleted from your iDisk. Secondly, any files stored on your iDisk should never be your only copy. Even if your iDisk spontaneously combusted, you should keep local backups elsewhere.
    Does Apple WANT people to move their storage elsewhere and stop paying Apple for it?
    Yes. Apple doesn't provide such a service anymore, nor are you paying them for it.
    Apple has made no effort to suggest remedies for the problem it has given iDisk users
    They've provided instructions on how to download your files from your iDisk. What you do with them after that is your choice.

  • Dreamweaver silently detects syntax problem

    I have a .cfm file which I've been maintaining for a few years. Recently while editing the file in DW6, DW began to fail to recognize that the file is a Cold Fusion file.  Common keyboard shortcuts, both general and CF-specific just won't function.  Menu items under "Insert...ColdFusion Objects" are all disabled.
    After 90 minutes of progressively removing a few lines of code, saving and closing, then reopening the file, I tracked the problem down to the presence of 1 line of ColdFusion code.
    I happened to see at the bottom of the edit window (in the part of the status bar which shows CF code nesting) that <cfinvoke> was listed, where there was none in the file I was having trouble with.  It turns out the line of "bad" code was a <cfinclude>, and the file it referenced had a <cfinvoke> without a closing </cfinvoke>
    The reason for this long post under Dreamweaver, is that DW was clearly detecting a syntax problem, but instead of identifying the problem, it just stopped functioning normally, and acted in a truely weird way.
    I do NOT have "Enable Related Files" active.  For DW to wanter out into other files and gag on a syntax error, then not to report the problem, was totally unexpected.
    I consider the primary "bug" to be in failing to report the syntax error.  Secondarily, syntax checking in related files should probably be controlled by the "related files" preference option.
    This is DW CS6, v 12.1, build 5949.

    Did you report this to Adobe?
    Bug Report & Feature Request Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Nancy O.

  • Syntax problem After the Upgrade to SCM 7.0

    We are facing one problem during the upgrade process in the sandbox environment.
    After the upgrade we have completed the SPAU corrections ,while doing the SPAU corrections we found that one function module is not in active mode. We have checked the syntax,problem is there. we have tried to retrieve to the older version. But there are some notes were implemented during the 4.1 version. Those notes are now appearing in the SPAU with question mark.
    We have reverted all the notes but still the code is having syntax problem and the code is in the 4.1 version only.
    Please tell me how to solve it...
    Moderator message - Welcome to SCN.
    But
    Moderator message - Cross post locked(please pick one forum or the other)
    Edited by: Rob Burbank on Nov 3, 2009 12:03 PM

    Hello Bouchards,
    Thank you for the question.  You can find Frequent Locations under Settings > Privacy > Location Services > System Services:
    You can find more information at the following link:
    iOS 7: Understanding Location Services
    http://support.apple.com/kb/HT5594
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Some easy problem i think

    my SAX parser needs to read/write a file, therefore i set this permissions:
    grant{
       permission java.util.PropertyPermission "javax.xml.parsers.SAXParserFactory", "write";
       permission java.io.FilePermission "c:\\-", "read, write, delete";
       permission java.net.SocketPermission "*:1-", "connect,accept,resolve";
    };i just want the whole thing to run first then i will narrow down the permissions, however when i execute this code:
    parser.parse("Users.xml", this);i get this Exception:
    java.net.UnknownHostException: Users.xml
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.NetworkClient.openServer(Unknown Source)
         at sun.net.ftp.FtpClient.openServer(Unknown Source)
         at sun.net.ftp.FtpClient.<init>(Unknown Source)
         at sun.net.www.protocol.ftp.FtpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)I didn't get that exception without the permissions (without policies etc). And i can't really find out what's going on, but i thought it might be somewhat obvious for some of you experts out there. Well i hope so, because i really need to get through this,
    Greetz and thanx in advance,
    Nick

    Sorry for the noise, i was really stupid
    parser.parse("Users.xml", this);
    the string was interpreted as a url
    sorry again

  • Jsp forward problem, I think.....

    I have a default.htm page that takes in a feild, EMP_NUM. Once the user
              hits the Submit button, I run a select statement(select.jsp) to see if that
              number exists. If it does then I forward the contents to correct.jsp, if the
              number doesn't exist then I forward to failed.jsp.
              Today is Tuesday, and last Friday I was working on this and everything
              worked fine, in fact perfect. I came in this morning to do some more
              testing, specifically catching errors in my try and catch, example - to make
              sure they enter in a number, and after I type in a number and hit the submit
              button, it trys to go to the next page, but displays nothing, the page is
              blank. Where has before, when everything was working fine on Friday, my
              correct.jsp page or my failed.jsp page would be displayed.
              From Friday to Tuesday I had not made any changes to my files. The only
              thing different, that I can think of, would be that on Friday I would have
              stoppped weblogic and this morning I started weblogic again. This is why I
              think this is a weblogic issue or syntax on my part. I have tried to restart
              my computer, restart weblogic, and I even deleted the .java files that
              weblogic creates and places in the weblogic/myserver/classfiles/jsp_servlets
              folder.
              Below is my source code.
              Please help!
              Thanks, jl.
              <% try {
              <%@ include file = "db_conn.jsp"%>
              <%
              // A Statement object is what sends your SQL statement to the db
              Statement stmt = conn.createStatement();
              // Retrieve the user id number from the previous form.
              int EMP_NUM = Integer.parseInt(request.getParameter("EMP_NUM"));
              //SQL prepared statement
              String selectEMP_NUM = "SELECT NAME, COMPANY_KEY FROM WTS_PROFILE WHERE
              EMP_NUM=?";
              PreparedStatement psEMP_NUM = conn.prepareStatement(selectEMP_NUM);
              psEMP_NUM.setInt(1, EMP_NUM);
              ResultSet rsEMP_NUM = psEMP_NUM.executeQuery();
              String NAME = "";
              int CompanyKey = 0;
              while (rsEMP_NUM.next()) {
              NAME = rsEMP_NUM.getString("NAME");
              CompanyKey = rsEMP_NUM.getInt("COMPANY_KEY");
              }// end of while
              psEMP_NUM.clearParameters();
              psEMP_NUM.close();
              conn.close();
              String sEMP_NUM = Integer.toString(EMP_NUM);
              String sCompanyKey = Integer.toString(CompanyKey);
              if (NAME.equals("")) {
              request.setAttribute("EMP_NUM", sEMP_NUM);%>
              <jsp:forward page="failed.jsp">
              <% }// end of if
              else {
              request.setAttribute("NAME", NAME);
              request.setAttribute("EMP_NUM", sEMP_NUM);
              request.setAttribute("CompanyKey", sCompanyKey);%>
              <jsp:forward page="creditcard.jsp">
              <% }// end of else
              }// end of try1
              catch(Exception e) {
              <% if(e.toString().equals("java.lang.NumberFormatException: ")) { %>
              <font face="Arial" size="2" color="red"><center><strong>Please enter in a
              EMPLOYEE ID NUMBER.<br><br></strong></font></CENTER>
              <%}// end of if
              %>
              </TD></TR></TABLE></DIV>
              <font color="red">"<%=e.toString()%>"</font>
              <%
              }// end of catch1
              %>
              

              Sounds like you have some debugging to do. If you didn't reinstall WLS and it worked fine before,
              then I doubt it is a WLS problem.
              Is your page really blank? Try show source in your browser? I think you have some mismatched
              <table> </table>. Try it in both IE and Netscape - one of them forgives you for mismatched table
              tags.
              Add some System.out.println() in your code to see what is being executed.
              "james lorenzen" <[email protected]> wrote:
              > I have a default.htm page that takes in a feild, EMP_NUM. Once the user
              >hits the Submit button, I run a select statement(select.jsp) to see if that
              >number exists. If it does then I forward the contents to correct.jsp, if the
              >number doesn't exist then I forward to failed.jsp.
              > Today is Tuesday, and last Friday I was working on this and everything
              >worked fine, in fact perfect. I came in this morning to do some more
              >testing, specifically catching errors in my try and catch, example - to make
              >sure they enter in a number, and after I type in a number and hit the submit
              >button, it trys to go to the next page, but displays nothing, the page is
              >blank. Where has before, when everything was working fine on Friday, my
              >correct.jsp page or my failed.jsp page would be displayed.
              > From Friday to Tuesday I had not made any changes to my files. The only
              >thing different, that I can think of, would be that on Friday I would have
              >stoppped weblogic and this morning I started weblogic again. This is why I
              >think this is a weblogic issue or syntax on my part. I have tried to restart
              >my computer, restart weblogic, and I even deleted the .java files that
              >weblogic creates and places in the weblogic/myserver/classfiles/jsp_servlets
              >folder.
              >
              >Below is my source code.
              >Please help!
              >Thanks, jl.
              >
              ><% try {
              > <%@ include file = "db_conn.jsp"%>
              ><%
              > // A Statement object is what sends your SQL statement to the db
              > Statement stmt = conn.createStatement();
              >
              > // Retrieve the user id number from the previous form.
              > int EMP_NUM = Integer.parseInt(request.getParameter("EMP_NUM"));
              >
              > //SQL prepared statement
              > String selectEMP_NUM = "SELECT NAME, COMPANY_KEY FROM WTS_PROFILE WHERE
              >EMP_NUM=?";
              > PreparedStatement psEMP_NUM = conn.prepareStatement(selectEMP_NUM);
              > psEMP_NUM.setInt(1, EMP_NUM);
              >
              > ResultSet rsEMP_NUM = psEMP_NUM.executeQuery();
              >
              > String NAME = "";
              > int CompanyKey = 0;
              > while (rsEMP_NUM.next()) {
              > NAME = rsEMP_NUM.getString("NAME");
              > CompanyKey = rsEMP_NUM.getInt("COMPANY_KEY");
              > }// end of while
              >
              > psEMP_NUM.clearParameters();
              > psEMP_NUM.close();
              > conn.close();
              >
              > String sEMP_NUM = Integer.toString(EMP_NUM);
              > String sCompanyKey = Integer.toString(CompanyKey);
              > if (NAME.equals("")) {
              > request.setAttribute("EMP_NUM", sEMP_NUM);%>
              > <jsp:forward page="failed.jsp">
              ><% }// end of if
              > else {
              > request.setAttribute("NAME", NAME);
              > request.setAttribute("EMP_NUM", sEMP_NUM);
              > request.setAttribute("CompanyKey", sCompanyKey);%>
              > <jsp:forward page="creditcard.jsp">
              ><% }// end of else
              >}// end of try1
              >catch(Exception e) {
              ><% if(e.toString().equals("java.lang.NumberFormatException: ")) { %>
              > <font face="Arial" size="2" color="red"><center><strong>Please enter in a
              >EMPLOYEE ID NUMBER.<br><br></strong></font></CENTER>
              ><%}// end of if
              >%>
              > </TD></TR></TABLE></DIV>
              > <font color="red">"<%=e.toString()%>"</font>
              ><%
              >}// end of catch1
              >%>
              >
              >
              

  • Probably a simple answer: easy div problem

    Hello,
    I have a very easy problem but can't find the answer.  3 divs: 1 "wrapper" and 2 inside it (one left column, one right).  I want to get the CSS settings so that the left and right column are both the same length.  Right now they are on auto length and the left column is longer.  I tried to "fill out" the wrapper with the right column by setting the right column to 100% length, but now I realize the "wrapper" div is being shrink-wrapped around the shorter right column and is not stretching it.  I just want both columns to be as long as the (longer) left column.
    Thanks!

    First of all height: 100% doesn't work for divs usually. The height of the browswer window is very hard to fiigure out.
    Second: http://matthewjamestaylor.com/blog/equal-height-columns-2-column.htm
    SOmehow that layout works, and I don't qutie know how although it is a very simple layout.
    Lastly,  I'll bust out the unorthodox, loathed answer that actually is fine unless you want to worry about various screen types or browsing devices: a table.
    First, I will say that it is great that there is new CSS that allows divs to display as tables as Murray, I think, is saying. But with 10% of peple still using IE 6 and 10% using IE 7 (crazy, eh?), I don't think you can do away with support from IE 7 yet, even though we're just about up to 10 now.
    Tables are the intuitive way to solve this if you are not concerned with separating content and organization, which good modern designers are usually concerned with:
    <table class="content">
    <tr>
    <td>first column</td>
    <td>second column</td>
    </tr>
    </table>
    No fuss no muss. But if we can figure out how the two even length columns layout works above, I'd say that's the smart, modern way to deal with this.

  • Syntax problem in insertion sort

    What I'm trying to do is use different types of algorithims, to sort the text file.
    I'm using bubble, selection, and insertion sorts, which are being implemented with an arraylist. The bubble, and selection, comes out fine, but having problems getting the syntax right for the insertion sort.
    The error comes in the inner for loop when I try to compare tmp and data.get(j-1) I get this error "The operator && is undefined for the argument type(s) boolean, int. Obviously I screwed this part of the coding, and I need help trying to figure out how to correct it. Thanks for any help.
    public static void insertionSort (List data)
                 Comparable tmp;
              int i, j;
                 for(i = 1; i < data.size(); i++)
                      tmp =  (Comparable)data.get(i);
                       for(j = i; j > 0 && tmp.compareTo(data.get(j - 1)) ; j--) // <--- right here
                            data.set(j, data.get(j - 1))  ;
                       data.set(j, tmp)  ;
    }

    You need to check whether the compareTo returns less
    than zero or greater than zero (depending on your
    sort order).
    (j > 0) && (tmp.compareTo(data.get(j - 1)) >
    0)I added parentheses around the two boolean
    expressions. Probably not necessary, but makes it
    easier to read--and you don't have to remember the
    operator precedence rules.
    You might want < 0 at the end--as I said, depends on
    your sort order.That fixed it thanks alot, oh and it was in decending order, so I just had to switch the ending part around.

  • HT204053 I want to play newly purchased music but cant, i get the message "You can use iTunes Match on this computer with just one Apple ID every 90 days. (mobileme family pack is the problem i think)

    I purchase a new album on my phone but then cannot download it to my laptop -  I get the message:
    "You can use iTunes Match on this computer with just one Apple ID every 90 days. All I can think is that the problem stems from purchasing a mobileme family & some of the music being my daughters. (she is 9 & I need to be ble to listen to more than Katy Perry & Justin Bieber) Please help! :-(

    Welcome to the Apple Community.
    Youll get that message when you change the iTunes account you are logged into, you can't keep changing it.

  • Safari crashes my macbook pro, it "restarts because of a problem," I think it is a kernel panic. How do I manage this?

    I have a late 2011 15", 2.3 GHZ intel core i7 macbook pro with 16GB of ram. I recently partitioned the computer using bootcamp and before doing this had the computer upgraded to Mavericks 10.9.5 . In order to partition my computer we had to restore it to factory settings so there is almost nothing on here.. my safari and google chrome were crashing before all these changes and my computer was sometimes "restarting because of a problem". I think most times that it did this I had safari or chrome up and running or at least open in the background. I also recently had someone test my hard drive and nothing is wrong with that so I believe this is some sort of software problem.
    Now my google chrome works as long as I am not signed into my account, but safari is un-usable. It crashes and then makes my computer "restart because of a problem." the computer seems to be fine besides these web browsing issues.
    I have disabled my extensions for safari but none were listed to disable anyways. I have the lengthy crash report from a recent crash and will post if needed.
    Thank you!

    Thank you for your response!! I will definitely try that out. Here is the error:
    Anonymous UUID: 6FD5C430-62AC-79AC-471A-E49A0ED4F778
    Sat Dec 20 21:41:51 2014
    panic(cpu 0 caller 0xffffff80096c63e7): "pmap_page_protect() " "pmap=0xffffff80358564b8 pn=0x600b2 vaddr=0x1763f1000\n"@/SourceCache/xnu/xnu-2422.115.4/osfmk/i386/pmap_x86_common .c:1336
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81f5853a50 : 0xffffff8009622f79
    0xffffff81f5853ad0 : 0xffffff80096c63e7
    0xffffff81f5853b90 : 0xffffff80096922f3
    0xffffff81f5853bf0 : 0xffffff8009692626
    0xffffff81f5853c60 : 0xffffff800968525e
    0xffffff81f5853d50 : 0xffffff8009687150
    0xffffff81f5853de0 : 0xffffff800963cd5e
    0xffffff81f5853e30 : 0xffffff80099d3447
    0xffffff81f5853e60 : 0xffffff80099d3240
    0xffffff81f5853ea0 : 0xffffff80099d2867
    0xffffff81f5853f00 : 0xffffff80099d3569
    0xffffff81f5853f50 : 0xffffff8009a40c63
    0xffffff81f5853fb0 : 0xffffff80096f4176
    BSD process name corresponding to current thread: coreservicesd
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    Kernel UUID: 9477416E-7BCA-3679-AF97-E1EAAD3DD5A0
    Kernel slide: 0x0000000009400000
    Kernel text base: 0xffffff8009600000
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 12693878949245
    last loaded kext at 10026402479079: com.apple.filesystems.smbfs     2.0.3 (addr 0xffffff7f8bf72000, size 335872)
    last unloaded kext at 399101944447: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f8bf72000, size 57344)
    loaded kexts:
    com.apple.filesystems.smbfs            2.0.3
    com.apple.driver.AudioAUUC           1.60
    com.apple.filesystems.ntfs    3.11
    com.apple.driver.AppleHWSensor   1.9.5d0
    com.apple.driver.AGPM        100.14.34
    com.apple.filesystems.autofs            3.0
    com.apple.iokit.IOBluetoothSerialManager            4.2.7f3
    com.apple.driver.AppleMikeyHIDDriver     124
    com.apple.driver.AppleMikeyDriver           2.6.3f4
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.iokit.IOUserEthernet       1.0.0d1
    com.apple.driver.AppleIntelHD3000Graphics       8.2.4
    com.apple.kext.AMDFramebuffer    1.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport           4.2.7f3
    com.apple.driver.AppleSMCLMU     2.0.4d1
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.driver.AppleHWAccess   1
    com.apple.driver.SMCMotionSensor           3.0.4d1
    com.apple.driver.AppleMuxControl            3.6.22
    com.apple.driver.AppleLPC  1.7.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB          8.2.4
    com.apple.driver.AppleMCCSControl          1.2.5
    com.apple.driver.AppleSMCPDRC   1.0.0
    com.apple.AMDRadeonX3000         1.2.4
    com.apple.kext.AMD6000Controller           1.2.4
    com.apple.driver.AppleThunderboltIP       1.1.2
    com.apple.driver.AppleUSBTCButtons        240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController            325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless      1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN           1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.BootCache            35
    com.apple.iokit.SCSITaskUserClient            3.6.7
    com.apple.driver.XsanFilter 404
    com.apple.driver.AppleUSBHub      683.4.0
    com.apple.iokit.IOAHCIBlockStorage           2.6.0
    com.apple.driver.AppleSDXC           1.5.2
    com.apple.iokit.AppleBCM5701Ethernet   3.8.1b2
    com.apple.driver.AppleFWOHCI      5.0.2
    com.apple.driver.AirPort.Brcm4331           700.20.22
    com.apple.driver.AppleAHCIPort     3.0.5
    com.apple.driver.AppleUSBEHCI     660.4.0
    com.apple.driver.AppleSmartBatteryManager      161.0.0
    com.apple.driver.AppleRTC  2.0
    com.apple.driver.AppleACPIButtons           2.0
    com.apple.driver.AppleHPET           1.8
    com.apple.driver.AppleSMBIOS       2.1
    com.apple.driver.AppleACPIEC        2.0
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          217.92.1
    com.apple.nke.applicationfirewall   153
    com.apple.security.quarantine        3
    com.apple.driver.AppleIntelCPUPowerManagement        217.92.1
    com.apple.kext.triggers         1.0
    com.apple.iokit.IOSerialFamily         10.0.7
    com.apple.driver.DspFuncLib          2.6.3f4
    com.apple.vecLib.kext           1.0.0
    com.apple.iokit.IOAudioFamily         1.9.7fc2
    com.apple.kext.OSvKernDSPLib      1.14
    com.apple.iokit.IOFireWireIP           2.2.6
    com.apple.iokit.IOSurface     91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.2.7f3
    com.apple.iokit.IOBluetoothFamily  4.2.7f3
    com.apple.driver.AppleBacklightExpert     1.0.4
    com.apple.iokit.IONDRVSupport      2.4.1
    com.apple.driver.AppleGraphicsControl     3.6.22
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.AppleSMBusPCI   1.0.12d1
    com.apple.driver.AppleSMBusController    1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.iokit.IOAcceleratorFamily           98.23
    com.apple.kext.AMDSupport            1.2.4
    com.apple.AppleGraphicsDeviceControl     3.6.22
    com.apple.driver.AppleHDAController        2.6.3f4
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOHDAFamily           2.6.3f4
    com.apple.driver.AppleThunderboltDPInAdapter            3.1.7
    com.apple.driver.AppleThunderboltDPOutAdapter         3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.4.5
    com.apple.driver.AppleUSBMultitouch       240.10
    com.apple.iokit.IOUSBHIDDriver     660.4.0
    com.apple.driver.AppleUSBMergeNub       650.4.0
    com.apple.driver.AppleUSBComposite        656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        3.6.7
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily         3.3.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.6.7
    com.apple.iokit.IOUSBUserClient     660.4.2
    com.apple.iokit.IOEthernetAVBController  1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family       640.36
    com.apple.iokit.IONetworkingFamily           3.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBFamily            686.4.1
    com.apple.driver.AppleEFINVRAM  2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            2.0.0
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.AppleKeyStore     2
    com.apple.driver.DiskImages           371.1
    com.apple.iokit.IOStorageFamily      1.9
    com.apple.iokit.IOReportFamily       23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform         2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto     1.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B1E, 4 processors, Intel Core i7, 2.3 GHz, 16 GB, SMC 1.69f1
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x85F7, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x85F7, 0x483634314755363746393333334700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.7f3 14616, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

  • MacBook Pro 15" video card problems (i think)

    Can anyone tell me if this is indeed a video card problem?
    MBP 15" info (Dec. 2011)
    Processor 2.4 GHz Intel Core i7
    Memory 4GB 1333 MHz DDR3
    Graphics Intel HD Graphics 3000 384 MB
    OS X Lion 10.7.5
    This is what happened:
    I use my mbp heavily because I edit a lot of videos with Premiere. I also use lightroom / photoshop alot + games. I also installed Parallels desktop late 2013. I don't know if that is relevant but anyway. Everything started late 2013 (a little after installing parallels actually) when there are moments when the audio wouldn't work and I couldn't adjust the volume. It would come back anyway so i didn't mind it. Then the fans were on high speed for little activity. After that the keyboard backlight couldn't be adjusted and wouldnt work. I ignored all of these cuz i wasn't troubling me at the time. In January i left for france to study - I use bike all the time and once stupidly placed my laptop on the basket going to school (rough roads). I had a class with html so I had to open Parallels, my teacher pointed out the fans and how loud they were. That day, parallels desktop said i must upgrade to windows 9 or it will restart every 2hours. I didn't of course. I didn't have time to.
    After that (a few days later i think) my laptop would randomly turn into a black screen but it's still on (the power LED is on) I tried turning it off by pressing down the power button and then turning it back on. It worked the first time. During the first week, the frequency of it happening grew. It would do it almost 3 times a day. during that same week I tried to do an SMC reset. It fixed the keyboard light, fans and audio but not the black screen thing. It just keeps on happening around 1-3 times a day. It only happens when I'm using it btw, never when I just leave it. ALSO, after a few days, it would take longer hours to open my mbp again. I mean, the screen would turn black. i would turn it off, then on again. I will ONLY hear the hard drive moving but no startup sound and no grey screen and apple logo. nothing.
    The following weeks after that, I asked a friend to help me out. He suggested that I install gfxCardStatus because he said it might be my video card. He instructed that I keep it on intergrated only. So I installed that and did what he said I thought it worked for a while because the black screens stopped happening (even when gfx keeps on going back to dynamic) BUT NOW, MY LAPTOP WOULD FREEZE (not turn black). I'd shut it down using the power button but it still takes me hours to open it again. Sometimes, I'd wait for the battery to drain because it would startup when i charge it (sometimes)
    I tried doing AHT as well to confirm the video card problem, but the results are no problems found. I really don't want to replace my logicboard here in france. everything is more expensive here. ;__;
    Today I uninstalled parallels to see if that might have had anything to do with my problem now but i think that's just wishful thinking.
    Can somebody tell me if this is really about the video card? Thank you

    Your appointment at the genius Bar in an Apple Store (anywhere in the world) for an evaluation is FREE, in warranty or out. Those guys put their hands on these Macs all day every day, and they are especially good at Physical and Power problems.
    Ask them.

  • Query structure problem (i think)

    hi am trying to get selected strings out of a jlist
    and concanate them into a query i dont have any
    problems getting the strings out of the list and
    into the query ,i think that my problem lies within
    the structure of my query.i am trying to create a new
    user for a database and set their privleges when i run
    the program and create a new user every things fine as
    long as the only value that i select from the
    privilegs list is "ALL PRIVILEGES" or "CREATE" any ther values
    and i get a connection failure to the MySQL server. could any one tell
    me where i am going wrong or knows the structure of another query
    that can do the same job???
    cheers gerry
    final String privilegetype[] = {"SELECT","INSERT","UPDATE","DELETE","CREATE"
    ,"DROP","ALL PRIVILEGES"};
    String databasename[] = {"garage","music store",};
    //the query where mk=the selected string from privilegetype,
    mkk=the selected string from databasename,
    name=new username,new String(pass)=the new user password
    s.executeUpdate ("GRANT "+mk+" ON "+mkk+" TO "+name+" @"+host+"
    IDENTIFIED BY '"+new String(pass)+"' WITH GRANT OPTION");

    Output the actual query string and see if you can run it outside Java. If you cannot, then it's a database/SQL problem, not a Java problem. If you can, come back and post more details.

Maybe you are looking for

  • Object Types--Link to business object in SBWP

    Hi All, In SBWP, there is an option under path Document>Create Attachment>Link to business object, in this list there is no Purchase Order,Purchase Requisition, Maintenance work order. Need to know how to add these business objects to this list. Than

  • Can't find external HD to restore using TimeMachine

    Hi Folks, My computer was stolen but I had my computer backed up using Time Machine on two separate external HD's. When I got my new MacBook, I hooked first one, then the other to the MacBook to restore the data using Time Machine, but I couldn't fin

  • How to do Ad-hoc reports with SSRS 2012 (Report Builder 3.0) for the database SQL Server 2012

    <p>Hi,</p><p>Please could anybody help me how to do ad-hoc reports by using SSRS 2012.</p><p>I am able to create ad-hoc reports using Report Builder3.0 and SQL Server 2008 R2. </p><p>I have built the report Model in for the instance 2008 R2 </p><div

  • Exchange 2010 - WS-Management Service does not support

    Hi, We have a tool which was used for bulk Mailbox creation, Mailbox Movement etc. This we have used in Exchange 2007 also and was working fine. Now in Exchange 2010 we are facing some issues. Tool is written in VB. Exchange 2010 SP2 is running in al

  • Report generation on web

    Hi All. I am facing an issue ....  I want to generate reports on web for that i have maintained all the settings for web application designer .... .. but still its showing error when i click on "publish on web" button under Bex analyzer.... Any sugge