Can't change DVD region for the last time?

I wish to change the DVD region setting on my emac and have one more left from the 5 changes allowed but when I try to change it, it comes up with an alert along the lines of "There was a problem changing the region on your drive." How can I resolve this? It is a newish 1.25ghz Superdrive model.
PS. Someone commented here that perhaps the count of how many changes have occurred is incorrect? If so, how can I fix that? http://discussions.apple.com/thread.jspa?messageID=2279627&#2279627
Also, the error doesn't seem to suggest I need to use a single-region DVD to set the new region as per here: http://docs.info.apple.com/article.html?artnum=31304

I also am having this problem, was told to restart and hold down Alt Apple, P & R at the same time and wait for 3 dongs, and try to change region again, but did not work, I am stuck on region 1 need to change to region 2, the same problem it will be the last change.

Similar Messages

  • How can I put something in for the last Wednesday of every month

    How can I put something in for the last Wednesday of every month

    I don't believe there is such a custom repeat option with the iPhone's Calendar app, but if you are syncing calendar events with a supported calendar app on your computer or syncing calendar events over the air with an email account that supports it with an option to create such a custom repeating event with the online calendar, set up the custom repeating event there.

  • My Apple ID and rescue email are reversed. How can I change them both at the same time

    My Apple ID and rescue email are reversed. How can I change them both at the same time?

    I'd already used this standard tool (exhaustively!), but for the problem encountered it operated in Catch 22 mode - you had to do two things but neither order was permitted. I did find an answer eventually, but am not sure what it was I did that solved it! Thanks, anyway.

  • For the last time. What's wrong in these code ? please let your opnion.

    I can'nt get the data from the list in <c:forEach> tag, are you able to see the possible error?though the jsp page is returned, it is all in blank.
    the codes are these:
    -my conecction and where i get my list
    package teste;
    public class Data {
        Connection con;
        Detalhes detalhes;
        int codigo;
        ArrayList  list;
        public Data()throws Exception {       
            try {
                Class.forName("org.gjt.mm.mysql.Driver");
                con = DriverManager.getConnection("jdbc:mysql://127.0.0.1/Loja?user=root&password=131283");            
            } catch (Exception ex) {
                throw new Exception(" Database not found!!" +
                    ex.getMessage());
        public void remove() {
            try {
                con.close();
            } catch (SQLException ex) {
                System.out.println(ex.getMessage());
        public void setCodigo(int codigo){
            this.codigo = codigo;
        public Detalhes getDetalhes(){
            try {
                String selectStatement = "select * from produto where codigo="+codigo;
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                ResultSet rs = prepStmt.executeQuery();
                while(rs.next())
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));          
                prepStmt.close();
            }catch(Exception e){
           return detalhes;
        public ArrayList getList(){
            try {
                list = new ArrayList();
                String selectStatement = "select * from produto";
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                ResultSet rs = prepStmt.executeQuery();
                while(rs.next()){
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));          
                     list.add(detalhes);
                prepStmt.close();
                Collections.sort(list);
            }catch(Exception e){
                System.out.println(e.getMessage());
            return list;
    }    - the object where i store and show the data through the methods
    package teste;
    public class Detalhes {
        private String titulo;
        private String autor;
        private Double preco;
        private int codigo;
        public Detalhes(String titulo, String autor, Double preco, int codigo) {
            this.titulo = titulo;
            this.autor = autor;
            this.preco = preco;
            this.codigo = codigo;       
        public String getTitulo(){
            return titulo;
        public String getAutor(){
            return autor;
        public Double getPreco(){
            return preco;
        public int getCodigo(){
            return codigo;
    }-my inicial context class
    package teste;
    import javax.servlet.*;
    public final class ContextPage implements ServletContextListener {
        private ServletContext context = null;
        NewClass bookDB;
        public void contextInitialized(ServletContextEvent event) {
            context = event.getServletContext();
            try {
                bookDB = new NewClass();
                context.setAttribute("bookDB", bookDB);
            } catch (Exception ex) {
                System.out.println("Couldn't create bookstore database bean: " +
                    ex.getMessage());
        public void contextDestroyed(ServletContextEvent event) {
            context = event.getServletContext();
            NewClass dados = (NewClass) context.getAttribute("bookDB");
            if (dados != null) {
                dados.remove();
            context.removeAttribute("bookDB");              
    }- my jsp page
    <p><b><h1>Resultado:</h1></b></p><br>
    <jsp:useBean id="dataSource" class="teste.Data" scope="page" >
           <jsp:setProperty name="dataSource" property="codigo" value="${param.theCode}"/>          
    </jsp:useBean>
    <c:forEach var="book" items="${dataSource.list}">
        <p><b><h1><font color="red">${book.titulo}<h1></b></p>        
        <p><b><h1><font color="red">${book.autor}<h1></b></p>        
        <p><b><h1><font color="red">${book.preco}<h1></b></p>        
        <p><b><h1><font color="red">${book.codigo}<h1></b></p>        
    </c:forEach>
    <c:out value=${bookList}/>

    First of all: Don't try to force a response by using a subject "For the last time ..."
    Independent of your original problem
    There are a lot of things which are not correct in your code.
    // i would never use the user root to access a database :-(
    con = DriverManager.getConnection("jdbc:mysql://127.0.0.1/Loja?user=root&password=131283");
    public Detalhes getDetalhes(){
            PreparedStatement prepStmt = null;
            ResultSet rs = null;
            try {
                // use place holders when working with prepared statements
                //  String selectStatement = "select * from produto where codigo="+codigo;
                 String selectStatement = "select * from produto where codigo= ?" ;
                PreparedStatement prepStmt = con.prepareStatement(selectStatement);
                prepStmt.setInt(1,codio);
                rs = prepStmt.executeQuery();
                while(rs.next())
                     // use colomn names rather than indices
                     detalhes = new Detalhes(rs.getString(1), rs.getString(2), rs.getDouble(3), rs.getInt(4));
                rs.close();
                rs = null;
                prepStmt.close();
                prepStmt = null;
            // don't catch Exception
            }catch(SQLException sqle){
                // try and forget - is allways very useful
                Logger.getLogger(this.class.getName()).log(Level.SERVE, sqle.getMessage(), sqle);
            } finally {
               // close prepared statements and result sets within finally blocks
               if (rs != null) {
                  try {
                     rs.close();
                  } catch (SqlException sqle) {
                     Logger.getLogger(this.class.getName()).log(Level.FINEST , sqle.getMessage(), sqle) ;
               if (prepStmt != null) {
                  try {
                       prepStmt.close();
                  } catch (SQLException sqle) {
                      Logger.getLogger(this.class.getName()).log(Level.FINEST , sqle.getMessage(), sqle) ;
           return detalhes;
    public final class ContextPage implements ServletContextListener {
        // don't use a member field here the context is passed within the event.
        private ServletContext context = null;
        // makes no sense to save it as member field.
        // what's NewClass ?
        NewClass bookDB;
        public void contextInitialized(ServletContextEvent event) {
            context = event.getServletContext();
            try {
                bookDB = new NewClass();
                context.setAttribute("bookDB", bookDB);
            } catch (Exception ex) {
                System.out.println("Couldn't create bookstore database bean: " +
                    ex.getMessage());
        public void contextDestroyed(ServletContextEvent event) {
            context = event.getServletContext();
            NewClass dados = (NewClass) context.getAttribute("bookDB");
            if (dados != null) {
                dados.remove();
            context.removeAttribute("bookDB");              
    <%-- I don't see where a bean with id dataSource and scope page is set
             if the bean does not exist a new bean will be created
             nobody ever calls the remove method of your Data bean
             what's param.theCode ?
    --%>
    <jsp:useBean id="dataSource" class="teste.Data" scope="page" >
           <jsp:setProperty name="dataSource" property="codigo"
    value="${param.theCode}"/>          
    </jsp:useBean>
    }So now you've got a lot of work.
    If you have fixed all the problems I've told you and you have still problems you can come
    back and ask additional questions.
    andi

  • Project Managers to know when a task has been updated for the last time

    Hi,
    I would like know if there is any timestamp feature in Project Server 2007, so that it can be possible for Project Managers to know when a task has been updated for the last time.
    Thanks in advance

    Hi,
    If you are using the My Tasks to drive the task updates then you can use the 'Applied Requests and Errors' available under 'Go To' in the Task Updates area. Here the PM can find when requests have been approved and how many updates he/she received for a
    particular task (by clicking the task name) etc.
    Hope this helps
    Paul

  • TS2446 I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Date when the cube was filled with data for the last time

    Hi!
    We are using a SAP BW System and on top of it BOBJ for reporting. Within BEx Web Application Designer, it's very simple to access the data, when the cube was filled with data for the last time. Is it possible to access this information within BOBJ, too?
    Thanks for your help!
    Greetings
    Stefan

    Hallo Ingo,
    thanks for your answer. That was exactly what we were looking for.
    We will have to think about a workaround now.
    Greetings
    Stefan

  • HT204053 how can i change my account for the messages app o my mac? I have my school email and I do not know how that got there i just want to use my apple or iCloud account.

    im having trouble changing my account for the messages app on my mac. im not a mac wiz

    From the menu bar, select
    Messages ▹ Preferences ▹  Accounts
    Sign out of the account. Add another one and sign in.

  • Can I purchase Photoshop CS for the 1st time through the Creative Cloud?

    I currently have Lightroom 4 and wish to upgrade to LR5.  I would also like to purchase Adobe PS CS6 for the 1st time.  I have never owned a PS CS product, so I'm wondering if I can buy into the Creative Cloud program for $9.99 or do I need to already own some version of PS CS?

    You can get the PS CS6 version from CC too :
    Downloading CS6 applications from Creative Cloud
    Creative Cloud Photography plan : Adobe Creative Cloud
    Regards
    Rajshree

  • Equium - How can I change DVD region?

    even thought it says I have 1 more change available. I have a Pioneer DVD-rw dvrkd08a ata device and it tells me it needs a disk of region 2 origin and to insert the disk and try again,but I just go around in circles.
    How do I make that one last change back t region 2?

    Hi
    The DVD region is limited and can be changed 4 or 5 times
    If the option is grayed out then this would mean that you have already changed this settings view times and now its not possible anymore.
    In my experience its not possible to disable this limitation
    Of course there are many different information about this and many people try to overcome this by updating the firmware using some pirate and not official software but I would not recommend this because this could damage the ODD
    In worst case the ODD will not read and write ant disks

  • Changing DVD Region in the UK - recent convert to Macs

    Tried to watch a DVD using Front Row, and it told me to change the region of the DVD player.
    Any help on how to do this much appreciated for a newbie
    Thanks

    Does this article contain anything useful?
    (10770)

  • How can i change my bank account cos last time i used my credit card now i want to use my debit card sgain

    How can i change my bank account cos i used my credit card last time now i want to use my debit card again

    iTunes Store: Accepted forms of payment
    http://support.apple.com/kb/HT5552
    Changing Account Information  >  http://support.apple.com/kb/HT1918
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • ACDSee has failed me for the last time.  What is a good image viewer?

    Hi Photo gurus,
    I've been using ACDSee for years. But I'm getting increasingly tired of it because it crashes often and seems to hang a lot. I'm curious to know what you people use as an image sorter, contact sheet maker and quick viewer? I'd prefer a stand alone program instead of bridge, because I need a cost effective solution.
    Thanks,
    Stan

    Hmmm, "hatred:
    i ...intense dislike or extreme aversion..."
    does indeed describe my feelings toward the entity that is MS. After an MBA that hopefully imparted an awareness of the right and wrong ways to compete, I have lived a lifetime watching MS's anti-competitive behavior impact the tech world. The US Supreme Court (effectively negated by actions of the GW Bush Administration) and the EEU both also sanctioned against MS for the illegal anti-competitive practices that MS made a successful business model of.
    Insofar as is feasible, I choose not to do business with the Enrons and the Microsofts of the world.
    And I also simply
    i dislike
    the OS, even though the nature of my work forces me to deal with it daily.

  • How can I login to iTunes for the first time with apple ID which already exists, without my credit card

    I`ve got an appleID. And now I want to enter iTunes Store. But it asks me to write my credit card number(Visa/MasterCard/Amex) But I don`t have such a card. So I can`t log in. How can I log in without this card???

    Hi 6323540,
    In order to use an Apple ID without a credit card in the iTunes store, you will want to change the payment information associated with that Apple ID. See the guidelines in this article -
    Change or remove your payment information from your iTunes Store account (Apple ID)
    http://support.apple.com/kb/HT1918
    If you have not yet created an Apple ID and went to create one without a credit card, follow the steps in this article -
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card
    http://support.apple.com/kb/HT2534
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • For the last time, how do I get rid of Facemoods? I hate it!

    There is a facemoods bar that is so distracting that I cannot do a search for anything else. I am ready to leave Firefox. I see from a search for a solution that I am not the only user who is disgusted with facemoods. It is juvenile and irritating.

    You have given me no solution understandable to a non geek. I will just go to Internet explorer and try my luck.

Maybe you are looking for

  • Battery heating up

    Why is it that my battery when either charging or talking on it heats up so hot that I can not use it.  I took it to 3 Verizon stores and each one said it's a bad battery and i need to buy a new one.  After 3 batteries, it still heats up.  None of th

  • PL SQL block - Check for empty file

    Hello, I need help in writing pl sql code to check a file to verify if it has 0 records (file size = zero kb.) In a preceding pl sql block, I am performing a SELECT on data and writing it to a file. If that file is empty/has no records, then I would

  • Learn ABAP for HANA

    Hi I am interested in knowing more and learning about SAP HANA and ABAP for HANA. I found a few links on SDN, but am not sure where to start from. Is there any link where I can start learning about it from basics? Thanks

  • Edit first menu item in Xcode?!

    Hello, Why is the first menu item of Xcode always the identifier? No matter if I change it, if I run it, it's the program identifier: Link to a screenshot, because it too large to add it inside this question: https://sites.google.com/site/app2icon/Sh

  • Vista - Sleep FINALLY fixed, still annoying Random Shutdowns

    Ok, they FINALLY fixed it so the Mac Pro wakes from sleep in Vista RC1 with the recent EFI update, now they need to fix the Random Shutdowns. These occur as if you were telling your system to shutdown, I do not suspect the power supply because it is