How can i lock my iphone in a way that i won't be able to receive any incoming call nor retreive its information?

How can i lock my iphone in a way that i won't be able to receive any incoming call nor retreive its information?

In the phrase " i wanna be able to reveive the call without being able to answer nor see who is calling" what do you mean by able to receive the call but not be able to answer it or see who is calling?
I do not understanhow you can receive the call but not be able to answer or seee who called. If you do not answer it how can you receive it?

Similar Messages

  • HT4623 how can i lock my iphone

    how can i lock my iphone so no one can ge in it

    i dont have my iphone with me and i forgot find my iphone password

  • How can i reset my iphone to the way i first bought it?

    how can i reset my iphone to the way it was when i first bought it?

    Settings > Messages > iMessage > Off
    Settings > FaceTime > Off
    Settings > iCloud > Delete Account
    Settings > General > Reset > Erase All Content and Settings

  • How can i make my scrollpane in a way that at the opening of a frame it doe

    How can i make my scrollpane in a way that at the opening of a frame it does not scroll down automatically?
    code is below
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.JOptionPane.*;
    import java.io.*;
    import javax.swing.colorchooser.*;
    import javax.swing.filechooser.*;
    import javax.accessibility.*;
    import javax.swing.border.*;
    import java.sql.*;
    public class Signup extends JFrame
         JLabel p1,p2,p3,p4,p5,p6,uid,upass,cpass,fname,sname,hint,sl,ed,age,adr,cit,zip;
         JTextField uname,fnamet,snamet,hintt,adrt,adrt1,city,zipcode;
         JPasswordField upassw,cpassw;     
         JComboBox sex,education,agegr;
         Signup()
         Container c=getContentPane();
         c.setLayout(null);
         c.setBackground(Color.white);
         /** JPanel c = new JPanel();
         c.setBackground(Color.white);
         int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
         int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
         JScrollPane jsp = new JScrollPane(c, v, h); ***/
    p1=new JLabel("Create Your Icafe!ID",10);
         p2=new JLabel("Personal Information");
         p3=new JLabel("User Address");
         p4=new JLabel("Tell Us About Your Hobbiess (Optional) ");
         p5=new JLabel("Tell us something about what you like. This will help us choose the kind of content to display on           your pages.");
         p6=new JLabel("--------------------------------------------------------------------------------");
    uid=new JLabel("User Id");
         upass=new JLabel("Password");
         cpass=new JLabel("Confirmation Password");
         fname=new JLabel("UserName");
         sname=new JLabel("SurName");
         hint=new JLabel("Hint Question");
    sl=new JLabel("Sex");
         ed=new JLabel("Education");     
         age=new JLabel("Age Group");     
         adr=new JLabel("Address");
    cit=new JLabel("City");
    zip=new JLabel("ZipCode");
         uname=new JTextField(10);
         uname.requestFocus();     
         uname.setToolTipText("UserName");
    upassw=new JPasswordField(10);
         upassw.setToolTipText("Password");
         upassw.setEchoChar('*');
         cpassw=new JPasswordField(10);
         cpassw.setToolTipText("Confirmation Password");
         cpassw.setEchoChar('*');
         fnamet=new JTextField(10);
         fnamet.setToolTipText("FullName");
         snamet=new JTextField(10);
         snamet.setToolTipText("SurName");
         hintt=new JTextField(10);
         hintt.setToolTipText("Hint Question");     
    String[] gender={"[Select one]","Male","Female"};
         sex = new JComboBox(gender);          
    String[] edu={"[Select one]","S.S.C","Inter","Graduate","Post Graduate"};
         education= new JComboBox(edu);     
    String[] ageg={"[Select one]","0 - 15","16 - 35","36 - 70","70 - 100"};
         agegr= new JComboBox(ageg);     
    adrt=new JTextField(15);
         adrt.setToolTipText("Address");
         adrt1=new JTextField(15);
         adrt1.setToolTipText("Address");
         city=new JTextField(15);
         city.setToolTipText("City");
    zipcode=new JTextField(15);
         zipcode.setToolTipText("ZipCode");
         p1.setBounds(200,70,160,30);
         uid.setBounds(350,100,160,30);
         uname.setBounds(400,100,160,30);
         upass.setBounds(335,140,160,30);
         upassw.setBounds(400,140,160,30);
         cpass.setBounds(260,180,160,30);
         cpassw.setBounds(400,180,160,30);
         p2.setBounds(200,220,160,30);
         fname.setBounds(330,260,160,30);
         fnamet.setBounds(400,260,160,30);
         sname.setBounds(335,300,160,30);
         snamet.setBounds(400,300,160,30);
    hint.setBounds(315,340,160,30);     
    hintt.setBounds(400,340,160,30);
         sl.setBounds(370,380,160,30);     
         sex.setBounds(400,380,160,30);
         ed.setBounds(335,420,160,30);     
         education.setBounds(400,420,160,30);
    age.setBounds(330,460,160,30);
    agegr.setBounds(400,460,160,30);
    p3.setBounds(200,500,160,30);
         adr.setBounds(340,540,160,30);
         adrt.setBounds(400,540,160,30);
         adrt1.setBounds(400,580,160,30);
         cit.setBounds(370,620,160,30);
         city.setBounds(400,620,160,30);
    zip.setBounds(590,620,160,30);
    zipcode.setBounds(640,620,160,30);
         Font font = new Font("SansSerif",Font.BOLD, 12);
         setFont(font);
         c.add(p1);
    c.add(uid);
         c.add(uname);     
         c.add(upass);
         c.add(upassw);
    c.add(cpass);
         c.add(cpassw);
    c.add(p2);
    c.add(fname);     
         c.add(fnamet);
    c.add(sname);
    c.add(snamet);
         c.add(hint);
    c.add(hintt);     
    c.add(sl);
    c.add(sex);
    c.add(ed);
         c.add(education);
    c.add(age);
         c.add(agegr);
    c.add(p3);
    c.add(adr);
         c.add(adrt);
         c.add(adrt1);
    c.add(cit);
    c.add(city);
    c.add(zip);
    c.add(zipcode);
         setResizable(false);
         //int a=DO_NOTHING_ON_CLOSE;
         //setDefaultCloseOperation(a);
         show();
         setSize(800,500);
    // Border raisedBorder = new BevelBorder(BevelBorder.RAISED);     
         setContentPane(c);     
    public static void main (String arg[])
         try{
         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }catch(Exception s)
         Signup swu=new Signup();

    just try the following:
    jsp.getVerticalScrollbar().setValue(0);after inserting and adding all your components. this will set the vertical scrollbar up to the very first line.
    regards

  • How can I organise the program dashboard the way that it does not open automatically and very quickly other programs?

    How can I organise the program dashboard the way that it does not open automatically and very quickly other programs?
    Thanks for an answer
    Reinhard Voegele
    Switzerland

    If you hold down the option key while in dashboard you can close many of the programs.
    To disable it from opening automatically, or unintentionally:
    1) go to System preferences -> mission control.
    2) Deselect any mouse shortcuts
    3) Remove it from hot corners, if it is active.

  • Just Updated iPhone 3GS to iOS5, Can't receive any incoming calls at all

    Hi, I just updated my phone to iOS5 and now, I'm having these troubles.
    - Can't receive any incoming calls at all
    - The incoming calls directly goes to voice mail greeting
    - No incoming rings & no missed calls alerts
    - Also noticed the incoming text with 4 to 5 hours delays
    - Sometimes 3G network get lost
    The reception (status bar) is good level, can make outgoing calls okay and can send text okay.
    I did try reset the network setting and it seems working a few hours then went back to troubles (mentioned above).
    I've done 3 or 4 times reset but none have been resolved yet.
    Anyone having a same issues?
    I have
    iPhone 3GS with iOS5
    Network with O2 UK
    Thanks,

    After reset "All network settings" a several times, it seems working but few hours later it 's been gone back to troubles again.
    Is this related to iOS5 or O2?
    I've contacted the network carrier several times but no-one yet get back to me.
    Any ideas, please helps.
    Re: iOS5 updated and all incoming calls going straight to voicemail 

  • I have two yahoo mail accounts. I went to bed and both were accessible on my iphone. I woke up and one was not able to receive any mail. I have deleted the account and added it back and changed the password. Still does not work. Any help?

    I have two yahoo mail accounts. I went to bed and both were accessible on my iphone. I woke up and one was not able to receive any mail. I have deleted the account and added it back and changed the password. Still does not work. Any help?

    Download the yahoo email app, if you already deleted and reinstalled the email account and still have issue.
    This is a known issue with Yahoo email account.

  • My iphone was stolen,how can I lock my iphone to stop the thief from using it and pretect my info

    as the title saying~
    PS:If  the thief update the ios,and i locked through FIND MY IPHONE,did it still work?

    If you have Find My iPhone set up and enabled you can remotely lock or erase your lost iPhone. Go to iCloud.com and log in with your iCloud ID you can then select remote wipe.
    Message was edited by: The Huntress

  • HT201303 how can i lock my iphone which is stolen 1hr ago

       please , can you help me to lock my iphone  is stolen 1hr ago i have my iphone serial no

    The only way to locate/disable/erase any lost/stolen iPhone/iPod Touch is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords, especially your Apple ID/iCloud password NOW!
    If your carrier offers Blacklisting & they Blacklist the phone, it will be unusable as a phone.
    If locked with a passcode, and running iOS 7.0, then phone cannot be activated or the passcode removed without knowing your Apple iD/Password. It will be nothing but a useless paperweight.
    If not running iOS 7.0, the phone can be forced into recovery mode & restored.

  • How can I restore my iphone to a backup that's not listed in the drop down menu

    I updated my iphone and everything was removed. I attempted to restore it however the only backups that are available when I have the iphone logged into itunes is the one from today. How can I apply an older backup say 1 to 2 days ago to the drop down menu of the restore button? Right now the only thing that's showing up is the one for today and that's abslolutely not the one I want or need. And before the question is asked no I didn't save it to icloud.

    iTunes only keeps one normal backup, per device. Thus, there are no previous backups from 1 or 2 days ago unless you restored your phone & backed up before you restored. Restore point backups are time/date stamped & are not overwritten.

  • HT4623 my iPhone can call out and receive text messages and emails but is not receiving any incoming calls

    my Iphone can call ut and receive text/email messages but is not receiving incoming calls.  What is your thought?

    Hi Baileyfour,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    There are two places where vibrations can be set.
    One is the Settings > Sounds
    The other area is Settings > Notifications
    If you have an app set to Alert, it may have a vibration set for it.
    iOS: Understanding Notifications
    http://support.apple.com/kb/ht3576
    Information about Notifications settings can also be found in the iPhone User Guide (pages 131, 132)
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    I hope this information helps ....
    Have a great day!
    - Judy

  • HT201472 How can I lock my iPhone by IMEI?

    It have been stolen, I live in Argentina and I bought it in Apple Store in USA unlocked.

    You cannot.
    You can ask your carrier if they block phones from being used on their network.

  • How can I fix my iphone 5s texting problem?  It won't text or imessage to one specific contact.

    I have a new iPhone 5s, and it refuses to send texts to ONE specific contact.  I've tried going through the contact, groups, etc.  It just glitches back to the home screen (basically telling me to f*** off and stop texting).  However, i can send pics, but as soon as i send it re glitches back to the home screen, appalled I tried to read MY text convos...  (Yes,  I have done the obvious fixes such as restarting the phone, backing up/ restoring, and deleting the contact and remaking him...)
    Thanks!!

    Maybe the issue is with that contact's phone and not your phone.

  • How can I lock the "Vertical Scrolling" in apps that I've created to turn the articles only in horizontal way? Although there aren't articles in the same file this kind of scroll appears.

    Although there aren't articles in the same file this kind of scroll appears.

    "Method Three
    Create a separate iTunes library for each device. Note:It is important that you make a new iTunes Library file. Do not justmake a copy of your existing iTunes Library file. If iTunes is open,quit it.
    This one may work. I searched and searched on the website for something like this, I guess I just didn't search correctly, lol. I will give this a try later. My daughter is not be back for a few weekends, therefore I will have to try the Method 3 when she comes back for the weekend again. "
    I forgot to mention that she has a PC at her house that she also syncs to. Would this cause a problem. I am already getting that pop up saying that the iPod is synced to another library (even though she is signed in with her Apple ID to iTunes) and gives the pop up to Cancel, Erase & Sync, or Transfer Purchases. My question arose because she clicked on "Erase & Sync" by mistake when she plugged the iPod to her PC the first time. When the iPod was purchased and setup, it was synced to my PC first. When she went home, she hooked it up to her PC and then she erased it by accident. I was able to restore all the missing stuff yesterday using my PC. However, even after doing that it still told me the next time I hooked it up last night that the iPod was currently synced with a different library. Hopefully, you can help me understand all this. She wants to sync her iPod and also backup her iPod at both places. Both PCs have been authorised. Thanks

  • How can I get a list of IP's that have got access to my account I have a court summons and the information could only have been gathered from my Icloud account. Apple cant or wont help me. Urgent please have to go to court tomorrow.

    Need some urgent help please.
    I have a court summons for some information that has been taken from my Icloud account.
    I believe my ex employer has hired someone to hack into my account. They have had my laptop inspected by a forensic company. Orginally they did not know what the five emails I sent myself were about. Now they do. I believe they have hacked my Icloud account. I have asked Apple to help but they are refusing is there any way I can find out please feel free to email me [email protected] Thanks have to go to court tomorrow morning.

    It sounds like you really might want to consider seeking legal advice for this matter.

Maybe you are looking for

  • How to move my external HD iTunes library to my new Mac?

    Hi, sorry for a noob question. I have an older Mac and it's iTunes library location is point to an external HD, now I got a new Mac and I would like to use the same external HD for my iTunes library, so basically the contents in the external HD doesn

  • How to tell if my GPU is broken?

    Hello, I recently purchased two MSI GTX 560 TI GPUs for my newly built PC which I have running in SLI and they've been running games really well for about two weeks now but today my second GPU seems to be having problems. I tested my first GPU alone

  • This is regarding the career suggestion between ERP consulting and ERP sales or presales.

    Hi Everyone, Thanks for reading this post as this would not give any knowledge to you but would help for my career progression. I am presently working as SAP consultant in PP module in an MNC . I always had interest towards sales or pre-sales in the

  • Duplicate coloumn name

    Hi, I have two classes (B, C) derived from the same base (A). Both of them have a field called field1. I cannot put this field to the base class because this would not make sence. When I run the schema tool to initialize the database a duplicate colo

  • Requirements not fullfilled for Condition type - Pricing Procedure

    When I am doing the pricing procedure, the error thrown is "Requirements not fullfilled for Condition type". Can any one suggest how to fix this problem ?