No java.util.ArrayList?

I need a sorted table, but I didn't notice any ArrayList in the API documentation.  Is it because it is not supported on the device?  If so, I've just got to roll my own, perhaps by setting up a list of the interfaces?

Patrick

Try SimpleSortingVector - should work as a replacement.

Tags: BlackBerry Developers

Similar Questions

  • the resolution may not be cast in java.util.ArrayList

    I hava an accordion panel with this function in disclosureListener:

    {} public void terrababdelhak (DisclosureEvent disclosureEvent)

    System.out.println ("SHOW all THE NEWSPAPERS");

    int stateIndex [---]

    DCIteratorBinding dcLogs = (DCIteratorBinding) getBindings () .get ("LogTypesVO1Iterator");

    ViewObject voLogs = dcLogs.getViewObject ();

    List of JUCtrlListBinding = (JUCtrlListBinding) getBindings () .get ("LogTypesVO1");

    System.out.println ("LIST LOGS" + list);

    DCIteratorBinding iter = list.getDCIteratorBinding ();

    System.out.println ("ITER LOGS" + iter);

    RowSetIterator rsi = voLogs.createRowSetIterator (null);

    System.out.println ("RSI" + rsi);

    int i = 0;

    rowCount int = (int) voLogs.getEstimatedRowCount ();

    stateIndex = new int [rowCount];

    While (rsi.hasNext ()) {}

    System.out.println ("SEGUINTE!");

    Line nextRow = rsi.next ();

    iter.setCurrentRowWithKey (nextRow.getKey () .toStringFormat (true));

    INDX int = iter.getCurrentRowIndexInRange ();

    stateIndex [i] = indx;

    System.out.println ("Index loop-" + indx);

    i ++ ;

    }

    rsi.closeRowSetIterator ();

    System.out.println ("INDEX" + stateIndex);

    list.setSelectedIndices (stateIndex);

    System.out.println ("LISTA" + list);

    }

    Then I valuechangelister to selectmanycheckbox this function:

    {} public void filterLogs (ValueChangeEvent valueChangeEvent)

    Dc2 DCIteratorBinding = (DCIteratorBinding) evaluteEL ("#{bindings.") EntityLogsVO1Iterator}");

    ViewObject vo2 = dc2.getViewObject ();

    String WhereClause = "LOG_TYPE in (";"."

    System.out.println ("VALUE" + valueChangeEvent.getNewValue ());

    If (valueChangeEvent.getNewValue ()! = null) {}

    java.util.ArrayList selectedValues = (java.util.ArrayList) valueChangeEvent.getNewValue ();

    for (int i = 0; i < selectedValues.size (); i ++) {}

    If (!.) WhereClause.equals ("LOG_TYPE in (""))

    WhereClause += ', ';

    WhereClause += "'" + selectedValues.get (i) + "'";

    }

    WhereClause += ') ";

    VO2.setWhereClause (WhereClause);

    VO2. ExecuteQuery();

    } else {}

    WhereClause = "1 = 2";

    VO2.setWhereClause (WhereClause);

    VO2. ExecuteQuery();

    }

    }

    But when I uncheck a selectmanychoice point, cause this error:

    valueChangeListener = "#{backingBeanScope.backing_OrderDetail.filterLogs}": java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast in java.util.ArrayList.] "

    My selectmanycheckbox have this property:

    < af:selectManyCheckbox value = "#{bindings." LogTypesVO1.inputValue}.

    label = "#{bindings." LogTypesVO1.label}"id ="smc1.

    Simple Binding = "#{backingBeanScope.backing_OrderDetail.SMC1}" = 'true' "

    layout = "horizontal" autoSubmit = 'true '.

    valueChangeListener = "#{backingBeanScope.backing_OrderDetail.filterLogs}" >

    < f: selectItems value = "#{bindings." LogTypesVO1.items}"id ="si2 ".

    Binding="#{backingBeanScope.backing_OrderDetail.si2}"/ >

    < / af:selectManyCheckbox >

    my version of jdev is 11.2.4.0

    User

    You can not convert the ArrayList to direct object value

    java.util.ArrayList selectedValues = (java.util.ArrayList) valueChangeEvent.getNewValue ();

    write like this-

    ArrayList selectedValues = new ArrayList();

            Object [] str = (Object []) valueChangeEvent.getNewValue ();
            for (int i = 0; i)< str.length;="" i++)="" {="">
               

    System.out.println (STR [i]);

    selectedValues.add (str [i]); Add the values from an ArrayList

            }

    Ashish

  • java.lang.ClassCastException: java.util.ArrayList cannot be cast to oracle.adf.view.faces.bi.model.GeoMapDataModel

    Hello world

    LM l and map creation using table list as the data collection for the leaf theme of points to specify a given location. The problem l get here is that, after setting up the collection of data on the theme tab, the choice address and longtude & latitudes remain disabled. LM using JDeveloper 12 c last version & weblogic 12 c. When l run my lm project this error: java.lang.ClassCastException: java.util.ArrayList cannot be cast to oracle.adf.view.faces.bi.model.GeoMapDataModel. Here is the source code of my page and the Bean managed that define the ArrayList

    MapBean.pngPageSourceCode.png

    kdario Thanks for your comment, no. l didn't download the demo of component, but l did it right now. l use developer J 12 c to see how GeoMapDataModel is created .it will come back to you if any problem arises.

  • ClassCastException: java.util.ArrayList cannot be cast to oracle.adf.view.f

    Hello

    I am currently check why I encounter this error in a line graph?

    Basically I have the managed bean
    public class TestMB
    {
      private List<Object[]> tabularData = new ArrayList<Object[]>();
    
      public void setTabularData(List<Object[]> tabularData)
      {
        this.tabularData = tabularData;
      }
    
      public List<Object[]> getTabularData()
      {
        
        return tabularData;
      }
    }
    In the code, I have this defined graphic line.
    <dvt:lineGraph id="lineGraph1" subType="LINE_VERT_ABS"
       emptyText="No Data To Display"
       value="#{backingBeanScope.TestMB.tabularData}"
       contentDelivery="immediate">
           <dvt:background>
              <dvt:specialEffects/>
           </dvt:background>
           <dvt:graphPlotArea/>
           <dvt:seriesSet>
              <dvt:series/>
           </dvt:seriesSet>
           <dvt:o1Axis/>
           <dvt:y1Axis/>
           <dvt:legendArea automaticPlacement="AP_NEVER"/>
    </dvt:lineGraph>
    But I continued to encounter this error.
    java.lang.ClassCastException: java.util.ArrayList cannot be cast to oracle.adf.view.faces.bi.model.DataModel
    My thought is that I would be able to display the emptytext attribute.

    JDeveloper 11.1.1.6

    Published by: Neliel Sep 9, 2012 23:51

    Neliel,

    You must link to the tabularData property and not to the value property.

    
           
              
           
           
           
              
           
           
           
           
    
    

    Arun-

  • How to pass the java.util.ArrayList &lt; property &gt; type attribute to a tag

    How to move a type attribute, java.util.ArrayList < my.entity.Property > to a Tag implementation class?

    Please advise!

    Thank you
    Joe
    package my.tags;
    
    import java.io.IOException;
    import java.util.ArrayList;
    
    import javax.servlet.jsp.tagext.SimpleTagSupport;
    import javax.servlet.jsp.JspException;
    
    import my.entity.Property;
    
    public class PropertiesTag extends SimpleTagSupport {
        private ArrayList<Property> properties;
    
        public void setProperties(ArrayList<Property> properties) {
              this.properties = properties;
         }
    
         public void doTag() throws JspException, IOException {
         ..
         }     
    }
    <?xml version="1.0" encoding="utf-8" ?>
    <taglib ...>
         <tag>
              <name>propertiesTag</name>
              <tag-class>my.tags.PropertiesTag</tag-class>
              <body-content>empty</body-content>
              <description>Displays the product selection left menu</description>
              <attribute>
                   <name>properties</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
                   <type>java.util.ArrayList<my.entity.Property></type>
              </attribute>
         </tag>
    </taglib>
    Here is the error message:
    org.xml.sax.SAXParseException: The element type "my.entity.Property" must be terminated by the matching end-tag "</my.entity.Property>".

    As far as I know he did not use generics in a descriptor tag. Read the docs for this. Here is a quick tutorial on the writing of simple tags.

  • Java.util.Arraylist

    Hi all

    I use my own enterprise Java API (they make to apache savings) in my blackberry project. but when I use these classes in my project, his error giving because they use arraylist map etc but here in my project its error, ID do not coz you know there is no card ArrayList etc classes in BB.

    How I can use them, or to do a different API for specified BB?

    or how to add these classes in my project. coz they use many classes that does not exist in BB.

    Thank you

    Zahid

    There is no way you can use except re-implement all of your API, because Blackberry using JavaME and not JavaEE/SE. But the work will be too big to do.

    So you should forget your auto-generated files and develop everything yourself: s

  • How killi thread and stop java.util.Timer?

    Hello

    I have table list, this list contains my objects (areas of Thread) and these threads use the Timer (java.util.Timer).

    In some time, I need to find the object in the list of tables, destroy this specific thread and immediately to stop the timer.

    I don't know what is the best way how a) destroy the thread and b) stop the timer.

    Could you tell me what technique to use?

    Thank you.

    I don't think you're catching what everyone tells you:

    Unless I missed something in your code, you do the following:

    1 create a thread that starts a timer (the thread itself dies immediately after the launch of the timer)
    2 put the dead (or soon to die) wire reference in a list of tables.

    To solve your problem, as has already been said: stop timers, they exist independently of your son now dead. Remove the reference ArrayList where you keep a list of the dead son. They will be eligible for garbage collection when you have no refrence to them any longer. Java garbare collector will not immediately work to show you got something, it is that way by their design, but ultimately it will collect your dead and not referenced objects and drop them.

  • java.util.ConcurrentModificationException

    Hi all

    I have the following code:
        private static ArrayList<Integer> findCommonMovies(int[] userIDsForReducedIndex) {
    
            ArrayList<ArrayList> watchedMoviesSet = new ArrayList<ArrayList>();
            for (int i = 0; i < userIDsForReducedIndex.length; i++) {
                ArrayList<Integer> watchedMovies =  findWatchedMovies(userIDsForReducedIndex, trainingMatrix);
    watchedMoviesSet.add(watchedMovies);
    }

    //Initialize the commonMovies with first and second users' common movies
    ArrayList<Integer> commonMovies = new ArrayList<Integer>();
    ArrayList<Integer> watchedMovies = watchedMoviesSet.get(0);
    ArrayList<Integer> watchedMoviesNextUser = watchedMoviesSet.get(1);
    for (int movie : watchedMovies) {
    for (int movieNextUser : watchedMoviesNextUser) {
    if (movie == movieNextUser) {
    commonMovies.add(movie);
    }
    }
    }

    ArrayList<Integer> tempCommonWatchedMovies = new ArrayList<Integer>();
    for (int i = 2; i < watchedMoviesSet.size(); i++) {
    ArrayList<Integer> tempWatchedMovies = watchedMoviesSet.get(i);
    for (int movie : tempWatchedMovies) {
    *** for (int commonMovie : commonMovies) {
    if (movie == commonMovie) {
    tempCommonWatchedMovies.add(movie);
    }
    }
    }
    commonMovies = tempCommonWatchedMovies;
    }

    return commonMovies;
    }
    and getting following error related with the line that I put "***":
    Exception in thread "main" java.util.ConcurrentModificationException
    in java.util.AbstractList$ Itr.checkForComodification (AbstractList.java:372)
    in java.util.AbstractList$ Itr.next (AbstractList.java:343)
    to webmining. Main.findCommonMovies (Main.java:273)
    to webmining. Main.findSuggestedCommonMovies (Main.java:240)
    to webmining. Main.main (hand. Java:73)
    What's wrong with it? I thought that I can iterate through two ArrayList in a way that I do for arrays.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    It's your original code, with a few lines more pronounced:

    ArrayList tempCommonWatchedMovies = new ArrayList();
            for (int i = 2; i < watchedMoviesSet.size(); i++) {
                ArrayList tempWatchedMovies = watchedMoviesSet.get(i);
                for (int movie : tempWatchedMovies) {
    ***            for (int commonMovie : commonMovies) {
                        if (movie == commonMovie) {
    @@@                    tempCommonWatchedMovies.add(movie);
                        }
                    }
                }
    ###         commonMovies = tempCommonWatchedMovies;
            }
    

    Although the version of your table might work, I'll explain the problem with your original version of ArrayList.

    The line I marked with # fact "commonMovies" have the same value as "tempCommonWatchedMovies". For i = 2, your loop will pass by without exceptions. At that time, ' commonMovies! = ' tempCommonWatchedMovies and therefore him 'Add' on the line with @ has no bearing on the same list. However, for I = 3, 'commonMovies' points to the same list as "tempCommonWatchedMovies" (that is, "commonMovies == tempCommonWatchedMovies' set to true). Then when you are iterating "commonMovies" online *, you are iterating over the same list to which you add items to the line. So, the ConcurrentModificationException occurs. According to what is originally watchedMoviesSet, the error may occur not on i = 3. The error occurs for the first 'i' for which the line @ is called.

    For I > = 3, your loop where the error occurs is actually:

    ***            for (int commonMovie : tempCommonWatchedMovies) {
                        if (movie == commonMovie) {
    @@@                    tempCommonWatchedMovies.add(movie);
                        }
                    }
    

    or equivalently,

    ***            for (int commonMovie : commonMovies) {
                        if (movie == commonMovie) {
    @@@                    commonMovies.add(movie);
                        }
                    }
    

    When writing in this way, it may be more obvious as to why the ConcurrentModificationException happens - you are iterating over the list to which you add items.

    Instead of line #, you can try this:

    commonMovies = new ArrayList(tempCommonWatchedMovies);
    

    Then you hold the same values in both lists, but the lists themselves are different, and the ConcurrentModificationException will not happen.

    You can also try to look of the ArrayList retainAll method. You'll probably want to make copies of the list (as in my example of code) to avoid damaging the original lists (if you need the originals to be still intact). But, retainAll should allow you easy ways to keep only the common elements. Underneath, retainAll will always make the loops that you do, but your code will be shorter, because the curls will no longer appear in your own code. You will have just a few copies and a few calls to retainAll.

  • Foglight v558 - Script fails with ScriptAbortException: script1001968: java.util.ConcurrentModificationException

    I have changed most of our rules through several Wssf and use a number of rule-level Variables. I got these variables through groovy scripts.

    Recently, I had to change a variable that appears in all the rules.

    This is the script that I have written so far:

    com.quest.nitro.service.sl.interfaces.rule import. *;

    def ruleInfo = "";
    def ruleSvc = server.get ("RuleService");
    def ruleList = ["DBSS - ADH Service status"];
    def varExp = "INST_NAME;
    def varText = "scope.parent_node.mon_instance_name";

    allRules = ruleSvc.getAllRules ();

    for (rule allRules) {}
    ruleName def = rule.getName ();
    def ruleCart = rule.getCartridgeName ();

    If (ruleList.contains (ruleName))
    If (ruleCart.equals ("DB_SQL_Server_UI")) {}
    def ExpressionSet = rule.getExpressions ();
    for (expression in ExpressionSet) {}
    If (expression.getName () .equals ("INST_NAME")) {}
    ExpressionSet.remove (expression);
    ruleInfo += "Removed variable $varExp of $ruleName \n";
    }

    }
    Add a new term
    ExpressionSet.add (rule.createExpression ("INST_NAME", varText));

    rule.setExpressions (ExpressionSet);
    ruleSvc.saveRule (rule);
    ruleInfo += "added $varExp variable $ruleName \n";
    }
    }

    Return ruleInfo;

    The part of the script that adds the variable work consistantly.  The part of the script removes it expresion of level rule fails most of the time with the following error:

    com.quest.nitro.service.sl.interfaces.scripting.ScriptAbortException: script1001968: java.util.ConcurrentModificationException

    I'm still fairly new to groovy and java script, but I gather that when I have to iterate over a collection that is changed in another thread, the iterator survey a java.util.ConcurrentModificationException.  I read that I should look somehow collection synchronization.  Before we go down this rabbit hole, I thought I would just ask here, how should I write this code then it work consistantly?

    This is due to brakes on an object. You can try to break your code into pieces. First of all try and get all the rules in a list that matches your criteria. Call it a refinedRuleList, and then iterate through this refinedRuleList for Expressions and remove them. This gives a try!

    Thank you

    #AJ Aslam

  • Java.util.Regex

    Hi all

    Can I use the java.util.regx of java in blackberry.

    Or I have to use the third-party evaluation library regular expressiong?

    Please someone answer but soon...

    Concerning

    You can check it out yourself:

    http://www.BlackBerry.com/developers/docs/6.0.0api/index.html

    (the second option, you must use a library)

  • Cannot convert abcd of the type class java.lang.String interface java.util.List

    Hello

    I get an error of "cannot convert the class type abcd java.lang.String interface java.util.List" where "abcd" is a string in a listbox.

    and my code is something like this

    < af:selectOneListbox id = "lstcatg" label = 'List of categories' partialTriggers = 'proud '.

    value = "#{viewScope.RegWoComp.lstboxcatg}" >

    < f: selectItems id = value="#{viewScope.RegWoComp.customList}"/ "lstselect1" >

    < / af:selectOneListbox >


    bean

    private list < String > lstboxcatg;

    {} public void setLstboxcatg (List < String > lstboxcatg)

    This.lstboxcatg = lstboxcatg;

    }

    public List < String > getLstboxcatg() {}

    Return lstboxcatg;

    }

    public BindingContainer {} getBindings()

    Return BindingContext.getCurrent () .getCurrentBindingsEntry ();

    }

    Private Sub button (ActionEvent actionEvent)
    {
    JUCtrlListBinding listBindings = (JUCtrlListBinding) getBindings () .get (lstboxcatg);
    Object [] str = listBindings.getSelectedValues ();

    for (int i = 0; i < str.length; i ++)

    {

    System.out.println (STR [i]);

    }
    }

    I tried to use this fact.

    object str = listBindings.getSelectedValue ();

    System.out.println (STR);

    and here, if I change the data type of lstBoxcatg

    private String lstboxcatg;

    {} public void setLstboxcatg (String lstboxcatg)

    This.lstboxcatg = lstboxcatg;

    }

    public String getLstboxcatg() {}

    Return lstboxcatg;

    }

    can I get a nullpointerexception on line object str = listBindings.getSelectedValue ();

    No you can use this code you don't use link layer

    remove this code. You will get the selected value in this string variable

    Just write this about you button action and verification.

    System.out.println (selectedVal);

    Ashish

  • move on java.util.Map parameter to Servlet

    Hello

    I use jdeveloper 11.1.1.3.0

    I have set a java.util.Map as pageFlowScope parameter setting and fill in a bean:

    java.util.Map paramMap = new HashMap();
    paramMap.put("key1","value1");
    .
    .
    .
    Map<String, Object> pageflowScope =
    AdfFacesContext.getCurrentInstance().getPageFlowScope();
    pageflowScope.put("formParam", new HashMap());
    pageflowScope.put("formParam", paramMap);
    
    
    
    
    

    so, I want to send this parameter to servlet by a goLink as follows:

    <af:goLink text="goLink 1" id="gl1"
             destination="/render_image? param=#{pageFlowScope.formParam}"
       targetFrame="_blank"/>
    
    
    
    
    

    but in the servlet when I wanted to get this parameter the exception below occurs

    Map paramMap = (Map)request.getParameter("param");
    
    

    Error 500 - Internal server error

    java.lang.ClassCastException: java.lang.String cannot be cast java.util.Map

    How can I pass a parameter java.util.Map to servlet?

    Habib

    And that returns a String is a

    #{pageFlowScope.formParam}

    I guess?

    As a final attempt by me:

    1. before redirecting to servlet (by af:goLink), put your hashMap not the pageFlowScope, but the sessionScope attribute, say "formParam.

    2. in the redirect (when specifying the destination for the goLink), don't specify any parameter (jump? param =... part)

    3. in the servlet, try again with the code I gave you already:

    public void doGet (HttpServletRequest request,

    HttpServletResponse response) throws ServletException,.

    IOException {}

    HashMap param (HashMap) = request.getSession () .getAttribute ("formParam");

    }

    If this does not work, then I don't have the answer

  • Disable debugging messages she draws thirdparty java.util.logging service

    I use java.util.logging api for logging. It works very well. Now I have a third-party library that uses the someother registration service. When I run my application, I see this library third party out tons of debug log messages. How can control which helps Java util without the configuration of the service. Please let me know. I use the Java8 version.

    Thank you.

    You can I want java.util.logging to a third party not related to the logging control framework? It is not possible.

  • Import java.util.class

    Hey,.

    I write a Web site in Dreamweaver and try to get the hour UTC/GMT in a javascript file.

    Been trying to use: but none work.

    importjava.util.Calendar;

    importjava.util.TimeZone

    Any tips? Do I need to connect in my html code? Dreamweaver does not recognize the command "import", said


    Thank you

    JAVA (Oracle) is not the same as JavaScript. 2 completely different things.  See the links below for examples of JavaScript.

    UTC & GMT

    http://StackOverflow.com/questions/8047616/get-a-UTC-timestamp-in-JavaScript/15012173#1501 2173

    http://StackOverflow.com/questions/489581/getting-the-current-GMT-world-time

  • Conversion problem of oracle.jbo.domain.Date in java.util.Calendar and oracle.jbo.domain.Timestamp to oracle.jbo.domain.Date

    Hello world

    Work with dates has been harder than I thought! Please take a look at the code; everything compiles, but it fails because I'm not cast properly. Any help would be appreciated.

    Imports are:

    import java.sql.SQLException;

    to import java.text.ParseException;

    import impossible;

    import java.util.Calendar;

    Import oracle.jbo.domain.Date;

    Import oracle.jbo.domain.Timestamp;

    Here is the method:

    public static Date (String sDate, int day, nextDay

    SimpleDateFormat String) {}

    Date result = null;

    java.util.Date date;

    If (sDate! = null) {}

    try {}

    System.out.println ("Try...");

    Calendar calendar = Calendar.GetInstance ();

    SimpleDateFormat dateFormat =

    new SimpleDateFormat (simpleDateFormat);

    calendar.setTime (dateFormat.parse (sDate));

    Calendar.Set (Calendar.DAY_OF_WEEK, date); day = Calendar.SUNDAY

    Calendar.Set (Calendar.HOUR_OF_DAY, 0);

    Calendar.Set (Calendar.MINUTE, 0);

    Calendar.Set (Calendar.SECOND, 0);

    Calendar.Add (Calendar.DATE, 7);

    dateFormat.format (calendar.getTime ());

    try {}

    System.out.println ("try (inside)... ») ;

    "System.out.println (" new Timestamp (calendar.getTime () .getTime ()) "):" +.

    new Timestamp (calendar.getTime () .getTime ()));

    result = new Date (Timestamp (calendar.getTime () .getTime ())) new; Code does not work here.

    return the result;

    } catch (SQLException e) {}

    System.out.println ("catch (SQLException e)... ») ;

    e.printStackTrace ();

    }

    Returns a null value.

    } catch (ParseException exception) e {}

    System.out.println ("catch exception e ParseException... ») ;

    e.printStackTrace ();

    }

    Returns a null value.

    }

    Returns a null value.

    }

    Here is the result:

    try...

    Try (inside)...

    new Timestamp (calendar.getTime () .getTime ())): 2013-12-29 00:00:00.0

    catch (SQLException e)...

    java.sql.SQLException: failed initialization

    to oracle.sql.DATE. < init > (DATE.java:237)

    to oracle.jbo.domain.Date. < init > (Date.java:378)

    James

    try to convert timestamp to jbo.date as

    java.sql.Timestamp datetime =newjava.sql.Timestamp(System.currentTimeMillis());

    oracle.jbo.domain.Date daTime =new  oracle.jbo.domain.Date(datetime);

Maybe you are looking for

  • Repair Qosmio F10

    Hello I have a Qosmio F10 which was purchased in me for repair.He underwent the faliure GPU from nVidia to the common address but meets in perfect condition and certainatly too good to discard.I managed to get your hands on a part of the Service of O

  • MacBook Air very slowly. How to fix.

    Hello.. I want to know why my Mac Book Air running slow? Already clear partition and install again. Any app or software installed. All new OS does X no DATA. But very slow. What is the problem? My camera; MacBook Air > CPU = Intel Core 2 Duo > 2 GB 1

  • The screen on the side

    Suddenly my laptop screen is sideways, how can I get that back to normal to research?

  • Unsolicited call matrix Global Solutions to solve computer problems

    Original title: MATRIX GLOBAL SOLUTIONS We were contacted by a company called Global Solutions matrix yesterday and said that our computer was in danger because of so many error reports comes to them. They have assured me that they were associated wi

  • The software version of Q5 blackBerry 10.3.1 1865

    Just updated the latest Blackberry software released today after I received a notice on my BB Q5 7903 What a mistake, this version is not as good for me that the previous version, has changed the look of my home screen and apps (hate) any way to elim