PC Suite 6.84 - error message 1078 - duplicate nam...

Having installed OC Suite, it will not complete connection with my Nokia 6300. It finds the phonem but cannot complete the installation of the hardware.
The error message is "The name is already in use as eitehr a servcie name or servcie display name".
I realsie that thgis is a Windows error mesage (number 1078), but has anyone else got this and how is it cured?
I run:
Windows XP Home with SP2
PC Suite 6.84
Connection via cable
I also have Microsoft ActiveSync installed on the PC (version 4.5 = latest version). If all else fails, can I use this to connect my phone to the PC?
All urgent advice welcome - I have spent over 3 days on this and still got no answers.
Thanks in advance

Thanks for this.
These are the steps I had tried coutless times over the last three days or so - always came back to the same problem.
I have now found the solution, and got my phone installed, but no thanks to Nokia Technical Support - it was due to a post on a message board at
/discussions/board/message?board.id=pcsuite&message.id=16290#Ma61290.
Basically, the Nokia Uninstall software (or the PC Suite cleaner software) does not go far enough. In particular, it needs to delete any keys in the Registry under Local_Machine\System\CurrentControlSet\services that include nmwcd in their name - there were 4 in my Registry. These relate to the USB drivers for the generic phone, phone parent and modem. Curently, these have to be deleted manually.
Without these deleted, Windows rightly thinks that the phone alreday exists, because these Registry keys say it is. This is not a Windows problem (as the Nokia Tech Support people via Nokia Customer Care UK insisted to me twice), it is a Nokia problem. Their uninstall/cleaner software is not good enough when you have to install a new version of PC Suite and it needs sorting PDQ, as I and loads of others (as is evident from the message boards) have the same problem.
neil

Similar Messages

  • Error message: 1021: Duplicate function definition.

    Hi All,
    First let me start by saying that I know next to nothing about Flash.  I have inherited a website maintenance project that has a Flash rotating image banner.  I have managed to get the images to fade-in and fade-out correctly, but now I need to make these images clickable - linking images to pages in the website.  I have read many posts here and have reviewed the video tutorials.  I have been able to get the first image clickable using this AS3 action:
    mars_btn.addEventListener(MouseEvent.CLICK, buttonClickHandler);
    function buttonClickHandler(event:MouseEvent) :void {
            navigateToURL(new URLRequest("http://somewebsite/mars.php"));
            trace("I'm clicked");
    However, when I attempt to make another image clickable by using a different instance of a button I get the error message:
    1021: Duplicate function definition.
    I have a separate instance of a button with this AS3 action:
    jupiter_btn.addEventListener(MouseEvent.CLICK, buttonClickHandler);
    function buttonClickHandler(event:MouseEvent) :void {
            navigateToURL(new URLRequest("http://somewebsite/jupiter.php"));
            trace("I'm clicked");
    Obviously I'm not understanding how I'm supposed to do this so that I don't create a duplicate function definition.  Any help would be most appreciated.

    excuse me , I have a question i hope that you help .. ( im new in here )
    we were asked to create an interactive application on flash in two languages..
    so i created two different fla files same exact codings ... i was wondering how can i combine them so the viewer can be able to choose the language from a button ?
    when i try to combine them i get lots of errors of duplications in the actionscript
    PS : MY MAIN PAGE INCLUDES A CAROUSEL with images ..
    I was thinking of saving one of the fla  as a movie and then add it some how to the second fla and combine it with a button but i can't figure it how..
    i hope i was clear enough.. but is there any possibility to help me please ?!
    when i tend to change names or something it creates error.. ( IM NOT A PRO IN AS3 ) and when i dublicate the scenes it give duplication errors.. WHAT IS THE SOLUTION ??
    this is the code of the actionscript in the main page.. ( the carousel's code i took from someone ) and i used it on my project
    import com.ccanvas.carousel.*;
    var centerX:Number = stage.stageWidth/4;
    var centerY:Number = stage.stageHeight/4;
    var carc:Carousel = new Carousel(centerX, centerY, 256, 75, "icons.xml");
    carc.addTooltip(new tooltip); // use 'tooltip' movieclip for item tooltip
    addChild(carc); // add carousel to stage
    function down(event:MouseEvent):void {
    trace(event.currentTarget.toolText); // simple click interaction
    function destroyCarousel(event:MouseEvent):void {
    carc.destroy(); // remove all item in carousel as well as tooltip
    function removeNextItem(event:MouseEvent):void {
    if(carc.numOfItems > 2) {
      carc.removeItem(2); // remove the item next to the remove item icon
    create.addEventListener("mouseDown", createCarousel);
    function createCarousel(event:MouseEvent):void {
    if(carc.CREATED == false) {
      // recreate the carousel
      carc = new Carousel(centerX, centerY, 256, 75, "icons.xml");
      carc.addTooltip(new tooltip);
      addChild(carc);
    }/* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Tools_button.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene);
    function fl_ClickToGoToScene(event:MouseEvent):void
    MovieClip(this.root).gotoAndPlay(1, "Toolse");
    }/* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    games_button.addEventListener(MouseEvent.CLICK, fl_ClickToGoToGames);
    function fl_ClickToGoToGames(event:MouseEvent):void
    MovieClip(this.root).gotoAndPlay(1, "Gamese");
    }/* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Identity_button.addEventListener(MouseEvent.CLICK, fl_ClickToGoToIdentity);
    function fl_ClickToGoToIdentity(event:MouseEvent):void
    MovieClip(this.root).gotoAndPlay(1, "Identitye");
    }/* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Reviews_button.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_13);
    function fl_ClickToGoToScene_13(event:MouseEvent):void
    MovieClip(this.root).gotoAndPlay(1, "Reviewse");
    }/* Click to Go to Scene and Play
    Clicking on the specified symbol instance plays the movie from the specified scene and frame.
    Instructions:
    1. Replace "Scene 3" with the name of the scene you would like play.
    2. Replace 1 with the frame number you would like the movie to play from in the specified scene.
    Facts_button.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_20);
    function fl_ClickToGoToScene_20(event:MouseEvent):void
    MovieClip(this.root).gotoAndPlay(1, "Factse");

  • OBA5 : Error Message for duplicate entry

    Hi
    In Tcode OBA5 - i enter F5 as Apllication area and i select new entries - i Enter 117 - and i Enter E before i save.
    but when i go to MIRO to check if there is an error message for duplicate entry, i find just a Warning Message !
    Please did i forget any thing ? please advise.
    Thank You,

    Hello,
    OBA5 should be enough, but you must remenber that the following fields must be identical for duplicate invoice check:
         Company code                           (BUKRS)         
         Vendor number                           (LIFNR)         
         Currency                                    (WAERS)         
         Reference number                       (XBLNR)         
         Amount in document currency      (WRBTR)         
         Document date                           (BLDAT)         
    Note 305201 is also helpful.
    Cheers

  • Customizing error message of duplicate record

    HI All,
    I need to customize an error message of duplicate record inserting in a field of unique-constraint. I want to show the message in an alert. How can i do this?
    Arif

    Hi,
    you can use ON-MESSAGE trigger and check the error code then display your custom error message
    Regards,

  • Acrobat Suite Product Activation Error Message

    I have Mac OS X 10.6.8 and updated Acrobat Pro to 9.5.1. All of the sudden (not anywhere near the time that I updated) I started getting the "Acrobat Suite Product Activation Error Message". Then it closes and quits.
    Launching Photoshop (or having it open) does nothing. The other similar forum discussions seem to concern Lion, which I don't have yet. Solutions?

    The Acrobat X Suite has Acrobat X not Acrobat 9 Pro.  So it begs the question do you have Acrobat 9 Pro Extended?

  • Error message "A duplicate file name was specified"

    Every time I open iTunes or attempt to make a purchase, I get the error message "A duplicate file name was specificed. There was an error in the iTunes Stores. Please try again later."
    It started when I tried to download a book a few days ago.
    I do not have any plugins installed, so there are none to remove/disable. I'm running the most recent version of iTunes (11.0.5) for Windows 7 (64-bit). I tried clearing the iTunes cache to no avail.

    Try and unchecking Manually manage music and videos on the summary page in iTunes. To get there, just go to ____'s iPod, scroll down, and it should be there. You can then check any other boxes (or uncheck) that you think might help you. That box might have automatically checked itself after the update. Also, make sure you have the latest version of iTunes by going to the apple in the top left hand corner, and clicking software update.

  • My ipad receives email with the hotel wifi but will not send.  The error message is "user name or password for ........is incorrect" but both are correct and unchanged.  Restarting iPad didnt help.

    My iPad receives email on the hotel wifi but will not send.  The error message reads "user name or password for smpt......is incorrect" but both are correct and unchanged.  Restarting iPad did not help.

    I did try this too, but when I access my webmail on the iPad, the iPad doesn't allow me to type my message.  I am able to enter in the "to" address and the "subject" line, but then the keyboard will not come up for me to type my message.  Is there some trick to this?  Very frustrating!

  • TS3899 Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect

    Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect". Help

    Hotmail is having problems:
    http://bostinno.streetwise.co/2013/08/15/hotmail-outage-hotmail-is-down-for-user s-still-photos/
    http://www.engadget.com/2013/08/14/outlook-outage/
    http://www.infoworld.com/d/applications/microsofts-skydrive-outlookcom-are-down- some-users-224940
    http://mashable.com/2013/08/14/outlook-down/
    http://techcrunch.com/2013/08/14/microsoft-acknowledges-outlook-com-messenger-sk ydrive-outages/

  • When I try to open a document created in Pages, I get an error message saying "[Document Name" can't be opened."  I don't want to lose hours of work; has anyone else encountered this?

    When I try to open a document created in Pages, I get an error message saying "[Document Name" can't be opened."  I don't want to lose hours of work; has anyone else encountered this?

    A few general trouble shooting tips that may apply here:
    1. If you used Software Update to do the OS update(s) to reach 10.6.7, go to http://support.apple.com/downloads/ and download and apply the Mac OS v10.6.7 Combo Updater. The Combo Updater contains some fixes that were not included in the incremental updaters used by Software Update.
    1a. Check that you have the current version of Pages (and of the other iWork applications) installed. All three applications' current version numbers end in .0.5
    2. A common cause of malfunctioning applications is a corrupted preferences file (.plist file). Your Pages '09's plist is at yourname > Library > Preferences > com.apple.iWork.pages.plist
    Quit Pages, locate the file and Drag it to the Desktop (or to the Trash).
    Restart Pages and attempt to open one of the files.
    If all is well, Trash the plist file and empty the Trash.
    If there's no change, AND you've made changes to the Preferences that you wish to keep, drag the file back to its previous location, replacing any new one that has been created.
    Regards,
    Barry

  • I cannot open files in excel with error message "The file name or path contains invalid characters

    I cannot open files in excel with error message "The file name or path contains invalid characters

    Found the solution. The hardrive name was changed to "/" which is not a recognised file path character. So I changed the name to "Mac" then I was able to already open all files in excel and word

  • When checking email I now get an error message saying User name or password is incorrect...

    When checking email I now get an error message saying User name or password is incorrect...  Went to AT&T store and they didn't have a clue how to fix it...
    I'm sure this question has been asked, but can someone point me in the right direction? 

    I am also having the same problem and I did go on my computer and change the password and my iPad still gives error message. Yes wish someone could help.

  • Why did I get an error message; installer: Package name is Adobe reader XI (11.0.10) installer: Certificate used to sign package is not trusted. Use -allowUntrusted to override?

    why did I get an error message; installer: Package name is Adobe reader XI (11.0.10) installer: Certificate used to sign package is not trusted. Use -allowUntrusted to override?

    Hi sgtwalker1226,
    For Which operating system are you downloading the installer?
    Regards,
    Rahul

  • Uninstalling creative suites 4 - with error messages

    Hey.  I need help.  I got a new imac so I was transfering all my infor from my old macbook pro to the new one (took 40 plus hours!).  I go to edit some photos and when I go to open some there is an error message that pops up saying "Fatal error - missing components".  So I'm thinking that I should just uninstal and reinstall all my creative suites 4 programs and reinstal them.  But when I go into Photoshop one and uninstall it, it says that there is a startup error  and can't because of missing files.  What do I do to fix that?  And I tired opening files in illustrator too and same thing. 
    Help!! 
    Oh and I'm not very good with all the tech stuff when it comes to computers, so yeah. 
    Thanks!

    Run the Creative Cloud Cleaner Tool, reinstall using the original download/ discs.
    Mylenium

  • Installing PC Suite on PC - Error message 1500

    I am having difficulty installing PC Suite version 6.8 on my pc. I keep getting an Error 1500 message when downloading the software. I started to download it once and it froze my computer so i shut the computer down and restarted. Now when i try and download the software properly i get the error message saying that the original download is still progressing!!
    Can anyone help please?

    Hi,
    Try this:
    1. Restart Your PC
    2. Connect to net and go to wep page http://www.nokia.co.uk/nokia/0,,72026,00.html
    3. select your phone, click continue, select language and click download
    4. then there should pop-up Run/Save dialog, select Save and save it C:\Temp\ folder
    5. After download, start Explorer and go to C:\Temp\ folder and double-click that Nokia PC Suite installation file -> does the installation start OK?
    Or where it fails?

  • Creative Suite Color Settings Error Message

    I have completely bought and installed Indesign CS5.5, Photoshop CS5 Extended and Illustrator CS5. The Adobe Bridge was of course installed with each of these packages. Now I try to setup one colour setting in Illustrator save it as required, than I start the Bridge, got to edit -> Creative Suite Colour Settings (just for synchronization) and I get a nice Error message, telling me that Colour Management can not be enabled.
    My question now, do I really have to buy all theses software packages again in an adobe creative suite edition, or is it also possible to synchronize these settings if one buys this software applications separately?

    That question is beyond me.  You might try posting this in the Creative Suite forum.  http://forums.adobe.com/community/creativesuites/creativesuites_windows

Maybe you are looking for

  • When Ripping CD, iTunes Displays Wrong Artist & Wrong Album

    Thanks for looking at my post! When I try to rip a CD, iTunes thinks it's a different CD. Even when I change all of the song tracks, artist, and album name . . . I can't change the time. Of course the two CD's have different song lenths, so the songs

  • Camera Raw Camera Calibration Tab and 5D Mark III

    I don't think that many people do this in camera raw, but it was kind of an important step in my workflow with the Canon 7D before and is just not working the same way with the 5D Mark III now. In the Camera Calibration Tab (Third from the right side

  • Unable to select tunnel mode ipv6ip

    Hi. Please, can you explain why I am not able to select tunnel mode "ipv6ip" on my switch. I would like to configure tunnel from Hurricane tunnelbroker.net. switch-cisco-lab-cor(config-if)#tunnel mode ?  aurp    AURP TunnelTalk AppleTalk encapsulati

  • Please help, can't run iTunes

    I last used my iTunes on Monday with no problem. When i tried to use today the message "iTunes cannot run because it has detected a problem with your audio configuration" came up. The same message appears when i connect my iPod. I have uninstalled iT

  • Which one i should buy?

    Dear all I am a new member to the forom, i joined today. I am seeking for your suggestion. I want to buy mobile phone, nokia product between E72 and C7. Which one is more better? Suggest me with their advantage and dis advantage pls. Thanks hope to h