What wrong with my screen?

Hello..

can someone tell me how to solve this problem?

my mini iPad 2 have * screen like this...

Try a forced reboot: https://support.apple.com/en-us/HT201559

If that doesn't help, restore: using iTunes on your Mac or PC to restore the iPhone, iPad or iPod to factory - Apple Support

Tags: iPad

Similar Questions

  • I don't know whats wrong with my windows live account. Somerone seems to be using it to send advertisements to my contacts.

    I don't know whats wrong with my windows but somerone direct email account seems to be to use it to send advertisements to my contacts. I clicked on air currents and there were hundreds of ads, but the meter does not have to indicate that I had at all drafty. I tried to change my password but I can't access the password reset function either. I used the same years email address and hate having to change.  What should I do?

    What happens when you connect to your Windows Live/Hotmail through Internet Explorer account on your computer, and try to change your password?

    Tips on creating a decent password:
    http://www.Microsoft.com/security/online-privacy/passwords-create.aspx

  • What wrong with this sql?

    What wrong with my sql? When I try to run a plain explain command against it. I get it that perfectly well... If the syntax was wrong, I won't get the plan to explain it, then why am I getting an error number invalid? What is the data? I'm on 10.2.0.3

    Published by: S2K on August 18, 2009 10:21

    Check out this site that has a lot of regular expressions submitted by users: [Library of regular expressions | http://regexlib.com/DisplayPatterns.aspx?cattabindex=2&categoryId=3]

    Then you should do something like you posted:

    WHERE REGEXP_LIKE(RSLT_QTY,)
    
  • What wrong with the search bar?

    Firefox is seriously p * ing me off today, what's wrong with the browser, it serves to be one of the best, now an absolute piece of software of the waste processed sound.

    Anway my problem is, AFTER upgrading firefox, I can't use my SEARCH BAR to look for anything!

    I continue to redirect to this

    file:///C:/users/Kamran/appdata/roaming/ToolbarInstaller/ToolbarInstaller/1.0.0.0/Google.html

    which is not very useful!

    I think it might be interesting to switch to google chrome and get rid of that junk!

    Edited by a moderator because of the language. See the rules and lines guidelines .

    Hi, I did what you said and disabled all add ons and one allowed them and managed to make it work. It was the 'googlebar update"add that I disabled it and everything went back to normal

    Thank you very much

  • What wrong with my PLSQL

    Hi all
    Here are my stored procedure that returns a recordset of .net. It is a dynamic plsql, where I check if the parameter has value or not. According to the query condition is built and run.

    but it does not extend the IF condition. Guys please let me know what wrong I do.

    PROCEDURE RPT_CUSTOMER_DETAILS (OFFICE_ID_VAL VARCHAR, CUST_NAME VARCHAR,
    CPR_CR_NO VARCHAR, RECORDSET RECORDSET_CURSOR, STR_QUERY ON VARCHAR) AS
    < code >
    BEGIN
    STR_QUERY: ='select c.contract_id, c.cust_english_name, c.cpr_cr_number, t.contract_e_desc,.
    c.Status_ID STATUS,
    c.exp_date, c.cust_id
    from customers_list c inner join s contracts on c.cust_id = s.cust_id
    contract_type t on t.type_id = s.type_id inner join
    WHERE C.OFFICE_ID =' | OFFICE_ID_VAL | ";
    IF CUST_NAME! = "THEN
    STR_QUERY: = STR_QUERY +' AND C.CUST_ENGLISH_NAME '. CUST_NAME | » %';
    END IF;
    IF CPR_CR_NO! = "THEN
    STR_QUERY: = STR_QUERY + "AND C.CPR_CR_NUMBER = ' |" CPR_CR_NO | ";
    END IF;
    RECORDSET OPEN FOR STR_QUERY;
    END RPT_CUSTOMER_DETAILS;
    < code >


    any help is highly appreciated
    concerning

    fairozkhan

    Published by: fkhan on November 14, 2011 12:27 AM

    Published by: fkhan on November 14, 2011 12:31 AM
    PROCEDURE RPT_CUSTOMER_DETAILS(OFFICE_ID_VAL VARCHAR, CUST_NAME VARCHAR,
    CPR_CR_NO VARCHAR,RECORDSET OUT RECORDSET_CURSOR,STR_QUERY OUT VARCHAR)AS
    BEGIN
    STR_QUERY:='select c.contract_id, c.cust_english_name, c.cpr_cr_number,t.contract_e_desc,
    c.status_id STATUS,
    c.exp_date,c.cust_id
    from customers_list c inner join contracts s on c.cust_id=s.cust_id
    inner join contract_type t on t.type_id=s.type_id
    WHERE C.OFFICE_ID='||OFFICE_ID_VAL;
    IF CUST_NAME!='' THEN
    STR_QUERY:=STR_QUERY || ' AND C.CUST_ENGLISH_NAME like ''' ||CUST_NAME||'%''';
    END IF;
    IF CPR_CR_NO!='' THEN
    STR_QUERY:=STR_QUERY || ' AND C.CPR_CR_NUMBER = '||CPR_CR_NO;
    END IF;
    OPEN RECORDSET FOR STR_QUERY;
    END RPT_CUSTOMER_DETAILS;
    
  • What wrong with this Manager?

    Hello

    I created a simple Manager where I put a label and a button. Here is the code:

    public class TitleManager extends Manager {
        private Bitmap bg = Bitmap.getBitmapResource("res/top_btm_bar.png");
        protected Field field;
        private String title;
        private LabelField titleLbl;
    
        public TitleManager(String titleText, Field field) {
            super(Manager.USE_ALL_WIDTH);
            this.title = title;
            this.field = field;
            titleLbl = Common.getLabelFieldForList(title);
            titleLbl = new LabelField(title) {
                public void paint(Graphics g){
                    g.setColor(Color.WHITE);
                    super.paint(g);
                }
            };
            setBackground(BackgroundFactory.createBitmapBackground(bg));
            add(titleLbl);
            add(field);
        }
    
        protected void sublayout(int width, int height) {
            int displayWidth = Display.getWidth();
            int displayHeight = bg.getHeight();
    
            layoutChild(titleLbl, width, height); //displayWidth, displayHeight
            layoutChild(field, displayWidth - titleLbl.getPreferredWidth(), displayHeight);
    
            setPositionChild(titleLbl, 50, 3);
            setPositionChild(field, 272, 3); 
    
            setExtent(displayWidth, displayHeight);
        }
        /*
        protected void paint(Graphics g) {
            g.setFont(Font.getDefault().derive(Font.PLAIN, 18));
            g.setColor(Color.WHITE);
            g.drawText(title, (bg.getWidth()/2)-50, field.getContentTop()+8);
        }*/
    
        public int getPreferredWidth() {
            return Display.getWidth();
        }
    
        public int getPreferredHeight() {
            return bg.getHeight();
        }
    }
    

    I'm passing a text to display as the title and a button to be placed next to him. I create LabelField using the text and I try to place the labelfield.

    But I don't see the button, but not the titleLbl. Can someone tell me what is the problem with the above code. Why don't I see the titleLbl. Even I tried to paint text using object, but failed their also.

    Any line help is very much appreciated.

    Thank you

    It's much better than before. You may want to consider laying off field (button?) first because it has a width the better, then with the label - making it an operation of a single pass (without calculations of rgdSpace). Something like

            layoutChild(field, displayWidth, displayHeight);
            layoutChild(titleLbl, displayWidth - field.getWidth(), displayHeight);
    

    I always use the width rather than displayWidth in all your calculations (and ditch displayWidth altogether).

    I do not mean the same thing with height is because you're likely to add that the Manager of a MainScreen() which, by default, gives to his 'children' a total of Integer.MAX_VALUE > 1 height (due to having a default VERTICAL_SCROLL value - see screen explained knowledge base article for more information). Using height in this case needlessly will propel the way the fields past the bottom of the screen. You can avoid this by using MainScreen (MainScreen.NO_VERTICAL_SCROLL) constructor, as explained in the article - then you can bring your Display.get... call and use the width and height as basis.

  • one of my games requires administrator rights and I have them whats wrong with it?

    So im trying to update one of my games, but he said I need administrative rights to update and I am the administrator so what am I, I suppose to do?

    Hello

    I suggest you follow the article below and check if it helps:

    http://Windows.Microsoft.com/en-us/Windows-Vista/how-do-I-allow-an-application-to-run-once-with-a-full-administrator-access-token-in-UAC

    Hope this helps,

  • WHATS WRONG WITH WINDOW 7 (camera and scanner Wizard is the last straw that made my VERY loyal windows back)!

    Why are you people FORCING me to go apple?
    I was a supporter of the EXTREME of windows from the day I started working with computers until 17:59 today!
    I have jperchased a new laptop a month for our company. It came with WINDOWS 7. I plugged in our digital camera today a WIZARD of SCANNER & CAMERA No. found? UH... "It's funny," I thought I went to see what was not configured right. AFTER 6 HOURS. I came to the conclusion that windows FAIR BAD! Under XP I could plug in the camera, one an Assistant came...   He asked "WHAT" can they DO YOU LIKE US... Copying photos to my computer using assistant camera and scanner window was my answer... AND BAMMM, WE WENT!  It seems NOW I MUST IMPORT EACH PHOTO ON MY $ GB SD CARD that IS IN THE CAMERA... NOT TO CHOOSE WHAT I WANT TO IMPORT! I CALLED WINDOW AND THEY WANT THE SAME MONEY OF ME TALKING ON THE PHONE! THE $ LAPTOPS AND DESKTOPS % WE HAVE OWNED IN THE LAST * YEARS WASN'T ENOUGH!   I WILL NOT BUY! WINDOWS ANYTHING NEVER NEVER NEVER NEVER IF I DON'T GET THIS TREATY! I (AS WELL AS THE OWNERS OF WINDOWS OF MOSE) DO NOT DESERVE TO HAVE OUR LOYALTY SHOT LIKE THAT!  E-mail address is removed from the privacy * if someone WANTS TO HELP. It IS on February 16, 2010... IF I can NOT GET this SOLVED BY 01/03/2010 I sell all our computers and apple FULL ON more I take 2 working days and to picket of the Redmond Office with my colleagues and my very good friend Steven Swartz since the San Francisco Chronicle!

    I wanted to say something but decided against him.

    CARI you are incredibly patient.

    Well I've changed my mind again.

    If you download say Live Photo gallery (free), it will be one of the options that is available to your device picture is connected (I have a Canon SD 750)

    Select Import with Windows Live Photo Gallery and it will allow you to choose what to import.

    http://download.live.com/Photogallery

    Due to several suites of law (EU) Microsoft was forced to leave out some old features, but most can be obtained by download.

  • What wrong with my .apk file?

    I created my first .apk file yesterday and managed to get it on my Samsung Galaxy Tab 10.1, was a bit clumsy for it get there, but it seemed to work.

    Web views do not function correctly, as expected and it seemed to get stuck between the articles, IE, I couldn't slide, MORE navigation does not work quite often.

    Then the worst, I released the .apk file, but when it appeared in the market store, it is downloaded in the viewer of content for one of my other apps!

    the file wasn't that 1.5 MB instead of the 20 MB it should have been, I downloaded the wrong file?

    MORE MORE in the android post area, it indicates the maximum size of a .apk file is only 50 MB!, whatever, I thought that was increased months ago!

    I've been reluctant to do anything with Android, and now I know why!

    Any thoughts would be much appreciated.

    See you soon

    Alistair

    If the incorrect content appears in the .apk Viewer, which is associated with the Adobe ID you use. In the generator of the Viewer, you specify an ID in the 'Adobe for title ID' field. The pages you create using this Adobe ID appear in the Viewer.

    You cannot create a single folio android Viewer. When you create the Viewer, it's just a shell 2 MB or more. Your customers use the Library Viewer to download folios.

    Sent from my iPad

  • What wrong with xbox live?

    I CAN NOT SEND FRIEND REQUEST OR MESSAGES N JOIN MY FRIENDS

    Hello

    Microsoft Community is not connected to the Xbox.

    For help/support Xbox options, see the post by SpiritX here:

    http://answers.Microsoft.com/en-us/windowslive/Forum/LiveID-signin/how-to-get-in-contact-with-Microsoft-about-my/51ea76c8-9880-43bc-b6fd-8e8f58420335

    Don

  • Something wrong with the screen?

    Can anyone help me solve this problem, I don't know what I did exactly. http://www.Flickr.com/photos/87313151@N06/7993866299/in/photostream

    Hi Adam Tatun,.

    If this issue is caused by a change in the settings (accidentally click a key combination) you can be able to fix it by doing a System Restore.

    Usually the red hue is caused by a cable video or the worst case scenario, your video card can be all bad.

    If your computer is still under warranty, contact the manufacturer for repair. If you are no longer under warranty, have a professional technician take a look at the computer.

  • Pls whats wrong with this code?

     
    create or replace trigger o_time_trig
     after update on o_time
     for each row
     begin
     update o_time
     set hours_overtime =>35
     where emp_id = :NEW.emp_id;
     end;
     /
    Warning: Trigger created with compilation errors.
    
    SQL> show errors;
    Errors for TRIGGER O_TIME_TRIG:
    
    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    2/1      PL/SQL: SQL Statement ignored
    3/20     PL/SQL: ORA-00927: missing equal sign
    It gives me an error.

    I just want to write a trigger...

    create or replace trigger o_time_trig
    before update on o_time
    for each row
    begin
      :new.hours_overtime = :new.hours_worked - 35;
    end;
    
  • Please tell me what wrong with this paypal purchase code?

    < form id = "form1" name = "form1" method = "post" action = "" >
    " < p > < form action =" https://www.PayPal.com/cgi-bin/webscr "method ="post"> "
    < input type = "hidden" name = "cmd" value = "_s-xclick" >
    < input type = "hidden" name = "hosted_button_id" value = "PBG8WAM6N6G2S" >
    < table >
    < tr > < td > < input type = "hidden" name = "on0" value = "& quot; Showtime & quot;-paper print "> & quot;" Showtime & quot; - paper printing < table > < /tr > < tr > < td > < select name = "os0" >
    < option value = '1-11 x 14' > 1-11 x $14 50.00 < / option >
    < option value = '1-12 x 18' > 1-12 x $18 65.00 < / option >
    < option value = "1-16 x 20" > 1-16 x $20 90.00 < / option >
    < option value = '1-24 x 36' > 1-24 x $36 170.00 < / option >
    < / select > < table > < /tr >
    < /table >
    < input type = "hidden" name = "currency_code" value = "Us $" >
    " < input type ="image"src =" https://www.PayPal.com/en_US/i/BTN/btn_buynowCC_LG.gif "border ="0"name ="submit"alt ="PayPal - the safer, easier way to pay online how!"> "
    < img alt = "" border = "0" src =" " https://www.PayPal.com/en_US/i/SCR/pixel.gif "width ="1"height ="1"> "
    < / make >

    When I insert this code and try the button 'Buy' nothing happens.  My site is www.ritacortesi.com.  PayPal doesn't really have a good Web site.

    [email protected] wrote:


             

    method https://www.paypal.com/cgi-bin/webscr"="post">




    "Showtime"-printed paper ".


    https://www.PayPal.com/en_US/i/BTN/btn_buynowCC_LG.gif' border = '0' name = "submit" alt = "PayPal - the safer, easier way to pay online how!" >
    https://www.PayPal.com/en_US/i/SCR/pixel.gif"width ="1"height ="1">

    When I insert this code and try the button 'Buy' nothing happens.  My site is www.ritacortesi.com.  PayPal doesn't really have a good Web site.

    Look at the first line of what you posted.  You have 2 opening tags form it and I suspect that there could be other HTML errors on your page.  Run your page through the validator and fix errors that come back.  Once you have done this, if you still have errors after return.

  • What wrong with my graphics card?

    Please help me, my game on my Lenovo Y570 performance recently plummited. There are all sorts of graphical errors and glitches. Some games still manage to run a bit smooth and some (like minecraft) and almost unplayable. My score Wei for "office for Windows Aero performance" used to be a 6.7 now it is a 5.9, my friend who has the same laptop just got his mother and graphic card replaced because appearently it it overclocked and damaged, I havnt overclocked mine and I always keep mine on a cooling block. Can someone help me please?

    OH THANK GOD! I thought that I have fried my graphics card as my friend. I've just updated to 314 nvidia drivers and all erros and glitches seem to have disappeared and my score for Windos Aero is back to 6.7

  • My my D7100 nef files won't import, whats wrong with lightroom 5.  This just started happening

    Why my my D7100 Nikon NEF files won't import to lightroom 5.  I have updates!

    Thank you seanmcfoto. I import direct to LR and not via the Nikon software. So I finally got to work. I imported a test through apples picture Capture photo and then after I did it I tried to import this NEF file in LR and it worked. So then I tried the rest of the photos directly from my camera to LR. For some reason, it works now. I wish I knew why he had this glitch. Thanks for your reply.

Maybe you are looking for

  • With the help of Club running on the Nike watch +.

    Hello This is something I have tried to work for a while and have not yet been able to find an answer. At the moment I use Nike + management club on my iPhone to follow the tracks that I find that gps is better than just using the application of the

  • Send videos with 'Messages '.

    I used an iPhone 5 c for a couple of years now and love it!  However, when I receive a video of my daughter-in-law (who also uses an iPhone 5 c) in a text message, if not more than 25 seconds he gets narrowed down and degraded. Why? I noticed on the

  • Impossible to install Hauppauge Nova USB DVB - T stick on Ubuntu

    I can't install my nova Hauppauge DVB - T USB stick.I installed ubuntu linux help all the heathsThe update of the firmware not find heaths and stopped.Please can help me.

  • Microsoft family safety

    Security for the Microsoft family reporting to the mother of the boy I babysit FACEBOOK 50 pages of reports. It has never been to facebook or heard of him. She thinks he's there, but I'm with him and know that he is not.

  • Factory restore problem

    I had a problem of partition, that I am not well read this but I used to be able to do a factory restore. In fact, I did one around 2010 and after that Feuary not go. I can't create a set of factory retore because vista says I did.  It will not read