PIONEER DVR-105 problem only with one set of CDs

My PIONEER DVR-105 works fine with most CDs, but when I bring NOVA Art Explosion CD set home from work, I can't get them to appear on my desktop. I've checked Pioneer website for firmwear upgrades & the last one is for Mac Classic.

This sometimes just happens - a drive won't like a certain set of media. Happens to me with client-provided CDs/DVDs.. There's not much you can do but upgrade the drive to a newer unit.
-Douggo

Similar Messages

  • Error accessing the UWL only with one user

    Hi,
    We have a problem only with one user, when the user access the UWL get the following error:
    Runtime error in the portal
    Exception in processing request, send the ID of exception to your portal ADMINISTRATION
    ID exception 10:54_21/10/11_0037_8766350
    The other user does not have problems accessing the mailbox.
    The user is assigned the role of the mailbox correctly.
    Any idea what may be the problem?
    Thanks and regards

    Hello,
    The best way to see what these issues are is to check the trace for when the run time error has occured:
    Log on to the portal, recreate the runtime error.  Then follow:
    1596214 How to find the latest default trace from right after
    reproducing an issue.  Please ensure that you have reproduced the
    issue with a user that is experiencing the issue that you have reported.  When you find the most recent default trace file, copy and paste the numbers from the portal screen and do a ctrl + F with the trace file opened and paste in the runtime error.  Now you should be able to see what is causing this issue.
    Then when you get this information, please paste or attach the file here that contains the runtime error for the user.  From this we should be able to figure out why the user is getting this.
    Also as an admin user, try clearing this users personalizations on the Universal Worklist first.
    Please clear all personalizations with the affected user and retest.
    Here is the help link to show you how to clear the personalizations:
    http://help.sap.com/saphelp_nw70/helpdata/EN/29
    /441f6f09364bcab17f94490555bee4/content.htm
    If clearing the personalizations does not help this user, please attach the trace file showing the runtime error. 
    Beth Maben
    EP - Senior Support Consultant II
    AGS Primary Support
    Global Support Centre Ireland
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • Only have one set of photo filter choices in ios 7

    My iPhone 5s, running ios 7, is only showing one set of filters in the native photo app. This is true for both the camera and the editing process. It originally showed many groups of filters with choices for each group. When I selected a group to use, I no longer see the original groupings and now am stuck using just a basic set of filters such as "Chrome," "Noir," etc...
    Does anyone know how to fix this so that all the filters show up again?

    If you edited the photo directly in the camera roll album, the edited photo should have appeared automatically in the camera roll album.
    Otherwise you need to press the "share" button and select "Camera Roll":
    See:   http://help.apple.com/iphoto/iphone/2.0/?handbuch#blnka97fbb1f
    To switch between viewing the original photo and the edited version, tap .
    If you edit a photo in the iPhoto Camera Roll album, the edited photo automatically appears the Camera Roll on your iOS device, at the resolution of your device. If you want a full-resolution version of the edited photo sent to the Camera Roll, tap and tap Camera Roll. The full-resolution photo appears in the Camera Roll, and is transferred to your computer when you sync the Camera Roll with your computer.

  • Text file will only print one set of input and puts in end for name.

    Okay, I have this more or less straightened out. Only thing is, it creates the text file, and will only enter one set of data. It will not print the other students information to the text file. The other thing it does is puts in the student name as end. I think that has something to do with the fact that I need to compare the student name field (SName) to end, so the program can be ended. Anyone have some ideas? I have been working on this for almost 2 weeks, and am about ready to throw the computer off a cliff..
    Thanks.
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    import java.util.*;
    import java.text.DecimalFormat;
    import java.lang.Comparable;
    class my_main
         public static void main (String [] args) throws IOException
         gradebook pt= new gradebook();
         pt.compare();
    class gradebook
         char LG;
         double gr1;
         double gr2;
         double gr3;
         double avg;
         String SName;
         String IDNO;
         String nameupper;
         int compareTo;
         void compare()throws IOException
         FileWriter file= new FileWriter("Grades.txt");
         BufferedWriter bw= new BufferedWriter(file);
         PrintWriter outfile= new PrintWriter(bw);
    BufferedReader stdin;
    stdin= new BufferedReader (new InputStreamReader (System.in));
    System.out.println("Enter Student Name or End to Quit: ");
    SName= stdin.readLine();
    nameupper= SName.toUpperCase();
    DecimalFormat fmt= new DecimalFormat ("##.##");
    outfile.println ("");
    outfile.println (" STUDENT GRADES ");
    outfile.println ("");
    outfile.println ("SName ID # GRADE 1 GRADE 2 GRADE 3 AVERAGE LETTER");
    while(nameupper.compareTo("END")!=0)
    if (nameupper.equalsIgnoreCase("END"))
    break;
         System.out.print ("Student ID: ");
         IDNO= stdin.readLine();
         System.out.print ("Grade One: ");
         gr1= Double.parseDouble(stdin.readLine());
         System.out.print ("Grade Two: ");
         gr2= Double.parseDouble(stdin.readLine());
         System.out.print ("Grade Three: ");
         gr3=Double.parseDouble(stdin.readLine());
         System.out.println ("");
         avg=(gr1+gr2+gr3)/3.0;
         if (avg >= 90) LG = 'A';
    else if (avg >=80 && avg <90) LG = 'B';
    else if (avg >=70 && avg <80) LG = 'C';
    else if (avg >=60 && avg <70) LG = 'D';
    else LG = 'F';
    System.out.println("Enter Student Name or End to Quit: ");
    SName= stdin.readLine();
    nameupper= SName.toUpperCase();
    outfile.print (""+SName);
    outfile.print (" "+IDNO);
    outfile.print (" "+fmt.format(gr1));
    outfile.print (" "+fmt.format(gr2));
    outfile.print (" "+fmt.format(gr3));
    outfile.print (" "+fmt.format(avg));
    outfile.print (" "+LG);
    outfile.println("");
    outfile.close();
         

    Not 100% sure this is what you're after, but it seems to work OK
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    import java.util.*;
    import java.text.DecimalFormat;
    import java.lang.Comparable;
    class my_main
      public static void main (String [] args) throws IOException
        gradebook pt= new gradebook();
        pt.compare();
    class gradebook
      char LG;
      double gr1;
      double gr2;
      double gr3;
      double avg;
      String SName;
      String IDNO;
      String nameupper;
      int compareTo;
      void compare()throws IOException
        FileWriter file= new FileWriter("Grades.txt");
        BufferedWriter bw= new BufferedWriter(file);
        PrintWriter outfile= new PrintWriter(bw);
        BufferedReader stdin;
        stdin= new BufferedReader (new InputStreamReader (System.in));
        System.out.println("Enter Student Name or End to Quit: ");
        SName= stdin.readLine();
        nameupper= SName.toUpperCase();
        DecimalFormat fmt= new DecimalFormat ("##.##");
        outfile.println ("");
        outfile.println ("STUDENT GRADES ");
        outfile.println ("");
        outfile.println ("SName ID # GRADE 1 GRADE 2 GRADE 3 AVERAGE LETTER");
        while(nameupper.compareTo("END")!=0)
          if (nameupper.equalsIgnoreCase("END"))
          break;
          System.out.print ("Student ID: ");
          IDNO= stdin.readLine();
          System.out.print ("Grade One: ");
          gr1= Double.parseDouble(stdin.readLine());
          System.out.print ("Grade Two: ");
          gr2= Double.parseDouble(stdin.readLine());
          System.out.print ("Grade Three: ");
          gr3=Double.parseDouble(stdin.readLine());
          System.out.println ("");
          avg=(gr1+gr2+gr3)/3.0;
          if (avg >= 90) LG = 'A';
          else if (avg >=80 && avg <90) LG = 'B';
          else if (avg >=70 && avg <80) LG = 'C';
          else if (avg >=60 && avg <70) LG = 'D';
          else LG = 'F';
          outfile.print (SName+" "+IDNO+" "+fmt.format(gr1)+" "+fmt.format(gr2)+
                          " "+fmt.format(gr3)+" "+fmt.format(avg)+" "+LG+"\r\n");
          System.out.println("Enter Student Name or End to Quit: ");
          SName= stdin.readLine();
          nameupper= SName.toUpperCase();
        outfile.close();
    }

  • HT201066 I have problem with recently with playing DVDs on my iMac. the problem only with DVDs, please anybody can help me solve this problem?

    I have problem with recently with playing DVDs on my iMac. the problem only with DVDs, please anybody can help me solve this problem?

    Get a lens cleaner disc. One with brushes and try that. CDs and DVDs use different lenses, so since CDs load and play, I strongly suspect a dirty lens.

  • My folders in my email accounts are not on my phone?  Only with one email address are they.

    My folders in my email accounts are not on my phone?  Only with one email address are they.       Any reason why?

    Care to share which OS, email client & versions you are using?
    iOS is for mobile devices. 

  • I upgraded my iphone to 5.0.1 and ever since, it has decided to delete old text messages. Only with one contact though, not everybody. So for every new text message I send this person, an old one gets removed. Why? I don't want this to happen.

    I upgraded my iphone to 5.0.1 and ever since, it has decided to delete old text messages. Only with one contact though, not everybody. So for every new text message I send this person, an old one gets removed. Why? I don't want this to happen.

    Connect the phone directly to the computer, not a hub.
    Disconnect all other USB devices except keyboard and mouse.
    Disable your firewall
    Disable your antivirus
    In iTunes if it recognizes the phone click "Restore"
    If it doesn't recognize the phone:
    Disconnect the phone from the phone end, leave the USB cable plugged into the computer
    Hold the HOME and SLEEP buttons until the screen turns black, excactly 10 seconds, then release the SLEEP but continue holding the HOME (If an Apple logo appears you have held SLEEP too long; do it over)
    While holding HOME connect the cable to the phone
    As soon as iTunes recognizes the phone release the HOME button and it should restore.
    If neither procedure works note the exact error message and post it.

  • Pioneer DVR-105 Not Working In Quicksilver...Any Ideas?

    i just bought a dvr-105 on ebay. i installed it, and it's recognized in the system profiler, and it ejects and i can put a disc in there...but then the disc is never recognized. i try different discs, and dvds and cds...but it never spins up and acknowledges the disc.
    i have it set to "master" on the jumpers, and the firmware is version 1.33, which seems to be the newest one. any help would be greatly appreciated.

    I checked out your link to Pioneer. I see that v 1.33 is listed as a Windows firmware version and v 1.30 is for Mac, so I would start there.
    I believe some devices require that you boot into OS9 in order to install the Mac firmware, however, the firmware update itself is not OS dependent. You will need at least an OS 9.2.1 boot CD or drive partition, or it can boot to OS 9.2.0 if it is the original QS G4 disk.
    I was using my QS G4 exclusively under OS 9.2.2 when I had first used the DVR-105 drive, but I had no problems when I later upgraded the OS to 10.3.5.
    I have since moved the drive to my back-up B& W G3, but I have never experienced any problems.

  • Tiger and pc version of the Pioneer DVR-110D problems

    ok here we go
    I have tried the Beige G3 part of this forum with no luck cause i use a Beige G3 AIO
    ok i have a Beige G3 AIO with a pc version of the pioneer DVR-110D running tiger 10.4.7 the drive will hardly work in tiger but will work flawlessly in 10.2 - 10.2.8, OS 9.x, windows 98, windows xp
    the only way this drive will work in tiger is if i reboot with a disk in the drive and then it will work. but it will some times decide to stop working after 20 minutes or until i take out the disk.
    some times it will stay working until i try to play dvd movies or try to burn with it then it will stop working and have to reboot with a disk in the drive in order to get it working again. if i don't reboot with a disk in the drive the drive will not work at all until i reboot with a disk in the drive.
    im not sure if tiger is using a wrong driver for the drive or what. i know the drive is not bad cause it works so good under OS 9 and OS X 10.2 - 10.2.8. i can burn i app's under OS 9.2.2 with a modded pioneercdr authoring extension, and i can burn under OS X 10.2 - 10.2.8 with patchburn. but tiger refuses to work with the drive.
    other than that tiger is running flawlessly on my Beige G3. the way it seems that its using a improper driver for the drive cause there is a apple branded version of the Pioneer DVR-110D with a modded firmware and a standard PC Pioneer DVR-110D with a pc firmware. if tiger is trying to use the drive as the apple version of the drive it can cause this cause the firmware is totally different from the standard pc version of the drive.
    is there any one that can shed some light on this. maybe a driver edit or something maybe firmware to the apple version so i can try to flash this pc version to the apple firmware. or something. this drive should work as is if it works so great under OS 9.x, OS X 10.2 - 10.2.8, windows 98, and windows xp.
    another problem i have is not being able to boot any OS X cd by normal means. i can get it to boot the 10.2 install cd by having the cd in the drive and hold the command option and power key's for about 5 seconds and some how the drive is tricked to boot and it does but it always fails to install cause the drive stop's working during the copy process.
    the drive will boot the tiget install cd (with help from xpostfacto) without doing the trick to get OS X 10.2 install cd to boot but will still fail during the copy process. i know the fix for this is to get ahold of the apple version firmware for the DVR-110D drive. that also might fix the problem that it has under tiger. but it weird since the drive works great under OS X 10.2 - 10.2.8
    sorry for making this a monster post but i would love to et this drive to work like it should under tiger like it does under the other OS's
    BTW tiger is running great on the old beast besides the pioneer drive problem. not once has tiger failed to boot, not once has tiger crashed, ive timed this system on its boot time into tiger (34 seconds from start chime to full working tiger)its kinda sad to have tiger working so great but has this problem with the pioneer drive

    i didnt say i used patchburn in tiger, only in jaguar did i use patchburn to gain burn support. altho i can try to use patchburn in tiger to see if it would help with the issue. AKA it seems like a driver issue to me
    on how it will mount disk's when i reboot with a disk in the drive but will only halfway work. but will not mount anything if i boot without a disk in the drive when i put a disk in . but ASP in the ATA tap will show the drive . i can select disk burning in ASP only when the drive is working in its halfway state to show info. if i try when its in its non working state is will lock ASP up and some times throw tiger into a kernel panic when i try to reboot . after all that if i leave the drive alone tiger is ok

  • Install failure due to "faulty DVD" problem: only with Family Pack?

    After going through a few threads on the subject of installation failure due to tbe pseudo-faulty DVD, I have the impression that many users mention that they were using a Family Pack install DVD or in one case a "drop in". The former is my case. Please post if you have had this problem with Leopard install, and whether you were using a single licence, family pack or drop in. It's just a hunch, but perhaps this problem only affects a specific set of disks.

    I believe that they are holding back on sending a new DVD until they know why there were defective ones. I read somewhere that they require a new SKU so that they will actually be a separate batch.
    Can you borrow a DVD from anyone to install Leopard? You certainly would be allowed to legally do that. I am surmising that Apple is overloaded with requests for a replacement DVD and really want to make sure it works. You know that old thing about "fool me once..."
    Stuff happens - but with Leopard, a lot of stuff sure happened at once. They sold 2 million DVDs. If only 5% have problems, that's a lot of problems to deal with, one at a time.
    In time it will sort itself out, but in the meantime the rooms are full of smoke

  • What would be the reasons for my iMac keyboard to freeze up while online? Several page reloads brings it back but only for one set of typing. If I stop or need to delete it freezes.

    Using Firefox, Safari and Chrome depending on what I am working on or gaming. All recent updates as of 3.19.13
    iMac is fully loaded first quarter 2009 model. I use Office.
    Problem:
    While online typing just stops. This occurs most frequently when I have to change something or delete, it does not matter how many letters or numbers.
    Page reloads sometimes take 2 or 3 times for any effect, then it is only for one straight set of typing. If I have to stop and delete or go back and do something as small as adding a letter it will not type. The is well known muted "dump" sound.
    Is it possible that I was somehow infected with malware? No one else uses the computer and I do not go to any sites I am unfamiliar with or are gambling or ****.
    Help please. I am a writer.

    Take a look at your computer's CPU and RAM usage with Activity Monitor, It some like your system is slowing down not you keyboard.  Take a look at this link, http://support.apple.com/kb/HT1342?viewlocale=en_US&locale=en_US
    Also try to verify/repair your hard drive with disk utility, see this link, http://support.apple.com/kb/HT1782?viewlocale=en_US&locale=en_US

  • Apple DVD Player & Pioneer DVR-112D problem

    Hi,
    I am not sure in which section I should post this question, so please forgive me.
    I have an *iMac G4 700MHz Flat Panel* (without DVD drive) running Mac OS x 10.2.8.
    I have recently purchased from macsales.com an OWC Value Line Dual Layer DVD-/+RW
    *Pioneer DVR-112D 18X External optical drive*, and, following their instructions, I've installed PatchBurn 1.1b on my iMac. Unfortunately, when I am trying to play anything on my Apple DVD Player I keep recieving a message informing me about some error and saying that proper driver hasn't been installed. After that, DVD Player shuts down.
    When I look at the diagram in Apple System Profiler (Devices and Volumes) I can see my new Pioneer drive either in USB Information section (when I connect it with my iMac via USB port) or FireWire Information section (connected via FireWire port), and the Pioneer drive is reported as a fully supported one. I never get my Pioneer drive shown in Bus section of the diagram (as it is shown on their website), but I guess it is OK, since it is an external drive.
    What could be the cause of my problems with playing DVDs?
    Do you think that it is a driver problem or application problem? Apple DVD Player hasn't been used before since I have not had any DVD drive on my iMac.
    Any help will be appreciated.
    Abadon
    Message was edited by: Abadon
    Message was edited by: Abadon

    iDVD6 & iMovie mandate a firewire connection (not usb).
    In terms of the drivers, you'll have to contact the vendor to get more info should any drivers be required via firewire.
    My own ext. FireWire Burner doesn't require any 3rd party drivers whatsoever. But this may vary from vendor to vendor and from drive to drive.

  • Server refuses connection ONLY with one certain domain name AND from one hard drive

    OK, this is kinda crazy and complicated, so bear with me and thank you for your interest. I have a Mac Pro with (3) Internal drives:
    Boot is a SSD with all my apps and system software running 10.6.8. That's it.
    Master has all my data files.
    Mountain Lion has a clean 10.8 install, but I rarely use it.
    I am a web developer and have a Wordpress site at www.timfleming.com
    When I visit the site with Boot drive, it isn't loading the site correctly in any browser (Chrome, Safari, FF). It looks like no CSS is being applied and the image links are broken. I can get to my WP login page, but when I enter my credentials, the connection is refused by the server. Nor can I access the site via FTP in Filezilla.
    If I visit with the Mountain Lion drive, no problem. Login no problem either.
    Aha! You might say, there's some incompatibilty between your site and 10.6.8. Well, you would be wrong. I also have a MacBook Pro running 10.6.8 and the latest versions of Chrome, etc and have no problem connecting with it.
    Even stranger, I have a local dev site, timfleming.com, that I cannot access with MAMP! Server refused connection
    It's as if timfleming.com has been permanently banned from this machine!

    You, or someone using your computer, may have modified the file /etc/hosts.
    The easiest way to fix the hosts file is to restore it from a backup that predates the modification, or to copy the unmodified file from another Mac. If you can't do that, then do as below. Please read this whole message before doing anything.
    Back up all data. This is a simple procedure, but if you don't follow the instructions exactly, you could be left with an unbootable system. In that case, you'll have to restore from a backup or reinstall OS X.
    If you have more than one user account, you must be logged in as an administrator.
    Triple-click anywhere in the line below to select it:
    open -e /etc/hosts
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). A TextEdit window should open. At the top of the window, you should see this:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1                              localhost
    255.255.255.255          broadcasthost
    ::1                                        localhost
    fe80::1%lo0                    localhost
    Below that, you'll see some other lines. There should be nothing above the first line "##". If you have any doubt about that, STOP and ask for guidance. Make sure you scroll all the way to the bottom of the document. Scroll bars are hidden by default until you actually start scrolling, so you may not realize that you’re not seeing the whole document.
    If the contents of the TextEdit window are as described, close it, then enter the following command in the Terminal window in the same way as before (by copy and paste):
    sudo sed -i~ '11,$d' /etc/hosts
    This time, you'll be prompted for your login password, which won't be displayed when you type it. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning to be careful. Confirm. Quit Terminal.
    If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Log in as one and start over.
    That will fix the hosts file. There is now a copy of the old hosts file with the name "hosts~" in the same folder as "hosts". You can delete the copy if you wish. Don't delete the file named "hosts".

  • Airplay iphone problem only with music player

    I have seen many discussions relaiting to airplay problems and now that I own both an iPhone 5s and a Bose Soundlink Air. I have discoverd there is possible a problem with Apples' software with the music player.
    I have sucsessfully played music from itunes from three Macs in my house to the Bose SoundLink Air via wi-fi. All worked perfectly. I also used Remote from three iPhones, 3G, 3GS and 5S and again all worked fine. I have also used a radio app on each of the three phones and airplayed the radio direct to the Bose Soundlink Air and it all works perfectly.
    However, when ever I play music (on the phone) direct to the Bose Soundlink Air, I get the usual complaining from other users of the sound plays for 20 seconds or so then cuts out etc. etc.
    As mentioned above, if I play radio direct it works so why can't music (as its now called) on the iPhone. Seams to me the bug is in the music player that Apple has on the iPhone.
    I might try another player (like VLC) and let you know if that works then we will know for sure the bug is with Apple.

    Okay, Spoke to Bose and explained the problem. He said that because the air play was dropping out with multiple iPhones then the problem was with the unit. He told me to return the speaker system, which I did.
    So here's the interesting part...
    I then purchased a set of Bose Computer speakers (cheap one's) and a new AirPort Express and found the same thing was happening, 'Airport drop outs'. So I swopped over the new AirPort for my old Airport Express and that has worked perfectly for the past half week.
    So my conclusion which I have yet to discuss with my local Apple Store is the new AirPort products are not totally compatible with the old Airport products.
    BTW I am using a 2nd gen Time Capsule to send out my wi-fi signal (may be time for an upgrade) but it works perfectly with all the rest of my old Apple stuff (and so far our new iPhone 5s's).

  • "@font-face" problem only with firefox. I have attached a style sheet while i was embedding my personal fonts into a website, but Firefox won't load them. Why?

    I was hand coding my new website. This time i was trying to embed some personal fonts into my website, so i used a style sheet to embed which is coded like
    "@font-face {
    font-family:Sofia;
    src:url(../fonts/Sofia-Regular.otf);
    All the font work fine in the root folder of my site. But whenever i am creating dreamweaver templates and using them on pages which are in different folders but in the same root directory, the fonts are set back to default font. This problem is only with Firefox. Chrome, IE, Opera etc. works fine. Please Help!

    i run into the same problem the last days.
    using bootstrap and the fontawesome iconfonts.
    everythings fine with chrome an ie, but no fonticons with firefox...
    found alot of solutions, but none of them worked.
    then, using the webdeveloper console (i used firebug all the time before) i see the error why the webfont was not loaded:
    [14:18:36.161] GET http://www.example.com/font/fontawesome-webfont.ttf?v=3.2.0 [HTTP/1.1 401 Authorization Required 21ms]
    yes, the site is behind a '''htaccess''' login.
    first load after login is => everything ok!
    after following an internal link => no webfonts!
    after disabeling the htaccess login, everything works fine!
    but that can only be a workaround!
    why firefox didnt recognize the login/authorization like chrome does?!
    what todo if you have your site behind htaccess and want to use webfonts?!

Maybe you are looking for

  • Computer restarts when ipod is plugged in

    Hey! I just bought new 30g video ipod but now when i plug it in to my PC, blue screen appears and PC crashes. I have tried to reinstall all ipod software, format my pc and tried different USB ports and none of these worked. Here's some blue screen me

  • ALE doesn't work - possiblity to notify anyone via e-mail...

    Hi, at times our system doesn't send IDoc's via ALE. I can see that in transaction SM58. If we have that problem, we identificate that problem to late (10 hours later). Is there a possibility to send a mail or notfication if the interface doesn't wor

  • SOLVED (?): my problem with HotSync (USB, Zire 72 and Win XP)

    As noted in many other messages, it is not uncommon for the HotSync to fail with USB connection when the "Local USB" option disappears from the manager menu. I noticed this earlier today and like many others had information that I needed to transfer

  • LineChart data tip won't display with single data point?

    Hi, I have a Flex 3 LineChart with LineSeries which use CircleItemRenderer. If there is only a single data point to display, the data tip is not displayed. If there are several data points, each data tip is displayed correctly. How can I make the dat

  • Replacement path error!

    HI all I am using BI 7.0; I have a characteristic ZPL_CNT in cube; now i want to use the value of the characteristic as column in Query. So i created formula variables with replacement path processing type: setting: i created a new formula "Calculate