How I can make a request to send to apple workshop?

how I can make a request to send to apple workshop?

Go to this web page:
http://www.apple.com/support/ipad/service/faq/
Choose your country as appropriate and follow the instructions under "how do I obtain service".
Regards.

Similar Messages

  • How I can make a call on my iPad 3G

    I buy a secondhand iPad first generation with 3G but how I can make a call ?

    Also forget about sending SMS text messages - the iPad internal modem is only used for cellular data.
    Can be a real pain when using prepaid SIMcards that require sending SMS text messages to top up
    3G prepaid internet on an iPad

  • How i can make my new ipad as a mobile phone?

    How i can make my ipad as a mobile phone?

    There are VOIP (Voice Over Internet Protocol) apps on the app store that will let you make voice calls on any internet connection.  Some are free, some have fee's associated with them.  There are also apps that allow you to send SMS/MMS messages, most are free, some have fees.  There are also apps that have VOIP and messaging capabilities in one app.  Search around and find what suits your needs.

  • Is it possible to tell me how i can make program in labview that take pixels of black and withe image and give coordinate of black or white pixels back to me.

    hello everybody
    is it possible to tell me how i can make program in labview that take pixels of black and withe image and give coordinate of black or white pixels back to me.
    Solved!
    Go to Solution.

    Here's a slightly simpler version.
    (Depending how you want to process the output, you might not need to traspose and/or reverse. Boolean to 0,1 works directly on the 2D array if needed )
    amkamyab wrote:
    it is good. i could enter 1bit image in and show it in array. now i want to take pixels coordinates. i meen i want to have (x,y) of each pixel to send it pixel coordinate to another program i wrote for steppers motor.
    Can you be a bit more specific on how the output is supposed to look like? Initially you wrote "black or white", and since all pixels are either black or white, do you want to send all pixels? In what format? In what order? Please clarify?
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    BW-Pix.png ‏8 KB

  • HT2736 How i can make a gift card code

    How i can make a goft card code

    Your question is rather unclear. Can you please explain in more detail what it is you wish to accomplish? If you are not comfortable writing in English, try posting in your native language.
    Regards.

  • How I can make a folder contain pictures &video an...

    sorry if there are mistakes
     i have n95 v 31.0,017
     how I can make a folder in SD card contain pictures &video and I dont want them  appear in studio
    I dont want to use a files browser  and hide my files and i dont want  to use an application  to encrypt them because  I just  want to sort my pictures in a folder  and my video in afolder.
    thank you  
    Solved!
    Go to Solution.

    You can also try to remove them from the images folder and the  My videos folder, because this is where the Gallery will look for pictures and videos, and put them in another folder then reorganize them in sub folders within your new folder
    Show your appreciation. Hit that kudos button real hard

  • How i can make a backup without separate hdd?

    How i can make a backup without seperate hdd?

    how i can partition the hd? please step by step...
    today it's my first apple-day ... i was 18 years windows user
    While I agree with everyone else, get a second disk and backup to that disk, I will point you in the directory of partitioning.
    Applications -> Utilities -> Disk Utility
    Disk Utility may or may not be able to carve a new partition out of your existing partition, depending on whether the end of the current partition is unused so the current partition can be reduced in size and a new partition added.
    It may be necessary to use an external disk, clone your internal disk using SuperDuper or Carbon Copy Cloner (both free to use when creating a full clone), then partition your internal disk, and finally restore the external clone to the internal disk again using SuperDuper or Carbon Copy Cloner.
    If you do not want to get a 2nd disk, then consider using an on-line service such as CrashPlan, Carbonite, Mozy, etc... for the files you absolutely cannot aford to loose.

  • How i can make valid java appliacation and how

    i am novice in java and i want to make good and valid application that i can run from server any body can tell me how i can make this or any link for any project online or build on net with deployment details
    A.R

    JAXP api can be used to read xml from java
    Cheers :)

  • How i can make in the same action 2 condition (check the exemple down)

    how i can make in the same action 2 condition (check the exemple down)
    this is an example and I really thank you for helping me(any body plz)
    http://www.2shared.com/file/DPpdgC_a/Exemple_Edge.html

    1. make each rectangle a symbol  (Symbol_1 and Symbol_2) and uncheck autoplay()
    2. Delete your code on the click event and put the following code in compostion ready:
    var toggle=true;
    function btnPlay(){
              if (toggle){
                        toggle=false;
                        sym.getSymbol('Symbol_1').play();
              else{
                        toggle=true;
                        sym.getSymbol('Symbol_2').play();
    sym.$('Ellipse').click(function(){
              btnPlay();

  • How i can make  my own connection in java source of a jsp page

    How i can make my own connection in java source of a jsp page (How to get connection from JNDI datasource address) ?
    imagine that i have a rowset in a web page , now i want to do some operation using
    plain JDBC , so i will need a connection object.
    I tried to get one of my rowsets connection but it return null ?
    what is best way to retrive a connection from JNDI datasource that we define for our project?
    for example if i have
    myRowSet.setDataSourceName("java:comp/env/jdbc/be");
    in web page constructor
    now i want a pure connection from the same datasource ? JNDI
    Thank you

    It is not hard to get your own connection from datasource.
    in your case you need to do like the the following code.
    i provide sample to show you how to catch the exception and create an statement .
    Connection con =null;
    try{
    InitialContext ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/be");
    con = ds.getConnection();
    java.sql.Statement st =con.createStatement();
    }catch(SQLException sqlex){
    sqlex.printStackTrace();
    sqlex.getNextException().printStackTrace();
    catch(NamingException nex){
    nex.printStackTrace();
    hth
    Masoud kalali

  • How I can make actions for write the file name in front image

    Hello All
    How I can make actions for write image(file)  name in front the image automatically in photoshop cs3.
    Thanks

    This script tutorial might be helpful:
    http://av.adobe.com/russellbrown/CaptionMaker_SM.mov

  • How we can make CQ dialog box movable on page like sidestick?

    Hello All,
    How we can make CQ dialog box movable on page like sidestick.
    Should we have to use any property for that.
    Please tell me if any onw know this ticks.
    Thanks a ton in advance...
    Regards,
    Satish

    You could use dialogMode property configured under cq:editConfig node.
    dialogMode : floating
    http://dev.day.com/docs/en/cq/current/developing/components.html
    This should make your component dialog float and be movable.
    - Ashish

  • How i can make some components visible on comboBox selection change ?

    Hi
    Thank you for reading my post
    how i can make some of form component visible/ invisible when user changed a combobox selected item ?
    can we use partial rendering ?(i just read that ADF support partial rendering)
    thanks

    http://technology.amis.nl/blog/?p=1211

  • How i can make forms read form nls and reports read from anather

    hi evrey one
    how i can make forms read form nls_lang and reports read from anather nls_lang ,
    I think that this property is found in the file format .ini,
    I forgot his name,
    Is there one has found this information,
    pleez share.
    thanks.

    At a minimum, the creation of the TcpClient will need to change its parameter to the name of server you want to use:
    TcpClient tClient = new TcpClient("gmail-smtp-in.l.google.com", 25);

  • How i can make web application by using oracle form6i

    how i can make web application by using oracle form 6i , indetail .
    A.R

    indetail .As Andy Millman might observe, you're having a laugh. This is a big topic, far exceeding what it is reasonable to expect people to help out with in a Forum. Do you not have the 6i documentation?
    OTN has a site for upgarding to web forms. Although it is mainly focussed on moving to 9i/10g a lot of the issues and solutions apply to moving a 6i client/server app to web deployment. For further help there is a Forms.
    Cheers, APC

Maybe you are looking for

  • Custom fields in additional data B not displaying - Sales Order

    Hi gurus, I added some custom fields to the addtional data B tabstrip in sales order screen, but they didn't display. This is in the client's system. BUT in our own system it works perfectly. The screen has been activated. Maybe it's because of the v

  • Is it possible to fill item number on a PO autocreated from PR?

    Hi, I have created a non-catalog PR (i.e. without item number) and then autocreated to PO. On the PO, the item number field is protected. Is it possible for me to fill the item number? Thanks. Regards Leo

  • Servlet on tomcat 4.1.18

    I am facing a problem of running servlets on Tomcat 4.1.18. The problem seems to be in the configuration. In the webapps folder, I created a folder greeting. In that, the WEB-Inf\classes folder has GreetingServlet.class. webapp\greeting has index.htm

  • SSL on Oracle HTTP causes errors in IE 6/7/8

    Hello, We installed new SSL certificate on Oracle HTTP server (Centos, Linux, Oracle 10g) and getting an error in IE 6,7,8: res://ieframe.dll/dnserror.htm#https://... Examining http headers provide following error description: ERROR_INTERNET_SECURITY

  • I can't Save Presets in Premiere CC

    Every time I try to save multiple effects in PPrCC as a preset it never saves all of them just the first one in the stack.  Anybody else experiencing this?