Who has successfully made a phone call on 3rd gen/8G ipod touch?

If it works then I'll buy a earphone with mic and remote. Thanks!

It works, as long as you have the 3.1.1 software (which you should since you have a 3rd gen).

Similar Messages

  • Who has the best replacement screen for a 3rd gen ipad?

    Can anyone recommend where to get a good replacement screen for a 3rd gen ipad?

    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications. 
    Out-of-Warranty Service
         If you own an iPad that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will replace (Apple doesn't repair) your iPad with an iPad that is new or equivalent to new in both performance and reliability for the Out-of-Warranty Service fee listed below. (The replacement will most likely be a refurbished iPad in a brown box, however, it has a new screen, back and battery.)   
    iPad model
    Out-of-Warranty Service Fee
    iPad mini
    $219
    iPad 3rd, 4th generation
    $299
    iPad 2, iPad
    $249
    A $6.95 shipping fee will be added if service is arranged through Apple and requires shipping. All fees are in US dollars and are subject to local tax.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPad that has failed due to contact with liquid may be eligible for out-of-warranty service. See http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
    You may can get the iPad repaired at 3rd party repair sources for less $, however, any remaining Apple warranty will be voided.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
     Cheers, Tom

  • Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?

    Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?  Is there a demo out there that actually works in VS2012?  Is there anyone who has actually been able to compile and deploy that
    apparently obsolete Polygons demo?  (Pardon my impatience but I'm running a bit short of time here.)
    After much hacking and googling I was able to get Polygons to compile but I still can't deploy it to the toolbox.  ('The custom report item type PolygonsDesigner is not installed').   I've modified the RSReportDesigner.config
    as instructed but I have no rssrvpolicy.config file on my local machine and
    as yet I have no idea if that is necessary for local development.
    In order to get it to compile I first added the reference  C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.ProcessingCore.dll to both projects.
    To the PolygonsDesigner Project I also added the references:
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportDesigner.Controls.dll
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.Designer.11.0.dll
    C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\Microsoft.ReportingServices.Interfaces.dll
    Are these the correct references?  
    Exactly what software do you need installed on your local machine in addition to VS2012 in order to create a custom control?
    (Designer.11.0 was added per the instructions in reference: https://connect.microsoft.com/VisualStudio/feedback/details/783391/unable-to-integrate-previously-working-ssrs-custom-report-item-to-vs-2012s-toolbox  
    After that I added the alias RSDesigner to it's properties and   extern alias RSDesigner; at the top of the PolygonsDesigner.cs file. )
    As of now, the top of the PolygonsDesigner.cs is as follows.  I don't recall making any other changes to the code.  As far as I can remember this is all I did in order to be able to compile the code in VS2012.
        extern alias RSDesigner;
        using System;
        using System.ComponentModel;
        using System.ComponentModel.Design;
        using System.Collections;
        using System.Collections.Generic;
        using System.Diagnostics;
        using System.Drawing;
        using System.Windows.Forms;
        using Microsoft.ReportDesigner;
        using Microsoft.ReportDesigner.Design;
        using Microsoft.ReportingServices.Interfaces;
        using Microsoft.ReportingServices.RdlObjectModel;
        using System.Xml;
        using System.Xml.Xsl;
        using System.Xml.XPath;
        [LocalizedName("Polygons")]
        [Editor(typeof(CustomEditor), typeof(ComponentEditor))]
        [ToolboxBitmap(typeof(PolygonsDesigner), "Polygons.ico")]      
        [CustomReportItem("Polygons")]
        [ToolboxItem(typeof(RSDesigner::Microsoft.ReportDesigner.Shell.CRIToolboxItem))] 
        [System.CLSCompliant(false)]
        public class PolygonsDesigner : CustomReportItemDesigner
        {   etc...

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • The head phone jack on my brand new iPod touch 5th generation is not working properly

    The head phone jack on my brand new iPod touch 5th generation is not working properly. It has sound without the headphones in but when I plug them in it has no sound, it's low, or poppy. I had only used my apple supplied headphones once before and it worked fine. I know it's not the headphones because I tried them on my girlfriends phone and they worked fine.

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so. There is a little switch in the headphone jack that disconnects the speaker when the headphone jack is inserted.
    Try the following to rule out a software problem
    - Reset the iOS device. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar

  • Any ideas why a film I have  converted to mp4 format, that plays with sound through my PC windows media file- only has a picture but no sound when transferred to my ipod touch via the Itunes?

    Any ideas why a film I have  converted to mp4 format, that plays with sound through my PC windows media file- only has a picture but no sound when transferred to my ipod touch via the Itunes?

    See:
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    iTunes: Frequently asked questions about viewing and syncing videos

  • My 4th gen apple ipod touch glass has broken ,does it have any warranty?

    my 4th gen apple ipod touch glass has broken ,does it have any warranty?

    The warranty does not cover accidental damage.

  • Can I use standard I phone 4g earphones on the new ipod touch ?

    can I use standard I phone 4g earphones on the new ipod touch ?

    Have you tried firm pressure to fully seat the plug into the iPod's headphone jack?
    Does the plug on the headphones look OK and not damaged?

  • I recieved a new 4s today in replacement for my other one shutting down after installing the new update. Made a phone call, person on the other end cant hear me though i can hear them! im about to loose my block...what is going on? Help PLEASE :-(

    So, i recieve a new TODAY due to my other ones software stuffing up due to a stuff up in the new software update. Alls well and good, i leave the store drive home which is a hours drive mind you, make a phone call we talk for a while, it cuts out. I didnt think anything of it. Next phone call the person im speaking with cant hear me, 5 phone calls later i turn on speaker phone horray they can hear me. WHAT IS GOING ON??? I have had that many problems with my iphones but this is behond a joke...brand new phone thats already not working!!!!! I've tried to restore it and do everything i can but its not fixing anything. Im hoping someone out there can help because im done with Apple after this because this ludacris. Thanks in advanced :-)

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • HT2674 made a phone call this morning and my phone vibrated then went black like it turnt off now cant turn it on. what is wrong with my Iphone 4S

    my iphone 4S went black this morning after making a phone call and the phone will not turn on. what is wrong with my phone?

    I switched the usb port and did the whole recovery holding of the buttons ect... And it worked, the computer detected the phone and i was able to click restore. However, the computer says preparing iphone for restore and it is still doing the restarting thing where the apple fades away and then comes back like it is restarting. If i can somehow get past this i will be able to go back to factory settings and resolve my problem, but this is where i am stuck.

  • My old phone number is stuck on my ipod touch and I am trying to put my new phone number in but it will give me no place to do it. I have looked up all support reset things made sure my new number was attached to my apple id and still

    I have an IPOD Touch and it had my old phone number in it, I have tried absolutely everything listed on the community support that I could find, restoring factoro settings restarting phone logging out of facetime and imessage but it wont allow my to put in a new phone number even though on my apple id there is a phone number it will not correspond with the new number it doesn't give me even an option for a phone number now just email. Can someone please help me THANKS

    Where is the phone number on the iPod?
    If you have an iPhone with iOS and use the same ID for Messages and FaceTime as on the iPod the iPhone's phone number will be listed for Messages and FaceTime on the iPod.
    If you changed phone numbers on the iPhone, sign out of Messages and FaceTime and then sing back in. Then do the same a little while later on the iPod.
    For some info see:
    iOS: About Messages

  • Add a phone number to iMessage with an iPod touch?

    Hello everyone! I recently bought my iPod touch 5th generation, and I'm loving it. However, I was wondering if I could add a phone number too instead of only an email? I don't see that option anywhere except to add another email. Since lots of people ha e my phone number too, I was hoping I could a phone number as well. Thanks all!! :)

    Sharvin2012,
    The only way that people could "call" you through a system app on an iPod touch is through FaceTime. In FaceTime, people contact you by "calling" an email address that you can control in the settings.
    Some apps from the App Store might have the ability to call other iOS devices over Wi-Fi.
    Adding a phone number in the Contacts app is no problem, if that's what you mean. When editing a contact, it's one of the first few fields.
    - Owen C.

  • My iPod touch has no sound when I play music or use the iPod touch at all.  Yes, the volume in the "sounds" is all the way up.  It has not been dropped or gotten wet.  I turned it off and on.  now what?

    My ipod touch (4th generation) has no sound.  I have turned it off and on.....I have the volume up in the "sounds" area.  When I push the side volume button, there is no image that appears in the screen that shows that I am either raising or lowering the volume.  Do I need to just rest the ipod touch as a new device? Or is there someting else I can try?

    And, now when I do press the side volume buttons, the image appears but with the words' "sound effects."  what does that mean?

  • Hi my ipod touch has froze can anyone help? please x, hi my ipod touch has froze can anyone help? please x

    my ipod touch has froze does anyone know how to reset it?

    Try here:
    iPhone and iPod touch: Frozen and unresponsive

  • Can i text my moms phone(samsung galaxy ace) from my ipod touch?

    Im looking to be able to text my mom from my ipod touch(4th gen.) to my moms samsaung galaxy ace, without downloading any new apps. PLEASE HELP! Answer in good deal im not a fail at tech but not a pro!

    Kneil31, I do not understand what you are saying? From the iPod you can text an phone with a third-party app like text+. You may have to pay to do that though.
    Also as wfpIndiana says, you can typically go to that person's carriers site and send a text from the site.
    Kneil31 wrote:
    You cannot text without a mobile data plan or a phone number. If you do have Comcast for home phone and Internet, then you can text any mobile phone for free. http://www.comcast.com/textmessaging
    iMessage allows you to send unlimited text, photos, videos, locations,
    and contacts using Wi-Fi or cellular data* from your iPhone, iPad, iPod
    touch, or Mac running OS X Mountain Lion.
    http://support.apple.com/kb/ht3529

  • Just updated 10.5 now has location service and others-IOS-ICLOUD etc.  If I hit agree will there be charges I can't find a straight answer. Now I just use my 3 gen. IPOD touch for music and photos. Thanks to all. Tom

    The ipod touch wants me to chose or decline these new features. They sound good but I don't want to get any extra charges. Now use for music and phjotos only. Don't want to decline if these are worth while.  Thanks to all.  Tom  Toucch is 3 gen

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

Maybe you are looking for