Help me with driver please

if i put my iphone in my pc it sais driver is not correct try to find it at the products website to download it but i cant find it help please

Download and install the current version of itunes form http://www.apple.com/itunes

Similar Messages

  • TS3276 I am not able to Mobile Me email account to connect with iCloud or my Apple Mail program. Don't know if my settings are correct or not. Can anyone help me with this please?

    I am not able to Mobile Me email account to connect with iCloud or my Apple Mail program. Don't know if my settings are correct or not. Can anyone help me with this please?

    http://support.apple.com/kb/HT5922
    If you want to mirror your desktop, see:
    http://support.apple.com/kb/HT5404
    Regards.

  • I have a brand new MacBookProo and I can not open PDF files from my desktop. Can anyone help me with this please?

    I have a brand new MacBookProo and I can not open PDF files from my desktop. Can anyone help me with this please?

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273

  • Can anyone help me with forms please

    -----------------------------------source.cfm--------------------------------------------
    <cfquery name="myquery" datasaource="mydatasource">
    select studentid
    from tbl_student
    </cfquery>
    <cfform action="reciever.cfm" method="post">
    <cfoutput query="myquery">
    <cfinput name="#myquery.studentid#" type="text">
    </cfoutput>
    </cfform>
    ------------------------------------reciever.cfm------------------------------------------ ----
    <cfquery name="myquery2" datasource="mydatasource">
    select studentid,studentname
    from tbl_student
    </cfquery>
    <cfoutput query="myquery2">
    <cfif #form.#myquery2.studentid## eq
    #myquery2.studentname#>
    Student Found
    </cfif>
    </cfoutput>
    anyone can know how to do this? i just want to make the
    #form.# dynamic because the id is coming from database
    but seems it is not allowed... anyone can help me with this
    please?or anyone know alternative solution for it?thanks in
    advance.

    thanks again cf_dev2...
    but the <cfinput> that i'm trying to use was dynamic
    because it can be a textbox or a radio button or a checkbox.. i got
    no problem in assigning their name now.. because i string
    concatinated them like placing their specific id from the database
    into their name,for example
    <cfquery name="choices" datasource="mydatasource">
    select choiceid,choicetype
    from tbl_choice
    </cfquery>
    <cfform name="source.cfm" method="post">
    <cfoutput query="choices">
    <cfset choicename='multiplechoice'>
    <cfset choicenamed = choicename.concat(#choiceid#)>
    <cfif #choices.choicetype# eq 'multiplechoice'>
    <cfinput type="radiobutton" name="#choicenamed#">
    </cfif>
    </cfoutput>
    </cfform>
    the problem now is the way how can i receive it and compare
    it on the answer values from the database for the choices.

  • HT5622 i need help using the icloud it is not making any since to me can some one call me and help me with it please don't try to help me through email i need to talk and listen i don't understand instruction by reading

    i need help using the icloud it is not making any since to me can some one call me and help me with it please don't try to help me through email i need to talk and listen i don't understand instruction by reading.
    <Phone Number Edited by Host>

    You aren't addressing anyone from Apple here.  This is a user forum.
    You might want to call a neaby Apple store to see if they have a free class you could attend.

  • Help me with JARs PLEASE!!!!

    Hello,
    Following is the scenario
    Application name: PL
    Directory "PL" has
    - A.jar
    - B.jar
    When I create PL.jar I store it in the dir "PL" by using the appropriate relative path to A.jar and B.jar in the manifest file. PL.jar executes in folder "PL"; BUT when I copy PL.jar to another folder say desktop it gives me a NoClassDefFoundError. Can anybody help me with this as I have wrecjed my brains over this for 2 days. I have to distribute PL.jar to clients for testing purpose.....Please reply ASAP.
    Thanks.
    Salil.

    set (class) path or use package if its inside your dir.
    Message was edited by:
    deAppel

  • Suddenly my music videos won't play on my iPad. I just get the audio? Can anyone help me with this please?

    SUddenly my music videos won't play on my ipad1. I just get the audio. Can anyone help with this please?

    Look in the Videos App and play them in there.

  • Hi, my name is Chenet i have a Macbook 0sx lion 10.7.5 i don't remember my password for the system preferences i can't even go online, can somebody help me with that please

    Hi, my name is Chenet i have a Macbook 0sx lion 10.7.5 i don't remember my password for the system preferences i can't even go online, can somebody help me with that please

    Hi 'baltwo'
    Thank you for your link, I already had been on this particular website this afternoon. they only discuss problems in the application and nothing about how the MS Office application installation does disturb Mac OS.
    Or have I missed a special comment there?
    In any case many thanks, trioloGo

  • Help needed with JDBC - please help! (newbie)

    hi all
    i m new to jdbc
    i have installed MySQL server on my winxp machine
    i used the command:
    mysql -p -u root
    Enter password: ****now when writing a prog i m getting a prob at this piece of code:
    Connection con=DriverManager.getConnection("jdbc:odbc:books","root","root");wot is wrong wid this code?
    please help......
    thanks in advance

    There are about 20 different things that could be wrong a this point; I'm not going to list them all. If you want specific help, you need to post specific information. This is usually done by posting either a stack trace from an exception, or a more complete section of code and a description of the problem and ALL the symptoms. You have all the information on what you've done, we have none of it.
    Instead of trying to diagnose whats wrong with your ODBC setup, I'm going to give you some strong advice; don't use ODBC with JDBC if you can avoid it, and with MySQL you can avoid it. It makes things simpler, less can go wrong, and you don't have to configure a DSN on every machine that you install the program on.
    To use "pure" JDBC without ODBC for MySQl:
    1) download the JDBC driver (you might already have this)
    http://dev.mysql.com/downloads/connector/j/3.1.html
    2) follow the installation instructions
    http://dev.mysql.com/doc/refman/5.0/en/java-connector.html
    In particular, make sure your classpath is set correctly
    3) Here's an example of loading the driver and establishing a connection
    http://dev.mysql.com/doc/refman/5.0/en/cj-connect-with-drivermanager.html
    Note the form of the connection URL,
    "jdbc:mysql://localhost/test?user=monty&password=greatsqldb"
    This is what an URL without ODBC looks like; there is no DSN, which means no DSN has to be configured.
    4) The MySQL database has some built-in security, to prevent malicious connections from outside computers. Solutions to that and other common problems are here:
    http://dev.mysql.com/doc/refman/5.0/en/cj-faq.html

  • System now workin :) help/advice with XP please if you can

    finally got my new system to post so looking good sp far...... started installing win xp and had an error message - disc might be a dodge one!! then thought 'o sod it, i think i'll use win 2000 anyway as seems to have less probs than xp at the mo'
    the problem is, as the install didnt complete, each time i put my win2000 cd in the drive it tries to finish the xp installation. i cant seem to get it to boot from the win2000 disc.
    how do i stop win xp doing this?? can you 'back-it-out' some how or shouldnt it do this and the win2000 should 'take-over'
    bit confused on what to do.
    hope someone can help.
    thanx

    Hi
    Your first problem with XP not completing does sound like a bad disc or your rom drive. Can you borrow another CD or Rom Dive. Can you make a copy of your XP CD on another machine and try the copy.
    Whether you stick with XP or go to Win2000 I suggest you delete partion, reformat and start again. If you are a games player do not move over to Win2000.
    Best of Luck. Russ Pyne

  • IrisPen Express - help needed with driver no loading

    Anyone use IrisPen (Express or Executive; they don't sell IrisPen II anymore) with their MacBook (I'm using os.10.4.8)? I used IrisPen II with my old Windows and the hand scanner worked great. But it was old and not working well.
    Bought new IrisPen Express & after installing software & rebooting (putting pen into USB after installation & before restarting) the software still doesn't recognize the pen. It says: "pen unplugged; driver unloaded."
    Tried everything I can think of. Called IrisPen (un)support help desk and they recommended testing the pen. Instead I bought another new IrisPen, thinking my 1st pen was bum. Now 2nd pen still a problem. Get exact same error message!!
    IrisPen supposed to work with Mac os.x
    Any ideas?

    Had to use the Basic connection type and get the right combination of options. I can now connect to my remote Express server with my local sql developer program.

  • Help me with firmware, please!

    Hi,
    I have already updated my firmware for my CD-RW 48A2
    But I re installed windows, so I want to know if I should re-update my firmware. I thin so, cause I do not see de 180d specification when, for example, I retrieve the drive info from Nero info tool
    Should I re-update my firmware?
    Please answers as soon as you can
    Could you send me instructions on how to do it?
    I am Spanish-spoken, so if you could answer this post in Spanish, I'd be glad. If you just can do it in English, it will be fine as well
    Thanks
    Ines

    I thought so, DVD man, but the fact is that before I formatted my pc, when I used to retrieve my drive info from, let's say, the Nero Info Tool, it displayed my drive with the 180D specification between brackets.
    It sayed something like that:
    Recorder : Atapi CD-RW 48xMax (180D)
    That 180 D specification appeared just once I updated my firmware. Befor that, the Nero Info Tool just displayed something like that:
    Recorder Atapi CD-RW 48x
    Well, now that I formatted my pc, I see my drive specification alike before formatting my pc and reinstalling Windows XP.
    Is there any way to check whether I have the last firmware working?
    Since the firmware updating required to copy some files to C:/ and then to run them from my boot disk and I haven't these files in my C: anymore (cause I have formatted my PC), I have some doubts on if the firmware updating is active or not.
    Could you understand me? These are quite difficult ideas to express in English for me.
    Thanks!
    Pablo Muggeri
    Argentina

  • Help me with net, please!!!

    I'm a beginner
    I have to learn java urgently... as fast as possible.
    So I need a little net. application which works with strings, url and have graphic interface?
    For example: a window with button, which on pushing get some information from one of the url and do something with this information. It doesn't matter...
    Have you smth for me???
    Please!!!

    public class TeachmeJava{
    boolean lazy = true;
    String solution="Study!!!!!";
    public static void main (String args){
    TeachmeJava j = new TeachmeJava();
    if (j.lazy){
    System.out,println(solution);
    Does this help? ;)
    Sorry for the typo. Too many custom tags lately :)

  • My Apple Loops are not selectable. Can anyone help me with this please?

    Whenever I open up my Apple Loops on Logic Pro X, they are not selectable.
    I have tried reinstalling the program and reinstalling the loops, but that did not work.
    Any help would be much appreciated. Thanks!

    What do you mean.. nothing happened?
    Make sure you followed the instructions exactly.....
    From the Apple () menu, choose System Preferences.
    Click Spotlight.
    Click the Privacy tab.
    Drag a folder or an entire volume (your hard drive) to the list.
    If prompted for confirmation, click OK.
    Remove the item or volume you just added to the list by clicking it and then clicking the minus ("-") button.
    Close Spotlight preferences.
    Spotlight will re-index the contents of the folder or volume.

  • Help me with this please.

    I'm in Lightroom 4's Develop tab and my photo has the following error message, 'The file named "DSC04432.JPG" is offline or missing.' What do I do to fix this so I can develop my photo's?

    The message indicates that the image file is no longer in the location it was when it was imported into the LR Catalog. Use Windows Explorer or Finder in Mac to see if you can loacte the file on your HDD. It may have been moved or deleted outside of Lightroom so the connect has been lost. When you have found the location of the file you can let Lightroom reconnect with the file. In lightroom the file will have a ? mark indicating that the link is lost, right click on the file and a dialog will come up and you can dirrect Lightroom to the new location. In the event that the original file is on an external drive that is not connected to the computer you will need to reconnect.

Maybe you are looking for