Finder methods that return collections (don't work)

Hi all, this looks like an internal error, but I though Id ask incase there is a way around it.
Im having some problems with entity java beans using jdeveloper and the internal j2ee server. The bean is deployed and runs, find by primary key and all other methods work except find by last name which returns a collection.
I have experimented with the code, and stepped through with the debugger. The debugger doesn't find any errors or throw any exceptions. The method which it calims causes the error ejb find by last name does not throw an error and exits normally.
Though experiments I have done I have found that the failure only occurs if the collection returned has elements. If and empty collection is returned then the error is not given. If null is returned then the same error is given with a null pointer exception at the start instead of class cast. I have tried serveral variations on this code and none seem to work. Im hoping this is a common bug and you can point me towards a solution.
I have browsed your forum and searched your site, as well as the web for information on this bug but have not found any information.
My OS is Linux Red Hat 8.0 and the version of JDeveloper is 9.0.2.8.2. I urgenly need assistance with this, it forms the basis for a final year degree project which needs to be submitted in 4 weeks.
-- Error output --
java.lang.ClassCastException: java.lang.Integer
     at com.evermind.server.rmi.RMIConnection.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMIConnection.java:1530)
     at com.evermind.server.rmi.RMIConnection.invokeMethod(RMIConnection.java:1453)
     at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:53)
     at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:22)
     at __Proxy0.findByLastName(Unknown Source)
     at SamplepodPackage.PatientClient.main(PatientClient.java:88)
-- output ends --
Thanks for your time
Glenn Jenkins
(Glamorgan University)

I think I've figured it out. I checked my keywords and some of the keywords I used were unintentionally under another keyword, so it appears that smart collections useingn using child keywords will always include the parent keyword, even if that keyword isn't listed in the Keyword panel. When I moved the wrong children outside the existing parent, the Smart Collection worked properly. Now I have to figure out how the keywords unintentionally became children to other keywords.
CPB
CPB
Craig P. Beyers
703-626-3848 (m)

Similar Messages

  • How to code a method that returns string for class object

    I have a class named Address.
    public class Addresss{   
    private String street;   
    private String city;            // instance variables  
    private String zipcode;}I have been asked to write a method that returns a string for Address object. I dont understand how to create address object.Can anyone pls help me understand.
    do I have to write (for creating object)
    Address addressObject  = new Address(); ( coding method that returns a string for address object) ---> I really dont understand this part.

    looks almost right. The problem is that your method name AddressBookEntry does not match the name of your class AddressBook and therefore is not a constructor.
    Furthermore, you probably need to make a distinction between a single entry into the address book which consists of a single name and a single address, (which is just what you have done) and an address book itself which is probably a list of AddressBookEntries
    So for your code I would change the class that you called "AddressBook" to "AddressBookEntry" and have a third class that represents the collection of AddressBookEntries.
    Now to be honest, I don't know why you keep the name split apart from the street address portion of the address. I would be more inclined to keep the name as a field of the address itself, but it's your code, you carve it up the way you like.

  • Web Service Method that returns an ArrayList

    Hi guys,
    I have to create a web service method that returns an ArrayList, but it's not working. My problem is:
    With the "@XmlSeeAlso" annotation, my client prints the result, but the ArryaList is not from java.util, it's from org.me.calculator so I can't use it.
    If I remove this annotation, I get no result, with this error message on Tomcat 6:
    [javax.xml.bind.JAXBException: class java.util.ArrayList nor any of its super class is known to this context.]
    I'm a newbie, and trying to understand web services (I read some posts here, but didn't get the point, from its answers), but this problem I just can't figure out how to solve....
    WEb Service
    package org.me.calculator;
    import java.io.Serializable;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    import java.util.*;
    import java.util.ArrayList;
    import javax.xml.bind.annotation.XmlSeeAlso;
    * @author eduardo.domanski
    @WebService()
    @XmlSeeAlso({java.util.ArrayList.class}) // With this, I can see the result on client, but, the ArrayList is an org.me.calculator.ArrayList class.... Strange...
    public class CalculatorWS {
        @WebMethod(operationName = "valores")
        public ArrayList valores(@WebParam(name = "a") int a,
                           @WebParam(name = "b") int b) {
            ArrayList teste = new ArrayList();
            ArrayList a1 = new ArrayList();
            a1.add(a);
            a1.add(b);
            ArrayList a2 = new ArrayList();
            a2.add(a+b);
            a2.add(a-b);
            teste.add(a1);
            teste.add(a2);
            return  teste; 
    }CLient
    package org.me.calculator.client;
    import java.io.*;
    import java.net.*;
    import java.util.ArrayList;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ClientServlet extends HttpServlet {
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet ClientServlet</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet ClientServlet at " + request.getContextPath() + "</h1>");
            try { // Call Web Service Operation
                org.me.calculator.CalculatorWSService service = new org.me.calculator.CalculatorWSService();
                org.me.calculator.CalculatorWS port = service.getCalculatorWSPort();
                // TODO initialize WS operation arguments here
                int i = 8;
                int j = -6;
                // TODO process result here
                ArrayList result = (ArrayList) port.valores(i, j);
                out.println("Result = " + result);
            } catch (Exception ex) {
                System.out.println(ex);
            // TODO handle custom exceptions here
            out.println("</body>");
            out.println("</html>");
            out.close();
        protected void doGet(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            processRequest(request, response);
        protected void doPost(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            processRequest(request, response);
    }THank you all,
    Eduardo
    Edited by: EduardoDomanski on Apr 23, 2008 4:40 AM

    I forgot to say that, when I try to return an ArrayList of an object, for example, ClassA, which is on the package org.me.classes, on my Server App, the ArrayList is returned, but the objects are from type org.me.calculator.ClassA. It should be from org.me.classes.ClassA, right?
    This package also exists on my client App, to use the object, but as the returned type is from another package, I can't even cast it. I tried some annotations @Xml... but it failed.
    Packages
    ServerApp
    org.me.calculator
    CalcWS.java
    org.me.classes
    ClassA.java
    Client App
    org.me.classes
    ClassA.java
    The return from my method should be an ArrayList of org.me.classes.ClassA, but when I print it, on client, it's from org.me.calculator.ClassA.
    Does anybody knows, or had the same problem?
    Thanks,
    Eduardo

  • Calling a method that returns values in a map - using JSTL

    Hi I have a method within an object that returns a List for a particular category
    public List<String> getFieldsInCategory(String categoryName){
        return _categoryFieldsMap.get(categoryName); //This is a map that returns a list                                                             
      }Trying to call the above function in jsp, the object is available as "document",
    how do i pass a key to the above function to return a List.
       <c:forEach items="${document.fieldsInCategory('ABSTRACT')}" var="temp">How do i get the list by passing a string key to my method,
    please let me know how to go about this.
    Thanks

    JSTL can not directly call methods that take parameters.
    All it can do is access javabean properties - ie via the revealed get/set methods.
    You can fudge it by having a seperate variable to set:
    Map  _categoryFieldsMap;
    String category = null;
    public void setCategory(String category){
      this.category = category;
    public String getCategory(String category){
      return category;
    public List<String> getFieldsInCategory(){
        return _categoryFieldsMap.get(categoryName); //This is a map that returns a list                          
      }You would then do it like this in your JSP:
    <c:set target="document.category" value="ABSTRACT"/>
    <c:forEach items="${document.fieldsInCategory}" var="temp">
    ...The other alternative is to return the entire map to the page.
    EL accesses maps quite handily.
    so given a method that returns the map:
    public Map getCategoryFieldsMap(){
    return _categoryFieldsMap;
    then the expression: ${document.categoryFieldsMap.ABSTRACT} returns what you are after.
    Hope this helps,
    evnafets

  • HT201257 I just bought an imac in september 2012.  And i just find out that my microphone is not working.  So i did an apple hardware test and with no problems found?  I have sound but no one can hear me, not even the computer.  Should i bring it back to

    I just bought an imac in september 2012.  And i just find out that my microphone is not working.  So i did an apple hardware test and with no problems found?  I have sound but no one can hear me, not even the computer.  Should i bring it back to the store

    Before you go through that trouble open About this Mac > More Info... > System Report > Audio and see if the system actually knows it has a microphone.  Then you can look into Applications > Utilities >  Audio MIDI Setup and see if the microphone is there, select it and make sure the sliders are set to full. Then in System Preferences look for Sound > Input and make sure it shows up there and the sliders are at least half way up. If none of that works do a
    SMC RESET
    http://support.apple.com/kb/HT3964
    Shut down the computer.
    Unplug the computer's power cord and ALL peripherals.
    Wait 15 seconds.
    Attach the computers power cable.
    Wait another 5 seconds and press the power button to turn on the computer.
    It is the 5 second timing that initiates the reset.
    then go through the process of looking for the microphone again as the reset may reenable the mic.

  • Finder that returns Collection complains about more than one row

    Hi all,
    I have a finder method in my local home with this signature:
    public java.util.Collection findByManufacturer (String manufacturer) throws
    FinderException;
    and am getting this error:
    javax.ejb.FinderException: finder/ejbSelect 'findByManufacturer'has returned
    more than one value. We were expecting only ONE value. See EJB Spec
    10.5.6.1, 10.5.7.1
    from what i understand, shouldn't the finder allow multiple rows to be
    returned? i looked up the EJB spec and that portion seems to address
    single-object finders.
    system info is as follows:
    java weblogic.Admin VERSION
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    thanks,
    -saad

    yes, just to verify i just did a complete re-assembly ( compile beans ; jar
    ; weblogic.ejbc ; move to domain\config\applications\application ) and am
    still getting the same error as before.
    furthermore, i dont know about wl internals at all, but it seems that the
    container does recognize that this is a collection since the stacktrace
    reveals a call to
    weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.collectionFinder() ...
    the stack trace in question is pasted below. thanks for any help.
    -saad
    <Feb 19, 2002 9:49:14 PM CST> <Error> <HTTP>
    <[WebAppServletContext(595826,catal
    og,/catalog)] Root cause of ServletException
    javax.ejb.FinderException: finder/ejbSelect 'findByManufacturer'has returned
    mor
    e than one value. We were expecting only ONE value. See EJB Spec 10.5.6.1,
    10.
    5.7.1
    at
    com.metavonni.platinum.catalog.item.PhoneBean_g458gu__WebLogic_CMP_RD
    BMS.ejbFindByManufacturer(PhoneBean_g458gu__WebLogic_CMP_RDBMS.java:1297)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.collectionFinder(RDB
    MSPersistenceManager.java:274)
    at
    weblogic.ejb20.manager.BaseEntityManager.collectionFinder(BaseEntityM
    anager.java:669)
    at
    weblogic.ejb20.manager.BaseEntityManager.collectionFinder(BaseEntityM
    anager.java:642)
    at
    weblogic.ejb20.internal.EntityEJBLocalHome.finder(EntityEJBLocalHome.
    java:381)
    at
    com.metavonni.platinum.catalog.item.PhoneBean_g458gu_LocalHomeImpl.fi
    ndByManufacturer(PhoneBean_g458gu_LocalHomeImpl.java:184)
    at jsp_servlet.__x._jspService(__x.java:102)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    "Rajesh Mirchandani" <[email protected]> wrote in message
    news:[email protected]...
    This should work. Did you recompile your beans when you upgraded to SP2?
    Saad Rehmani wrote:
    Hi all,
    I have a finder method in my local home with this signature:
    public java.util.Collection findByManufacturer (String manufacturer)
    throws
    FinderException;
    and am getting this error:
    javax.ejb.FinderException: finder/ejbSelect 'findByManufacturer'hasreturned
    more than one value. We were expecting only ONE value. See EJB Spec
    10.5.6.1, 10.5.7.1
    from what i understand, shouldn't the finder allow multiple rows to be
    returned? i looked up the EJB spec and that portion seems to address
    single-object finders.
    system info is as follows:
    java weblogic.Admin VERSION
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    thanks,
    -saad--
    Rajesh Mirchandani
    Developer Relations Engineer
    BEA Support

  • Methods that return more than one object.

    Hello everyone,
    I don't know if this has ever been proposed or if there's an actual solution to this in any programming language. I just think it would be very interesting and would like to see it someday.
    This is the thing: why isn't it possible for a method to return more than one object. They can receive as many parameters as wanted (I don't know if there's a limit), but they can return only 1 object. So, if you need to return more than one, you have to use an auxiliary class...
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String getName() {
           return name;
       public String getLastName() {
           return lastName;
    }So if you want to get the name of somebody you have to do this, assuming "person" is an instance of the object Person:
    String name = person.getName();And you need a whole new method (getLastName) for getting the person's last name:
    String lastName = person.getLastName();Anyway, what if we were able to have just one method that would return both. My idea is as follows:
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String name, String lastName getName() {
           return this.name as name;
           return this.lastName as lastName;
    }And you would be able to do something like:
    String name = person.getName().name;and for the last name you would use the same method:
    String lastName = person.getName().lastName;It may not seem like a big deal in this example, but as things get more complicated simplicity becomes very useful.
    Imagine for example that you were trying to get information from a database with a very complex query. If you only need to return 1 column you have no problem, since your object can be an array of Strings (or whatever type is necessary). But if you need to retrieve all columns, you have three options:
    - Create 1 method per column --> Not so good idea since you're duplicating code (the query).
    - Create and auxiliary object to store the information --> Maybe you won't ever use that class again. So, too much code.
    - Concatenate the results and then parse them where you get them. --> Too much work.
    What do you think of my idea? Very simple, very straight-forward.
    I think it should be native to the language and Java seems like a great option to implement it in the future.
    Please leave your comments.
    Juan Carlos García Naranjo

    It's pretty simple. In OO, a method should do one thing. If that thing is to produce an object that contains multiple values as part of its state, and that object makes sense as an entity in its own right in the problem domain--as opposed to just being a way to wrap up multiple values that the programmer finds it convenient to return together--then great, define the class as such and return an instance. But if you're returning multiple values that have nothing to do with each other outside of the fact that it's convenient to return them together, then your method is probably doing too much and should be refactored.
    As for the "if it increases productivity, why not add it?" argument, there are lots of things that would "increase productivity" or have some benefit or other, but it's not worth having them in the language because the value they add is so small as to no be worth the increase in complexity, risk, etc. MI of implementation is one great example of something that a lot of people want because it's convenient, but that has real, valid utility only in very rare cases. This feature is another one--at least in the domain that Java is targetting, AFAICT.

  • Find development that was directly done in production

    guys,
    i suspect that some of my developers were doing development directly in production because the client and system were open. How can i find a list of objects that they modified directly there -- both SAP standard and custom ?
    I was thinking about looking at all the transport requests from se09 but that wouldnt cover objects that were saved in $TMP package ??? So any way to find out all ?
    also, any idea about how to find the same for all the customizing that was directly done in production ?
    regards,
    VM
    Moderator message: please get your system landscape in order, search for available information before asking.
    Edited by: Thomas Zloch on Feb 23, 2011 12:11 PM

    Yes, but this is basic stuff which you've been hammering the forums with for the past several weeks.  You should not be using these forums as a consulting service for your own consulting work...

  • Calling a method that returns an object Array

    Hello.
    During a JNICALL , I wish to call a method which returns an object array.
    ie my java class has a method of the form
    public MyObject[] getSomeObjects(String aString){
    MyObject[] theObjects=new MyObject[10];
    return theObjects
    Is there an equivalent to (env)->CallObjectMethod(...
    which returns a jobjectArray instead of a jobject, and if not could somebody suggest a way around this.
    Thanks,
    Neil

    I believe an array oj jobjects is also a jobject. You can then cast it to another class.

  • Speed and course methods for location object don't work

    I am attempting to use the Location API (JSR 179) to extract the course and speed (getCourse() and getSpeed() of Location object) of the user on a Nokia N95. However, no matter what speed I am travelling at or how good the GPS signal is, NaN is returned. Other fields like latitude and longitude work fine. Why is this? Were these methods never implemented? The problem clearly does not lie with the GPS or the device, as the built-in Symbian applications have no trouble returning course or speed information. Why do these methods not work?

    Hello,
    Since you provided no code to show what yu are doing, and you don't give any indication of what " i have some troubles" means, I'd Bing "C# playback .vob files".
    Also, see
    How to ask questions in a technical forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Compiler cannot find method that is there (Oracle 9i JDeveloper)

    Hi
    In one of my OA Framework classes Im doing some XML validation.
    In 1 class I do this:
    import oracle.xml.parser.v2.SAXParser;
    SAXParser parser = new SAXParser();
    parser.setValidationMode(SAXParser.SCHEMA_STRICT_VALIDATION);
    <or Alternatively>
    parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking", true);
    The compiler complains that it cannot find these methods in SAXParser class.
    However, in the editing window, if I hit CTRL+Space for autocompletion JDeveloper can 'see' both these methods (setFeature() is actually defined in SAXParser and setValidationMode is inherited from parent class XMLParser).
    It seems the editor can access the resources but the compiler cannot.
    Ive tried both the XSQL Runtime and Oracle XML Parser 2 libraries in my project configuration and have even tried them in different positions in the 'Selected Libraries' window.
    Im using XDK 9.0.3.0.0 with JDeveloper 9i.
    Any help appreciated
    Jon

    Have you checked the ApJServLogFile? You might find some clues there.
    I'm curious as to why you are getting 'display' errors. Is your display environment set up properly?
    Alison

  • What is the best way to "upgrade" a powerbook g4 with a powerpc chip?  it seems that many things don't work or aren't supported these days.  can't update my iphone, download video, etc.  can i get the latest software?  thanks.Ask your question.

    what is the best way to "upgrade" a powerbook g4 with a powerpc chip?  it seems that many things are not supported these days.  can't download software, update my iphone, download video, etc.  can i get the latest software?  thanks for the help!

    Mac OS X 10.5 Leopard installation system requirements
    http://support.apple.com/kb/TA24950
    Leopard is no longer available at the Apple Store but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753).
    If you can't obtain a retail install DVD from Apple, look on eBay or Google the installer part numbers to possibly find at an on-line store. Here's what to look for:
    MB427Z/A  Leopard 10.5.1 install DVD
    MB576Z/A  Leopard 10.5.4 install DVD
    MB021Z/A  Leopard 10.5.6 install DVD (single user)
    MB022Z/A  Leopard 10.5.6 install DVD (5-user family pack)
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
    The DVD should look like this
    Caution - Leopard does not support classic mode. So, if you currently open OS 9 apps in classic mode, you won't be able to do this if you upgrade to Leopard.
     Cheers, Tom

  • Youtube and flash games work, but other sites that use flash don't work

    Hi-
    I'm currently using Firefox 18.0.2 on 2 different computers (Both Win7 64 bit), both with flash 11.6.602.168. Both have roughly the same programs installed and the same browser configuration. However, on one machine, flash works only on some sites. For instance, Youtube works perfectly, as do dedicated flash games. However, sites that use embedded flash applications fail to work. For instance, if I visit www.speedtest.net, where the test options normally appear is completely blank. Similarly, other video players fail. For example, videos in www.cbsnews.com play sound, but where the video should be is just white. I've tried completely uninstalling both firefox as well as flash, and installing previous versions, nothing has worked.

    I guess it is a process of elimination, what is different ?
    I would first of all check and experiment with Adobe FlashPlayer protected mode setting.
    * http://kb.mozillazine.org/Flash#Flash_Player_11.3_Protected_Mode_-_Windows
    Also have you any filtering, adblock or security related programs installed which may block video or scripts. With you-tube check is it actually using Flash player,and not trying to use any HTML5 options so check any options and cookies.

  • Links that use Javascript don't work after I updated Java; can I revert to earlier version?

    I use private messaging to communicate with my doctor. I've always clicked a link ("Private Messaging") which opened a Java (Javascript?) window that displayed my messages and allowed me to write a message. A couple of days ago a message popped up saying that an update was available. I installed the update, now that link won't work. It is very important that I be able to access those messages, making this problem urgent. If anyone has any suggestions, I would greatly appreciate it!
    (I did the Java check recommended on the Mozilla website, and it shows that Java is working and up to date)

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Firefox uses the about: protocol to access built-in about: pages that you can open via the location bar just like you open web pages.
    *http://kb.mozillazine.org/About_protocol_links).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Unable to print the array method that returns an array

    public class ReturnAtrray {
         public static void main(String[] args) {
              int[] b= {1, 3, 5};
              System.out.println(incrementArray(b,2));
         public static int[] incrementArray(int [] a, int increment)
              int[] tmp = new int[a.length];
              for(int i = 0; i <a.length; i++ )
                   tmp= tmp[i] + increment;
              return tmp;     

    You are correct: Java is always pass by value. In the case of an array it is a reference to the array that is passed by value. This means that there is a way to increment the array values "in place". As an alternative to what you are doing now consider:
    // untested
    public class ReturnAtrray {
        public static void main(String[] args)
            int[] b= {1, 3, 5};
            incrementArray(b,2);
            for(int i = 0; i < b.length; i++)
                System.out.print(b[i] + " ");
        public static void incrementArray(int [] a, int increment)
            for(int i = 0; i <a.length; i++)
                a[i] = a[i] + increment;
    }

Maybe you are looking for

  • Wireless printer issue

    On my Macbook Pro I had no problem for 3 years using my wireless hp printer, the past few days it couldn't recognize the printer and I, unfortunately, delted the printer thinking I could re-find it and now I cannot find it at all.

  • Why i can´t active my Imessage account...i try everything.

    Hello : I have tried all possible ways to activate iMessage ...Still nothing. Always say : Waiting Activation.

  • PHP causes dreamweaver to crash

    When I open a php page it will open fine but if I click any of the php code dreamweaver just freezes. I have turned off validation in preferences but still no help.

  • C100 footage looks horrible in PPro CC on Windows

    Hi folks! I did my best to find the answer but I didn't find a good one. The same C100 (.mts) footage is imported perfectly on PPro CC on the Mac but when I bring it into PPro CC on Windows, it simply looks horrible. It's got a green cast in the shad

  • HELP! Lost User Folder After 10.4.7 Update

    HELP! Lost User Folder After 10.4.7 Update!! I did everything I normally do before an upgrade. Fix premissons, etc etc etc.. Ran the combo updater & rebooted.... Checking my HDD & noticed I lost my "jtmadman" folder in my User folder. Any ideas??? Th