Need help picking out the lowest cost phone and a plan that has only unlimited talk and text.

*******DISCLAIMER********
I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

Tracfone is going to be launching their first Android Phone to the general retail outlet in December from what I heard. When you buy an AIRTIME CARD, They give you a seperate amount of minutes a seperate amount of texts and a seperate amount of data thats equal to the amount of the airtime on the card. I can actually make $80 last which doubles to 900 minutes , 900 texts and 900mb of data. When I had Virgin Mobile, I only used 100mb of data average per month streaming good quality audio.
Phone will be expensive up front but the savings will be good after awhile.
*******DISCLAIMER********
I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

Similar Messages

  • The whole bookmarks section of my browser is gone. Also, the toolbar at the bottom of the desktop is covered up by firefos, that has not happened before and I do not like it.

    The whole bookmarks section of my browser is gone. Also, the toolbar at the bottom of the desktop is covered up by firefos, that has not happened before and I do not like it.
    Please help me set it up the way it was. I like my favorites on the toolbar.

    Are you in the Full Screen mode? Hit '''F11''' and see what happens.

  • Need help picking out a printer...

    I am trying to pick out a good printer. My laser (2600n) finally died. I'm looking for something with a low cost per page. I am in grad school and print out a lot of simple word docs, and class notes.
    I'm not sure if any of the inkjets can give me a low cost per page. Any ideas on this? I don't need to do pictures and all of that, just allot of pages. Maybe around 500-1000 pages a month.

    Hi,
    my hp photosmart C6180 all in one works flawlessly with it plugged in to my time capsule all functions.
    I used to have it set up using it wirelessly from the printer however for some reason after a update (i think) it stopped working & would not print so had to plug in to time capsule.
    Dave

  • Need help Take out the null values from the ResultSet and Create a XML file

    hi,
    I wrote something which connects to Database and gets the ResultSet. From that ResultSet I am creating
    a XML file. IN my program these are the main two classes Frame1 and ResultSetToXML. ResultSetToXML which
    takes ResultSet & Boolean value in its constructor. I am passing the ResultSet and Boolean value
    from Frame1 class. I am passing the boolean value to get the null values from the ResultSet and then add those
    null values to XML File. When i run the program it works alright and adds the null and not null values to
    the file. But when i pass the boolean value to take out the null values it would not take it out and adds
    the null and not null values.
    Please look at the code i am posing. I am showing step by step where its not adding the null values.
    Any help is always appreciated.
    Thanks in advance.
    ============================================================================
    Frame1 Class
    ============
    public class Frame1 extends JFrame{
    private JPanel contentPane;
    private XQuery xQuery1 = new XQuery();
    private XYLayout xYLayout1 = new XYLayout();
    public Document doc;
    private JButton jButton2 = new JButton();
    private Connection con;
    private Statement stmt;
    private ResultSetToXML rstx;
    //Construct the frame
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    xQuery1.setSql("");
    xQuery1.setUrl("jdbc:odbc:SCANODBC");
    xQuery1.setUserName("SYSDBA");
    xQuery1.setPassword("masterkey");
    xQuery1.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
    contentPane.setLayout(xYLayout1);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    xQuery1.setSql("Select * from Pinfo where pid=2 or pid=4");
    jButton2.setText("Get XML from DB");
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    catch(java.lang.ClassNotFoundException ex) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(ex.getMessage());
    try {
    con = DriverManager.getConnection("jdbc:odbc:SCANODBC","SYSDBA", "masterkey");
    stmt = con.createStatement();
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    jButton2.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton2_actionPerformed(e);
    contentPane.add(jButton2, new XYConstraints(126, 113, -1, -1));
    //Overridden so we can exit when window is closed
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton2_actionPerformed(ActionEvent e) {
    try{
    OutputStream out;
    XMLOutputter outputter;
    Element root;
    org.jdom.Document doc;
    root = new Element("PINFO");
    String query = "SELECT * FROM PINFO WHERE PID=2 OR PID=4";
    ResultSet rs = stmt.executeQuery(query);
    /*===========This is where i am passing the ResultSet and boolean=======
    ===========value to either add the null or not null values in the file======*/
    rstx = new ResultSetToXML(rs,true);
    } //end of try
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    ======================================================================================
    ResultSetToXML class
    ====================
    public class ResultSetToXML {
    private OutputStream out;
    private Element root;
    private XMLOutputter outputter;
    private Document doc;
    // Constructor
    public ResultSetToXML(ResultSet rs, boolean checkifnull){
    try{
    String tagname="";
    String tagvalue="";
    root = new Element("pinfo");
    while (rs.next()){
    Element users = new Element("Record");
    for(int i=1;i<=rs.getMetaData().getColumnCount(); ++i){
    tagname= rs.getMetaData().getColumnName(i);
    tagvalue=rs.getString(i);
    System.out.println(tagname);
    System.out.println(tagvalue);
    /*============if the boolean value is false it adds the null and not
    null value to the file =====================*/
    /*============else it checks if the value is null or the length is
    less than 0 and does the else clause in the if(checkifnull)===*/
    if(checkifnull){ 
    if((tagvalue == null) || tagvalue.length() < 0 ){
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    root.addContent(users);
    out=new FileOutputStream("c:/XMLFile.xml");
    doc = new Document(root);
    outputter = new XMLOutputter();
    outputter.output(doc,out);
    catch(IOException ioe){
    System.out.println(ioe);
    catch(SQLException sqle){

    Can someone please help me with this problem
    Thanks.

  • Need Help picking out a machine

    I'm looking for a desktop or laptop that's great for storage and HD DSLR Video editing
    and will run adobe creative suite flawlessly 
    I edit in RAW files in Photoshop and lightroom
    I also use Premiere, and After Effects open at the same time, jumping back and forth from each.
    I currently edit with Canon7D footage
    I also use over 10TB of storage and I'm looking to hook up 3 moniters soon
    I'm not good when it comes to computer specs
    I'm leaning more towards a laptop for portablitility
    I know desktops are better cuz they're faster but at what point should I care about speed?
    I'm thinking I should only worry about it unless I was editing with RED
    These are the laptops I've found so far, haven't started my search for desktop yet
    Which one of these laptop have desktop level peformance? and what specs should I select?
    I want something that will be easy to upgrade later on
    I plan to upgrade to CS6 and I read that users are reporting a minimum of 32GB memory is needed for best performance.
    I don't want to give a budget because budget should not be the deciding factor in determining what I need.
    I plan to edit multi cam projects down the road
    I want a machine that could handle ANYTHING a client might toss at me.
    I need something that's good to go right out of the box.
    Please reccomend to me what I should get
    Would it be better I get one custom built from a company like Sager?
    If so please select the specs for me since I'm not a hardware guy.
    1. Dell M6700
    http://www.dell.com/us/business/p/precision-m6700/pd
    2. SAGER NP9170
    http://www.xoticpc.com/sager-np9170-gaming-laptop-clevo-p170em-p-4342.html
    3. Dell XPS 15
    http://www.dell.com/us/p/xps-15-l521x/pd
    4. Samsung Series 7 Gamer NP700G7C-S01US
    http://www.amazon.com/Samsung-Series-NP700G7C-S01US-17-3-Inch-Laptop/dp/B006MX0WHU
    5. ASUS G75VW-TS71
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=2355975&CatId=4 935
    6. Toshiba Qosmio
    http://us.toshiba.com/computers/laptops/qosmio/
    7. P170EM - CLEVO
    http://www.clevo.com.tw/en/products/prodinfo.asp?productid=383

    These are the specs I chose so far Total $3,135.16
    Would appreciate any advice?
    I will have microcenter install me 4 DIMMs 8GB from Kingston
    Description
    ThinkPad W530 - 1 Year Depot Warranty
    Processor:
    Intel Core i7-3820QM Processor (8M Cache, up to 3.70 GHz)
    Operating system:
    Windows 7 Professional (64 bit)
    Operating system language:
    Windows 7 Professional 64 - English
    Display type:
    15.6" FHD (1920 x 1080) LED Backlit AntiGlare Display, Mobile Broadband Ready
    System graphics:
    NVIDIA Quadro K2000M Graphics with 2GB DDR3 Memory
    Total memory:
    4 GB DDR3 - 1600MHz (1 DIMM)
    Keyboard:
    Keyboard Backlit - US English
    Pointing device:
    UltraNav with Fingerprint Reader for Color Sensor, Smart Card Reader
    Camera:
    720p HD Camera with Microphone
    Hard drive:
    128GB Solid State Drive, SATA3
    Optical device:
    2nd 500GB HDD, 7200rpm with Bay Adapter
    System expansion slots:
    Express Card Slot & 4-in-1 Card Reader & Smart Card Reader
    Battery:
    9 Cell Li-Ion TWL 70++
    Power cord:
    170W Slim AC Adapter - US (2pin)
    Bluetooth:
    Bluetooth 4.0 with Antenna
    Integrated WiFi wireless LAN adapters:
    Intel Centrino Ultimate-N 6300 AGN
    Integrated mobile broadband:
    Qualcomm Gobi 3000
    Selectable SIM:
    SIM Card for US AT&T
    Language pack:
    Publication - US English
    Accessories and options:
    4YR Onsite Next Business Day + Accidental Damage Protection
    ThinkPad Battery 28++ (9 Cell Slice - T410/20/30, T510/20/30, W510/20/30)
    Mini Dock Plus Series 3 with USB 3.0 - 170W (US/Can/LA)
    ThinkPad 15W Case Sleeve
    Kensington Twin Head Cable Lock from Lenovo
    Mini-DisplayPort/VGA Monitor Cable

  • I need help figuring out the best way to convert analogue video to DV so that I can edit it.

    I have a large number of VHS and hi8 tapes that I want to convert to high quality DV.
    I have a couple of options. One is an Elgado Video capture system.
    The other is a Sony Digital Media Converter Box (DVMC-DA2).
    I have tried a few of the less important tapes using the Elgado Video Capture system. It only allows you to convert to MPEG4 or H.268. It is not very good quality, especially for archival items or items I would later wish to edit.
    I also have the Sony Digital Media Converter Box. I have heard that this is a superior option. So far, though, I have only been able to figure out how to import using an old version of iMovie HD. This makes a large imovie project file (approximately 6.18GB for a 28:30 clip vs a 348.9MB for an MPEG4 using delgado.
    On top of that to convert the file from an iMovieProject file to DV is an additional step that so far looks like will take a half an hour at best.
    Is there any way for me to import VHS/hi8 tapes using the Digital Media Converter Box to creat high quality DV files directly? If so, where can I find this info? What steps should I take and what are the settings I should use.
    I have a lot of tapes so I want to figure out the right and most efficient way to do this because I will be repeating it a bunch of times and would hate to have to start over again.
    I should also mention that I am using a Mid 2010 MacBook Pro, with OSX 10.9.1
    I'm sorry in advance if this seems like an obvious question, but I have been googling and looking at tutorials on the site and just have not found the answer. There are a lot of ads for expensive low quality services to do this converting for you, so maybe the answer I am looking for is burried in all that advertising.
    Thanks

    Thanks Biggles and Gotz. I just couldint find capture, but now I can! (It was right under my nose too).
    I'm trying it now and it appears to be working. Do you have any other recommendations for capturing from hi8 video source as far as setting go? I am using DV to capture. Are there any other settings I should pay attention to?
    There is an extra line of video noise at the bottom, but when I google it, it sounds like it won't show on most standard tvs and if I want to fix it for online, that I should mask it after the fact vs scaling up the video.

  • RE: Need help on cornering the APO BI issue relevant to Planning area

    HI Guys,
    Iam loading historical data from my infocube to APO planning area...
    MY Planning will be done in apo for weekly based..
    for thatmy client has configuired Fisc VArnt which is
    specific for 48 periods but not 52 periods...
    My clinet will be planning in week which will will be like it starts from 07.01.2010,
    14.01.2010,21.01.2010,31.01.2010..
    but for testing purpose we are taking thisfrom a flat file andloaded into the infocube..
    and created gen export datasource into scmapo system and loaded into cune from that cube iam feeding itto planning area..
    when I execute the transaction /n/sapapo/tscube tha data copied was successful,
    but the keyfigure amnt when I saw in the planning area Transaction /n.sapapo.sdp94which will be distributed across the week.
    lets say my keyfigure values is 100 in the infocube for the jan month and week 1
    and the value which i CAN SEE IN THE PLANNING AREA IS week1 25 week 2 25 week 3 25 and week 4 25
    which will be 100 total for amonth,
    but it should not be like that 100 should go into a particular week and should display 100 for that particular week..
    I have calmonth calday, fiscper(posting period) which we have maintained in ob29 as 48 periods
    when i derived calweek in the transformation iam getting 48 weeks but
    when i try to load it to planning area iAM GETTING AN ERROR LIKECOMBINATION IS INCONSISTENT..with the calmonth
    CODE WHICH i HAVE DERIVED CALWEEK FROM CALDAY:
    DATA: lv_year(4) TYPE c,
    lv_month(2) TYPE c,
    lv_day(2) TYPE c,
    lv_result(6) TYPE c,
    v_poper TYPE poper.
    lv_year = SOURCE_FIELDS-calday+0(4).
    lv_month = SOURCE_FIELDS-calday+4(2).
    lv_day = SOURCE_FIELDS-calday+6(2).
    SELECT SINGLE poper FROM t009b INTO v_poper WHERE bumon = lv_month
    AND butag = lv_day.
    IF sy-subrc = 0.
    CONCATENATE lv_year v_poper+1(2) INTO lv_result.
    RESULT = lv_result.
    CLEAR: lv_result.
    ENDIF.
    gURUS CAN ANY BODY THROW SOME LIGHT ON THIS.. iWILL BE HIGHLY OBLIGED
    when i load the data from infocube to planning arae using /SAPAPO/TSCCUBE, the copy was succeeful.. But the issue is the keyfigure value is dis aggregating..
    For ex If my sales hostory for week 1 001.2010 and for calmonth 01.2010 is 100, but it is disaggegating the values for whole month 4 weeks as 25,25,25,25 but it needs to b written as 100 for week 1.rather it should be aggregated on the highlevel as 100 for week 1.
    Do I need to check any Charecterstics combination but all are consistent....
    Even the periodicities in the planning area and infocube are consistent , since i am able to copy in to planning area..
    I dont have calweek in my infocube i have derived calweek with logic provided in my earlier thread, but as of now iam going with calyear and calmonth, fisper3 (postig period), since 48 posting periods are maintained in the 0b29 or t009b tables.
    whether I need to implement any oss notes for this, If I include calweek and calmonth and try to copy in to planning area Iam getting an error periodicities are not matching  SAP Note 1408753 - /sapapo/tscube wrong error message
    /SAPAPO/TSM 232
    Regards
    Balaram

    thnx for replying the thread..
    Where do I maintain this the PLANNING OBJECT STRUCTURE(STOR BKT Profile) and Planning Book-data View(Time Bkt Profile) with the time periodicities for Fisc Varnt and Posting period specificu2026
    Can you pls elaborate on this Iam new to APO BW implementation part, Sine this is a burning issue
    Actually what seeting I need to do there, I think infocube structures are good and copying data in to planning area..
    I have calmonth and Fiscper3 for 48 periods in my infocube
    also whether I need to maintain any calweek in the PLANNING OBJECT STRUCTURE(STOR BKT Profile) and Planning Book-data View(Time Bkt Profile)
    when I checked in planning book keyfigure overview it is maintained there for 48 periods
    For Planning Book-data View(Time Bkt Profile)  how can we achieve this...
    If you could throw some light more on this I have my APO Counter part I will ask him to change the master planning structure accordingly
    Regards
    Ram

  • Need help picking out T500 configuration

    Here is my intro:  
    I am new to this forum,
    work in IT industry,
    currently own a T42,
    travel for work,
    do NOT run any graphics intensive games,
    do run multi-threaded applications, quite a many at the same time
    seeking to buy a new T500
    not really hands-on in terms of replacing components
    do not change laptops every year or frequently
    Planning to pick the below configuration for a T500:
    Processor: Intel Core 2 Duo Processor P8800 (2.66GHz 1066MHz 3MBL2)     
    Operating system : 32 bit Windows XP Professional preinstalled through downgrade rights in Genuine Windows 7 Professional
    Display type: 15.4" WSXGA+ TFT, w/ CCFL Backlight
    System graphics: Integrated Graphics, Intel Graphics Media Accelerator x4500HD with vPro
    Total memory: 4 GB PC3-8500 DDR3 SDRAM 1067MHz SODIMM Memory (2 DIMM)
    Hard Drive: 320 GB Hard Disk Drive, 7200rpm
    Optical device : DVD Recordable 8x Max Dual Layer, Ultrabay Slim (Serial ATA)
    Card Reader: 7 in 1 Media Card Reader
    System expansion slots : Express Card Slot & Smart Card Reader
    Wireless card: Intel WiFi Link 5100 (AGN) with My WiFi Technology
    Mobile Broadband: Integrated Mobile Broadband upgradable
    Battery: 6 cell Li-Ion Battery
    Country Pack: Country Pack North America with Line cord & 65W AC adapter
    Language pack: Language Pack US English for Windows 7
    I appreciate any tips from the fellow forum members in customizing my new T500 configuration. 

    do run multi-threaded applications, quite a many at the same time
    Processor: Intel Core 2 Duo Processor P8800 (2.66GHz 1066MHz 3MBL2)     
    You might be happier with the T9600. The speed difference is negligable but the extra 3MB cache makes a fairly substantial difference where running multiple applications at once, and especially switching between them is concerned. - You could also wait until early January if you're not in a hurry, the T510 line should be coming out around then and will have the new Core i5 processors with hyperthreading, which will also help multiple muli-threaded applications. (Then again, you never know, T510 could be a step down.)
    Also, do you use smart cards? Very rarely have I seen anyone with any real use for them, you might be better off with the PC card slot instead.

  • My ipod was stolen and I need help figuring out the serial number. I don't know where the case that i bought it in is nor do I have my ipod so HELP! please!?!??!!?

    Also, I can't do that thing where you go on itunes and find out which device was last connected because I accidentallly connected a different ipod. soo yeah

    Go to the iPods syncing computer.  Open iTunes and open iTunes' Preferences.  Go to the Devices tab and hoover the mouse pointer over the backup for that iPod.  The SN whill come up.
    Als see:
    iPod: How to find the serial number

  • Need help picking out ram.

    Which of these will be better with my system,what I have now is bad,need to replace it.
    Kingston HYPER X 1GB PC3200 400MHz 2x512MB HyperX Model #KHX3200AK2/1GR CAS 2-3-2-6-1 or
    mushkin Redline XP4000 1GB (2 x 512MB) 184-Pin DDR SDRAM DDR 500 (PC 4000) Unbuffered Dual Channel Model #: 991440 cas2 timming 2-2-2 3.3V-3.5V or
    mushkin XP3200 Dual Pack 1GB (2 x 512MB) 184-Pin DDR SDRAM DDR 400 (PC 3200) Unbuffered Dual Channel Model #: 991357 cas2 timming2-2-2 2.5V-2.8V

    Quote
    See stickies in this index:    RAM that works well with MSI K8N motherboards
              RAM that does NOT work well with MSI K8N motherboards     
    https://forum-en.msi.com/index.php?topic=51996.0
    https://forum-en.msi.com/index.php?topic=51997.0
    I have looked at them already but I didn't think they were talking about the MSI K8N Neo4 Platinum Ultra board.

  • Need Help Picking Out A Computer!

    I need to get a new computer in the next week or two and it will be mainly to run logic studio. I have a small macbook, but i know it won't be able to handle the recording projects i want to do. if anyone can reccomend the most affordable solution (the best version of the imac or a 4core or 8core with minimal stuff in it?). As you can probably tell I'm not that great with all the technical aspects of recording, but I want to make sure I have something quality that I can record on. Is an imac enough to get by on or should i go for something bigger? Thanks for your time and advice in advance.
    Jeff
    Message was edited by: Music891

    I'm using it to record high quality demos. Most of the time it will be just one track at a time being recorded i.e just a guitar and a click, laying down a vocal, etc. I will be using some beats/loops I have and I'd like to use autotune, some reverb, compressors, etc for mixing the songs. I will also be using the oxygen keyboard to do some synth pads. So really no intensive recording for drums i suppose since i don't have a room to record them so that leaves the recording process to be quite simple, but i just want to make sure the effects won't weigh me down. thanks again!
    jeff
    Message was edited by: Music891

  • Need Help Picking Out A New Graphic Card

    I have a nVidia GeForce 5200 graphics card in my PowerMac G5 1.6mhz (AGP) that I'd like to upgrade. Does anyone have some recommendations for a better card that doesn't cost more than $200. I'm wanting to get better performance when using programs like Final Cut Pro and Motion. The current card doesn't cut it very well.
    Also, has anyone seen some side-by-side benchmarks for all the various cards. I'm having a hard time finding comparisons to my current card. I'm just curious as to how much faster a new card would be.
    Thanks much,
    Ray

    $200 will be a problem. In order of speed, starting with the fastest:
    ATI Radeon® X800 XT MAC Edition RoHS 256MB AGP
    NVIDIA GeForce 6800 Ultra 256 MB DDL (AGP)
    NVIDIA GeForce 6800 GT 256 MB DDL (AGP)
    ATI Radeon™ 9800 Pro Mac Special Edition
    ATI Radeon® 9600 Pro PC & MAC Edition 256MB
    Look for them at
    <http://www.welovemacs.com/g5video.html>
    <http://eshop.macsales.com/shop/video/hardware/>
    <http://shop.ati.com/searchresults.asp?dept_id=31>
    Speed comparisons
    <http://www.barefeats.com/radx800.html>

  • Is there anyway to retrieve the contents from a password protected iPad that has now been disabled and can prove that I purchased it?

    I let my friend use my other iPad 2 2011 Model and I have the receipt and bank statement to prove it, Unfortunately she passed away early this year and her last pictures of her and of her daughter is on that iPad and now it is now displaying "iPad Disabled, Connect to iTunes" and I do not have her computer, since the cops still have it and I didnt purchase that, so I have no access to her computer that she synced the iPad with. I tried connecting to my computer and it says "iTunes could not connect to the iPad ___________because it is locked with a passcode You must enter your passcode on that iPad before it can used with iTunes" Anything I can do so I can save her data like pictures, messages, notes, videos, etc before I wipe it? It the last pictures anyone will have of her and the only pictures of her daughter when she was 1 years old, Please Someone Give Me Some Good News?

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • Help figuring out the next step

    Credit card became invalid and so I needed to resign up. I created a different log in and pass word because I couldn't remember the original log in and pass.  I have already paid for a new subscription and removed and redownloaded skype but when I try to use skype it says I need a subscription.  I need help figuring out the next step because it won't let me skype to a mobile in Togo Africia and I have already paid for a new subscription  with my new credit card.  Help!! Donna  

    you can visit the link below for instructions on how to check the status of your current order;
    https://support.skype.com/en/faq/FA288/what-is-the-status-of-my-order
    if you need further assistance, you can also try to contact customer service. Just open the link pasted below to see the instructions on how to get in touch with customer service -
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • I just bought my MacBook Pro 13" and I tried to install an anti virus but then it went into a grey folder with a question mark I need help with restoring the iOS please

    I need help taking out the grey folder with the question mark and I've try everything except the CD thing because my MacBook didn't come with one so I really need help please

    What anti-virus software did you install? Although there's a lot of bad anti-virus software out there, no anti-virus software should cause such a problem. A gray screen with a flashing question mark on a folder means that no bootable system could be found, which means that the system was badly damaged or corrupt. Even installing bad software would not normally cause that, so either there was something badly wrong with the system already or the anti-virus software you tried to install was really, really bad!
    As mende1 says, you need to reinstall the system at this point. After your system is back up and running, read my Mac Malware Guide. If, after reading that, you want anti-virus software, use one of the programms recommended in that guide.

Maybe you are looking for

  • A big cup of "zip it" or the definative final P67 vs X58 answer thread

    none of this will matter in 6 months however until then... this should be a sticky 2600K, Motherboard, 16gig ram $711 990x, motherboard, 12 gig ram $1408  24Gig ram $1552 why the 990x? its the only processor that can match or beat the 2600k either st

  • Insert Record in Master-Detail block

    I am using JDev 10.1.2, Struts, ADF and JSP I have a Master-Detail relationship. As the master table(Course) is browsed , the details(Students) record keep changing. Now I want to insert records to the detail (Students) block alone. I am generating t

  • How do I open a pdf uploaded to iCloud Drive | Preview?

    On my iMac I uploaded a pdf to iCloud Drive | Preview.  I want to view it on my iPad.  Using the Documents app Preview is grayed out.  What is the magic to get the pdf to appear?

  • Flash Text not displaying in GoLive CS2 HTML page

    Greetings All! I have created some simple scrolling text in Flash Pro 8. I published the SWF into my GoLive CS2 web site. I can see everything when I open the SWF file or the accompanying HTML file, but when I place the SWF into an HTML page in GoLiv

  • Interfacing with Microsoft Word

    Issues with taking Word to FrameMaker, FrameMaker to Word, and troubles with the Word and RTF import/export filters abound.