I would like to make my phone to use it for any network?

I recently purchased a new phone and I like to be able to use it for any network.  At the moment is contract.  But I am sure there is something apple team could help me. 

Hi there if you could ask the apple team I m sure they would be happy to help.
But I was in the same situation as you are right at the moment. I was on an optus contract and wanted to use other networks. But in my case I couldn't they couldn't help me and I had to wait for the full two years to be over before I could use a different network.
You could try to ask the apple team this is just a suggestion.

Similar Messages

  • I have a MacBook Pro running Lion. I need to use Lion to run my Dragon. I would like to partition my drive to use Maverick for everything but the dictation software. I'm a new pie to apple

    I have a MacBook Pro running Lion. I need to use Lion to run my Dragon. I would like to partition my drive to use Mavericks for everything but the dictation software. I'm a newbie to apple

    To resize the drive do the following:
    1. Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    After the main menu appears select Disk Utility and click on the Continue button. Select the hard drive's main entry then click on the Partition tab in the DU main window.
    2. You should see the graphical sizing window showing the existing partitions. A portion may appear as a blue rectangle representing the used space on a partition.
    3. In the lower right corner of the sizing rectangle for each partition is a resizing gadget. Select it with the mouse and move the bottom of the rectangle upwards until you have reduced the existing partition enough to create the desired new volume's size. The space below the resized partition will appear gray. Click on the Apply button and wait until the process has completed.  (Note: You can only make a partition smaller in order to create new free space.)
    4. Click on the [+] button below the sizing window to add a new partition in the gray space you freed up. Give the new volume a name, if you wish, then click on the Apply button. Wait until the process has completed.
    You should now have a new volume on the drive.
    It would be wise to have a backup of your current system as resizing is not necessarily free of risk for data loss.  Your drive must have sufficient contiguous free space for this process to work.

  • I would like to make a employeemis with using java, what the eror?HELP!

    Create a class named Employee. Includes data members for Employee class :
    Data member     Data type
    Employee id     String
    Employee name     String
    Icno     String
    Gender     Char
    Date of birth     String
    Address     String
    Commencing Date     String
    Department     String
    Position     String
    Salary     Double
    Include any relevant methods for example constructor that can perform initialization for all data fields, accessor methods that return each of data field values and mutator method to set values into the data fields. Use a constructor to set each Employee id to 99999 upon object creation.
    Write another java application named EmployeeDb. Declare an array of three Employee objects.
    Your program should be able to perform the following functions:
    (a)     Prompt user to enter three Employees� information from the console and store data in an array
    (b)     Search an employee by name.
    (c)     Display all employee information by using a loop.
    This cannot save file totext file.
    So, this is my coding, i try many times but cannot to do search and display..why? who can help me solve it?
    Coding:
    import java.io.*;
    class Employee{
         private int id;
         private String name;
         private String icno;
         private char gender;
         private String dob;
         private String addr;
         private String comdate;
         private String dept;
         private String post;
         private double salary;
         // constructors
         public Employee (int a, String b, String c, char d, String e, String f, String g, String h, String i, double j){
              id = a;
              name = b;
              icno = c;
              gender = d;
              dob = e;
              addr = f;
              comdate = g;
              dept = h;
              post = i;
              salary = j;
         // overloading constructor
         public Employee (int a){
              id = a;
         // setter methods
         public void setID (int a){
              id = a;
         public void setName (String b){
         name = b;
         public void setIcno (String c){
         icno = c;
         public void setGender (char d){
         gender = d;
         public void setDob (String e){
         dob = e;
         public void setAddr (String f){
         addr = f;
         public void setComdate (String g){
         comdate = g;
         public void setDept (String h){
         dept = h;
         public void setPost (String i){
         post = i;
         public void setSalary (double j){
         salary = j;
         // getter methods
         public int getID(){
              return id;
         public String getName(){
              return name;
         public String getIcno(){
              return icno;
         public char getGender(){
              return gender;
         public String getDob(){
              return dob;
         public String getAddr(){
              return addr;
         public String getComdate(){
              return comdate;
         public String getDept(){
              return dept;
         public String getPost(){
              return post;
         public double getSalary(){
              return salary;
         // other methods
         public void displayEmployee(){
              System.out.println("ID          : " +id);
              System.out.println("NAME          : " +name);
              System.out.println("ICNO          : " +icno);
              System.out.println("GENDER          : " +gender);
              System.out.println("DOB          : " +dob);
              System.out.println("ADDRESS     : " +addr);
              System.out.println("COM DATE     : " +comdate);
              System.out.println("DEPT.          : " +dept);
              System.out.println("POST          : " +post);
              System.out.println("SALARY          : " +salary);
    /* implementation class */
    public class EmployeeMis{
         static Employee emp[]=new Employee[3];
    static int recNo;
    static int indexNo;
         public static void main(String [] args) throws Exception{
              EmployeeMis mis =new EmployeeMis();
              BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in));
              int opt;
              recNo =1000;
              do{
                   mis.mainMenu();
                   opt=Integer.parseInt(stdin.readLine());
                   switch (opt){
                   case 1     : mis.addEmployee(); break;
                   case 2     : mis.srcEmployee(); break;
                   case 3     : mis.dispEmployee(); break;
              }while(opt !=0);
              System.out.println("END OF SYSTEM");
              System.out.println("THANKS YOU");
         public void mainMenu(){
              System.out.println("\n");
              System.out.println("Main Menu");     
              System.out.println(" [1] Add Employee");
              System.out.println(" [2] Search Employee");
              System.out.println(" [3] Display Employee");
              System.out.println(" [0] Exit system");
              System.out.print("Enter selection : ");
         public void addEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\t\tADD Employee");
              System.out.println("\t\t+++++++++++++");
              System.out.println("\n\n");
              recNo++;
              emp[indexNo] = new Employee(recNo);
              System.out.println("New Employee ID " +recNo );
              System.out.print("Enter Name " );
              name = stdin.readLine();
              System.out.print("Enter IC No " );
              icno = stdin.readLine();
              emp[indexNo].setID(recNo);
              emp[indexNo].setName(name);
              emp[indexNo].setIcno(icno);
              indexNo++;
         public void srcEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              char pause;
              int i;
              int found = -1;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\tSearch Employee");
              System.out.println("\t==============");
              System.out.print("Enter ID " );
              id = Integer.parseInt(stdin.readLine());
              for(i =0; i < emp.length; i++){
                   if (id == emp.getID())
                        found = i;     
              if (found < 0 )
                   System.out.println("\n\n\t\t Record Not Found \n\n");
              else{
                   System.out.println("Name "+emp[found].getName() );
                   System.out.println("IC No "+emp[found].getIcno() );
         public void dispEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              int i;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("t\tDisplay Employee");
              System.out.println("\t\t=============");
              for(i =0; i < emp.length; i++){
                   System.out.println("ID "+emp[i].getID() );
                   System.out.println("Name "+emp[i].getName() );
                   System.out.println("IC No "+emp[i].getIcno() );     
                   System.out.println( );     
    What the error exactly? Or someone have other method can write? Please help me.. thank you

    What do you mean, what's the error? That's for you to tell us. Did you try to compile it and get some error messages? Or do error messages happen when you run it? Or does it just not do what you hoped it would? In any of these three cases, you should be able to copy and paste any error messages here, or tell us what you don't like about its behaviour.
    It's impossible for us to run that code, even if we wanted to -- which we don't. You didn't post it in the CODE tags and so it's mangled and unreadable.

  • I would like to make a photo I have available for others to view on the web. How?

    I have a photo that I would like a company to see so they might help me find a duplicate. Is this possible?

    See how to do this in AppleMan1958's User Tip here:
    https://discussions.apple.com/docs/DOC-3231
    Be sure to watch his excellent video tutorial.
    Unfortunately, iMovie '11 (which I assume you are using) doesn't have a feature that allows you to capture a still frame for use ouside the app. You can of course create still frames for use within the app. As AppleMan describes, MPEG Streamclip is the tool of choice for what you wish to accomplish.
    John
    Message was edited by: John Cogdell

  • HELP!  I subscribed to imatch on my mac so that I could access the songs anywhere with my iphone.  However since I live in a rural community I would like to make playlists that always stay on my phone in case I don't have service.  Not sure how.

    HELP!  I subscribed to imatch on my mac so that I could access the songs anywhere with my iphone.  However since I live in a rural community I would like to make playlists that always stay on my phone in case I don't have service.  Not sure how.

    I have the same issue.  While I am sure your solution would work, my playlist has over 6,000 songs and hiting every song to download it is not very practical.  Is there another way?
    I am looking to have a subset of my music physically on my phone so that I can play it without internet access, but have access to the entire library when I do have internet access. 

  • New 4s, do I have to download itunes onto this phone. I would like to make one or more of my songs as a ringtone

    new 4s, do I have to download itunes onto this phone. I would like to make one or more of my songs as a ringtone

    iTunes is already on your iPhone as part of iOS.
    Songs and ringtones are very different.  They are differently formatted.  You need to do a conversion to create a ringtone from a song.  That is best done on your computer.  If you have a Mac, you can use GarageBand to do it.  If you have a Windows PC, you would need some utility on your computer.

  • I currently have a DROID RAZR M and I'm 1 year into my 2 year contract.  Since the Kitkat update, the phone won't stay charged and it's very buggy.  I know this is not Verizons fault but it's also not mine. I would like to change my phone to an iPhone 5s

    I currently have a DROID RAZR M and I'm 1 year into my 2 year contract.  Since the Kitkat update, the phone won't stay charged and it's very buggy.  I know this is not Verizons fault but it's also not mine. I would like to change my phone to an iPhone 5s and keep my same plan but switch to the Edge program. Is this possible? I don't think I should have to pay an early termination fee or anything like that since my phone has become almost unusable. I know under normal circumstances you have to wait 2 yrs to upgrade but due to the update and the poor service I'm now getting I hope Verizon can make an exception. Thank you.

    How recently did you switch?  If it's less than 60 days, then Verizon simply reinstates your previous account.  The fact that you were on the EDGE plan and mailed the devices back, and they apparently are somewhere in the system, could cause complications, and it might just work out that you just go back on the same plan and they set you up with the same devices.  I'm not sure how it will go - but since you are still being billed for the devices... 

  • I would like to disable the phone jack for my mac book pro, it is a disappointment that this feature is not currently accessible . hopefully it will be with the following os x system software up date but until then is there anyone that could help me ?

    I would like to disable the phone jack for my mac book pro,
    it is a disappointment that this feature is not currently accessible .
    Hopefully it will be added with the following os x system software up date.
    until then is there anyone that could help me ? please and thank you ...

    John Galt wrote:
    Have you checked System Preferences > Sound > Output?
    Or are you interested in a phone modem adapter?
    http://www.amazon.com/Apple-MA034Z-External-V-2-Modem/dp/B000C6TLDO/
    ds store wrote:
    It's a Ethernet port, not a phone jack.
    Two good points, in which case I believe the ethernet port can be disabled, (it can on my Pro);
    System Preferences> Network> Ethernet>.........
    Highlight the Ethernet option and click the gear icon at the bottom of the panel. There should be an option to, Make service inactive.....

  • Fall detector for iWatch, is there one.  If not I would like to make one (I'm an IT grad student).  Can anyone help

    Fall detector for iWatch, is there one.  If not I would like to make one (I'm an IT grad student).  Can anyone help

    All the elements exist for an app for persons with health issues:
    1.  Watch can sense rapid change in position such as a fall.
    2.  Watch can sense extended little to no movement after fall.
    3.  Watch has ability to monitor heart rate.
    4.  Watch has ability to make and receive phone calls from iPhone, provided phone is nearby.

  • How can i create my BC featured product list in to a slide show for multiple products in one row. i have products aligned in a row i just would like to make it a slide show of the multiple (20) products.

    i have products aligned in a row already using custom css.i just would like to make it a slide show of the multiple (20) products in the one row.
    i am using the featured product module from the development section of business catalyst. i would love to display as many new products as possible in one row of products. so i can just click a arrow left button and scroll through the products.
    holy-shippers.businesscatalyst.com is the site i am mentioning.

    Hello,
    Aside from any custom implementations that may be suggested by any other members, you could also consider using some hero-type slider like those found on our new responsive templates, and have each web-app item contain a product.
    Kind Regards,
    Alex Pavelescu

  • HT4009 I would like to make an in app purchase using my $20.00 credit that I have on I tunes. I am using my  i phone5. It does not give me the choice of using the credit that I have, only a credit card. How can I use the credit for the purchase??

    I would like to make an in app purchase using the $20.00 credit that I have on itunes. I am using my i phone5. It does not give me the option of using the credit that I already have, only of using a credit card. How can I use the credt that I already have instead of a credit card?

    Is Settings > General > Restrictions > In-App Purchases: ON (green)?
    Some In-App Purchases works only with credit card.

  • I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    You can create a new Apple ID and password for the iPad but none of the content downloaded using the Apple ID associated with the four devices will be available on the iPad.
    Create new >   Apple - My Apple ID
    It's not possible to use two passwords with one Apple ID.

  • Hello! I lost my iphone like a month ago, well I reported that phone as lost with my icloud account, now I got a new iphone and I would like to know if I can use that same icloud account with this new phone? The old one will stay reported?

    Hello! I lost my iphone like a month ago, well I reported that phone as lost with my icloud account, now I got a new iphone and I would like to know if I can use that same icloud account with this new phone? The old one will stay reported?

    Thank you.  The old one will stay reported?

  • I'm going to another country for a year and I would like to unlock my phone to take another sim other than my carrier. My contract with my present carrier is finished yet they still wouldnt unlock the iphone 4 for me. How can I be able to unlock it?t

    I'm going to another country for a year and I would like to unlock my phone to take another sim other than my carrier. My contract with my present carrier is finished yet they still wouldnt unlock the iphone 4 for me. How can I be able to unlock it?t

    Only the carrier to whom the device is locked can unlock it.
    If you do not meet their requirements or they do not offer unlocking there is no official way to unlock the device.
    Who is your carrier?

  • My iPhoto Library is on an EHD, I would like to make a backup on a second EHD

    My iPhoto Library is stored on an Seagate 1TB external hard drive (which is also my Time Machine or automatic backup), not on my MacBook Air. That means that I always carry the external hard drive wherever I go to access my photos (and to keep backing up my documents). I travel quite a bit so just in case the Seagate stops working, I would like to make a backup of my iPhoto library on a second EHD to leave at home.
    I have another Seagate 500GB which I used in the past on a wifi for my iPad, which also contains some photos straight from my camera (that means they did not get the 'iPhoto treatment' as I don't want to clog up the iPad through Airdrop).
    There is still plenty of room on this Seagate 500GB (300GB free) for an extra iPhoto Library backup. It should be simple enough but so far I have been unable to understand how. Clear steps to how to do it would be much appreciated.
    Many thanks!
    pilot03

    To check how the drive is formatted, connect it and run Disk Utility (in your Utiilty folder). Click on the drive's icon. (You'll see to icons, the top one is the drive itself and will have a name including the manufacturere's name and a second one is indented. Click on the top on. Now look in the bottom right corner of the DU window. WHat you want to see is: Partition Map Scheme : GUID Partition Table
    If you don't the drive should be repartitioned. Click on the partition tab, Click on Current & select 1 partiton, click on options and select GUID. That will erase the drive. Now Click on the indented icon, click on the erase tab and make sure you see MacOS Extended (Journaled) next to the Format label. If not, click on the popup menu and select it. Then erase. Now the disk is ready.
    If it is formatted for Mac already, after mounting the drive select its icon and select Get Info from the File menu. Look at the very bottom of the long dialog box. You should see a list of permissions, your user name should be listed and your permissions should be Read & Write. Or there might be a checkmark next to a label called Ignore Ownership. That should be checkmarked.

Maybe you are looking for