Follow-up to my last question/post!

Along with not being able to copy onto my iPod...I get inot a series of loops regarding "analyzing gapless playback information"....and it goes on...forever.
Any help?

Of course you can't select it. The 6D 00 means the INS is incorrect.
To select an applet the ISO7816 standard calls for CLA=00 INS=a4 P1=04 P2=00 LC=(size of CDATA)CDATA=applet AID
Give that a shot and let me know...
BTW, Your welcome ! I want to help out the community.

Similar Messages

  • A follow up to my last question

    i have a preamp in hopes of getting more power into the audacity editor but im not sure my preamp will work with my amp..is there something in the new
    soundcard thatll help with this?
    coonsanders

    For laughs here an example using reflection.
    First an interface because we're trying to be good O-O coders:
    import javax.swing.*;
    public interface DialogFactory {
        JDialog createDialog();
    }A sample dialog class:
    import javax.swing.*;
    public class SampleDialog extends JDialog {
        private static final long serialVersionUID = 0;
        public SampleDialog(JFrame owner) {
            super(owner, "SampleDialog", true);
    }My reflection factory;
    import java.beans.Expression;
    import javax.swing.*;
    public class ReflectionDialogFactory implements DialogFactory {
        private String classname;
        private JFrame owner;
        public ReflectionDialogFactory(String classname, JFrame owner) {
            this.classname = classname;
            this.owner = owner;
        @Override public  JDialog createDialog() {
            try {
                Class<?> cls = Class.forName(classname);
                Object[] args = {owner};
                Expression expr = new Expression(cls, "new", args);
                return (JDialog) expr.getValue();
            } catch (Exception e) {
                throw new RuntimeException(e);
    }test it:
    import javax.swing.*;
    public class Example {
        public static void main(String[] args) throws Exception {
            JFrame mainframe = new JFrame();
            DialogFactory factory = new ReflectionDialogFactory("SampleDialog", mainframe);
            JDialog dlg = factory.createDialog();
            System.out.println(dlg.getClass());
    }

  • Details for last question I post

    the original code for last question I post(about the DataInputStream& EOFException) is here, thanks if anyone will bother to read it
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindServer
         public MasterMindServer()
              try{
                   ServerSocket serverSocket=new ServerSocket(8000);
                   Socket socket=serverSocket.accept();
                   HandleAClient thread=new HandleAClient(socket);
                   thread.start();
                   }catch(IOException e){System.out.println("Error:"+e.toString());}
         public static void main(String args[])
              new MasterMindServer();
    //inner class
    class HandleAClient extends Thread
         DataOutputStream out;
         DataInputStream in;
         BufferedReader fromFile;
         private Socket socket;
         String line;
         public HandleAClient(Socket socket)
              this.socket=socket;
         public void run()
              int x,o;
              try{
                     out=new DataOutputStream(socket.getOutputStream());
                   in=new DataInputStream(socket.getInputStream());
                   fromFile=new BufferedReader(new FileReader("colorcode.txt"));
                  while((line=fromFile.readLine())!=null)
                    for(int i=0;i<10;i++)
                      String t=in.readUTF();
                      x=check_column(t);
                       System.out.println(x);
                       o=check_color(t);
                       System.out.println(o);
                       out.writeInt(x);
                       out.writeInt(o);
                       if(x==6) break;
                     out.writeUTF(line);
                   socket.close();
                   System.out.println("close");
             }catch(IOException e){
             System.out.println("Error:"+e.toString());}
         public int check_column(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if(s.charAt(i)==line.charAt(i))
                   count++;
              return count;
         public int check_color(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if((line.indexOf(s.charAt(i))!=-1)&&(line.charAt(i)!=s.charAt(i)))
                   count++;
              return count;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindClient extends JFrame implements MouseListener,ActionListener
      /** Default constructor */
      //keep track of the row (or trial) and column number
      int trial_num, col_now ;
      Socket socket;
      int count[]={5,5,5,5,5,5};
    JPanel A[]  = new JPanel[10];
      JPanel B1[] = new JPanel[10];
      JPanel B2[] = new JPanel[10] ;
      JPanel notice = new JPanel() ;
      JPanel sub_notice = new JPanel();
      JPanel D1, D2 ;
      static JTextField [][]color = new JTextField[10][6] ;
      static JTextField [][]Output = new JTextField[10][2];
      static JTextField [][]Answer = new JTextField[1][6] ;
      static JButton []ok = new JButton[10];  
      JLabel L1 = new JLabel("Click the textfield to change color");
      JLabel L2 , L3, L4 ;
      String colorRange="BCGRYW";
      Color colorName[]={Color.black,Color.cyan,Color.green,Color.red,Color.yellow,Color.white};
      String temp ;
    public MasterMindClient() {
        // initialize
        trial_num = 0;
        col_now = 0;
        //sub_notice is Panel where the heading labels are placed
        sub_notice.setLayout(new GridLayout(1,3)) ;
        L2 = new JLabel("  ") ;
        L3 = new JLabel("X");
        L3.setHorizontalAlignment(JTextField.CENTER);
        L4 = new JLabel("O");
        L4.setHorizontalAlignment(JTextField.CENTER);
        L3.setToolTipText("matching color and column");
        L4.setToolTipText("matching color but not matching column" );
        sub_notice.add(L2);
        sub_notice.add(L3);
        sub_notice.add(L4);
        notice.setLayout(new GridLayout(1,2)) ;
        notice.add(L1) ;
        notice.add(sub_notice) ;
        // Get the content pane of the frame
        Container c = getContentPane();
        // Set GridLayout, 4 rows, 3 columns, and gaps 5 between
        // components horizontally and vertically
        c.setLayout(new GridLayout(12, 1, 5, 5));
        c.add(notice);
         JPanel Display = new JPanel() ;
         Display.setLayout(new GridLayout(1,2,5,5)) ;
       //create a Panel for each row to accept use input
       // color[][] textfield is where the user input
       // Output[][] is where to display the number of X and O
        for (int i = 0; i <= A.length-1 ; i++)
        A[i] = new JPanel() ;
        A.setLayout(new GridLayout(1, 2,10,10));
    B1[i] = new JPanel();
    B1[i].setLayout(new GridLayout(1,6,5,5)) ;
    B2[i] = new JPanel();
    B2[i].setLayout(new GridLayout(1,3,5,5)) ;
    for (int j = 0; j <= color[i].length-1 ; j++)
    color[i][j] = new JTextField() ;
    color[i][j].setHorizontalAlignment(JTextField.CENTER);
    if (i == 0)
    {color[i][j].setEditable(true) ;
    else
    {color[i][j].setEditable(false);
    color[i][j].addMouseListener(this);
    B1[i].add(color[i][j]) ;
    } // j loop
    ok[i] = new JButton("SEND");
    if(i==0)
         ok[i].setEnabled(true);
    else
         ok[i].setEnabled(false);
    ok[i].addActionListener(this);
    B2[i].add(ok[i]) ;
    Output[i][0] = new JTextField();
    Output[i][1] = new JTextField();
    Output[i][0].setEditable(false);
    Output[i][1].setEditable(false);
    Output[i][0].setHorizontalAlignment(JTextField.CENTER);
    Output[i][1].setHorizontalAlignment(JTextField.CENTER);
    B2[i].add(Output[i][0]);
    B2[i].add(Output[i][1]);
    A[i].add(B1[i]);
    A[i].add(B2[i]) ;
    c.add(A[i]) ;
    } //for i loop
    //D panel is where we store the answer[][]
    D1 = new JPanel();
    D1.setLayout(new GridLayout(1,6)) ;
    D2 = new JPanel();
    D2.setLayout(new GridLayout(1,2)) ;
    for (int j = 0; j <= Answer[0].length-1 ; j++)
    Answer[0][j] = new JTextField(0) ;
    Answer[0][j].setHorizontalAlignment(JTextField.CENTER);
    Answer[0][j].setEditable(false) ;
    D1.add(Answer[0][j]) ;
    Display.add(D1) ;
    Display.add(D2) ;
    c.add(Display) ;
    public void runClient()
         try
    {      socket=new Socket("localhost",8000);
    DataInputStream in=new DataInputStream(socket.getInputStream());
    int x=0;
    int o=0;
    try{
    while(true)
         while(trial_num<10)
              x=in.readInt();
              //System.out.println(x);
              Output[trial_num][0].setText(String.valueOf(x));
              o=in.readInt();
              //System.out.println(o);
              Output[trial_num][1].setText(String.valueOf(o));
              for(int i=0;i<6;i++)
              color[trial_num][i].setEnabled(false);
         ok[trial_num].setEnabled(false);
         trial_num++;
         col_now=0;
         if(x==6)
                   JOptionPane.showMessageDialog( null, "Congratulation, you've won the game !! " );
                   //ok[trial_num].setEnabled(false);
    break;
         if(trial_num<10)
         {  for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[trial_num].setEnabled(true);
         if(x!=6)
         {  JOptionPane.showMessageDialog( null, "sorry you did not win the game");
         temp=in.readUTF();
         System.out.println(temp);
         //temp=in.readUTF();
         //System.out.println("can");
         for(int i=0;i<6;i++)
         System.out.println(i);
         char a=temp.charAt(i);
         int index=colorRange.indexOf(String.valueOf(a));
         Answer[0][i].setBackground(colorName[index]);
         trial_num=0;
         for(int j=0;j<10;j++)
         for(int k=0;k<6;k++)
         color[j][k].setBackground(Color.white);
         for(int j=0;j<10;j++)
         for(int k=0;k<2;k++)
         Output[j][k].setText(null);
         for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[0].setEnabled(true);
         catch(EOFException em){}
         }catch(IOException ex){
              System.out.println("Error:"+ex.toString());}
    public void mouseClicked(MouseEvent e)
    for(int i=0;i<6;i++)
         if(e.getComponent()==color[trial_num][i])
         {         col_now=i;
         break;
    count[col_now]=(count[col_now]+1)%6;
    color[trial_num][col_now].setBackground(colorName[count[col_now]]);
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e)
    public void mouseReleased(MouseEvent e)
    public void mousePressed(MouseEvent e)
    public void actionPerformed(ActionEvent e)
         try{
              send();
         }catch(IOException et){System.out.println("Error:"+et);}
    public void send()throws IOException
         DataOutputStream out=new DataOutputStream(socket.getOutputStream());
         char cbuf[]=new char[6];
         for(int i=0;i<6;i++)
              cbuf[i]=colorRange.charAt(count[i]);
    System.out.println(cbuf);
         out.writeUTF(new String(cbuf));
    /** Main method */
    public static void main(String[] args) {
    MasterMindClient frame = new MasterMindClient();
    frame.setTitle("Master Mind");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocation(300,300) ;
    frame.setSize(450, 450);
    frame.setVisible(true);
    frame.runClient();
    } // end of class

    I notice that you have several hundred lines of GUI code there. None of them have anything to do with the problem you are trying to solve. So put them all aside and write a SMALL test program that does nothing but the little loop you are having a problem with. Shouldn't be more than 20 lines of code.

  • Up date on last question

    All the sideshows are working, it's just the original stuff that's not, like the banner and the spry bar, I think it's got something to do with the main CSS file not linking to them, how do you reconnect a main CSS file once you have put the page/s one folder deeper. Please refer to my last question

    Please refer to my last question
    Avoid creating new discussions when this new post is a continuation of the previous discussion. Gets confusing and disjointed quickly otherwise.
    Much better if you keep everything in one spot and reply to your own post with a follow up post in the same (previous) discussion until the previous discussion is answered.

  • What is the last question at the end of auto-updates? "Allow" what? (I clicked on "Done" too fast.)

    Hi, I installed an auto-update today, lazily clicked on "Done" at the end without taking the time to read the last "pop-up" dialog box. I saw options about "allowing" something but I did not get a chance to read the question before it disappeared. What was that last question???

    replying to JS1111
    Now I only get one HKEYLOCALMACHINE\Software\
    QuicktimePlayerLib.QuicktimePlayerApp\CLSID.
    some folks have been having some success with pgfpdwife's technique in the following post:
    pgfpdwife: Re: Could not open key HKEYLOCALMACHINE\Software\Classic\Quicktime.Quicktime\
    note carefully that the technique involves a registry edit. be sure to make a backup of any keys you edit. if you're unfamiliar with your registry or registry editing, head to your XP help and support, do a search on registry, and read through the articles that come up.
    There are also some instructions on how to back up registry keys in the following document:
    Error 1406 or 1402 appears when you install iTunes or QuickTime for Windows

  • Please answer asap install question post

    https://support.mozilla.org/en-US/forums/firefoxaurora/708210?last=46112#post-46112
    please answer asap install question post

    Hi C,
    No, you should wait till the end of the Welcome video, when the message says it will restart to finish installation it means installation is still in progress, conclude the procedures.
    Happy installing, good luck.

  • OAYC can not modify the the last depreciation posting year and month

    Dear all,
    I will set the asset last depreciation posting fiscal year and period,  but, in the OAYC T-CODE, the fiscal year and period feilds is unabled.
    use F1 key, the detail message is :
    Fiscal year of last depreciation posting
    In this field, the system enters the fiscal year for which depreciation was last posted. If legacy data transfer is carried out during the course of the fiscal year, you must manually update this field.
    The field is not available for input if legacy data not transferred within the fiscal year, or if depreciation is not posted in this depreciation area.
    But I do not how to correct it .
    Please help me. thanks.
    Passion Wu

    Hi,
    Answer for your query is available in your question only.
    The field is not available for input if legacy data not transferred within the fiscal year, or if depreciation is not posted in this depreciation area
    There are 2 ways to upload the legacy asset to the SAP system.
    1) Legacy asset upload at previous fiscal year end
    2) Legacy asset upload during current fiscal year
    When you use the 2nd method only, system will allows you to enter those last posted dep period and fiscal year OAYC.
    In this context your legacy asset transfer date should fall within the current fiscal year.
    Ex: If your FY is APR2MAR, then your transfer date cannot be the end date of last closed fiscal year.(31.03.2009)
    It should be like 30.04.2009 or 31.05.2009 or 30.06.2009 and so on.............
    Hope this will help you.
    Thanks,
    Srinu..
    OAYC_SRBORIGI

  • One last question about Apple IDs

    I thought id asked the lot but there is one last question. How does one delete an Apple ID?
    Many thanks again
    Anthony

    Hello Again Anthony!
    "How does one delete an Apple ID?"
    You can't.
    After you quit using an account, it's posts, will be archived. What that means is, that if there are no additional responses in the Threads they reside in, the Topics will get continually pushed down on the Topics list. After a certain amount of time, maybe 2 to 6 months, the Threads will be locked, so no responses can be entered. But the Threads will not disappear.
    Threads in heavily trafficked Forums, may be archived more rapidly than those in areas, with less activity.
    The Topics that you started using the account, will show your the Alias, in the Author field of a main forum page, but eventually, readers will have to keep going to the succeeding pages to view them.
    If someone were to do a Discussions Search, using these parameters:
    Restrict by Category or Forum: All Categories
    Restrict by Date Range: All
    Restrict by Username: Your Old Alias
    all of your posts, created since about 11/13/05, would be found.
    ali b

  • Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Thank you again for all of your help!! I really appreciate it!
    I think I am following -- I was able to upload to my iPhoto and all photos and videos are there that is a plus! I tried to create an Event in my iPhoto and put all of my photos in that event but for some reason, now my iTunes it not recognizing that Event in my iPhoto. It is not allowing me to import just that event at the moment but I may be doing something wrong. At least all of my pics and vids are in iPhoto so that is a plus and I know they are at least saved somewhere. Just for some reason, my iTunes it not locating the event that I created with only those photos.
    Thank you for letting me know about my contacts! How do I know if I have the contacts app?
    Also, I had no clue that my iCloud could be backed up via cellular data! However, is this a new feature with the most updated iOS?? Unforutnatly I am like 2 iOS updates behind because I don't have enough storage on my phone. I still get the notification that my phone needs to be plugged in and connected to wifi in order to back up to the cloud :-(
    How can I sync using USB? Right now when i click on the info tab for my iPhone in my iTunes this is the answer that I get -- I am a little unclear as to what it means.
    Sync Contacts:
    Your contacts are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone
    Sync Calendars:
    Your calendars are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone

  • Forget the last Question. Figured it out.

    Forget the last Question. Figured it out. Sorry!

    It would be very useful to post your solution here for others who have the same problem (I've seen several threads on this subject).
    Matt

  • Follow up bulkload with Cygwin question

    Following the advice of a previous post, I installed Cygwin to run the bulkload tools. I am confused now how the bulkload script will know where my OracleHome is (since is doesn't recognise the c:\ drive, just /home). Do I have to reinstal my oracle software inside the Cygwin directory structure?
    Thanks a lot,
    Keith

    Set ORACLE_HOME in the profile file under /etc
    ex. export ORACLE_HOME=c:/oracle/<ORACLE_HOME>
    You can change to any window directory by typing cd <some dir>
    ex. cd c:
    This will take you to /cygdrive/c which is an alias for your c directory.
    type ls and you will see all directories under c:
    /Hans

  • One last question about apple tv!! viewing movies in movies folder

    thanks to those who have responded to my previous questions.
    thinking of buying an apple TV this weekend, but here's my last question (which I just thought of!)
    i've got a collection of movies in various formats, usually .mov or .dv of home videos i've made in FCE and iMovie over the years, some of them several GB in size (oops!)
    what's the best way of viewing these on the apple tv. for instance
    1. does apple TV let you look into your 'movies' folder in the home folder to play any movies it finds there
    2. will it play .dv or .mov files, or does it need to be a specific format
    3. i've noticed an 'export to apple tv' in quicktime pro, do i need to do this for all my movies before apple tv will play them. and after i do an 'export to apple tv' where do the files need to be? imported into itunes, or just sat in my 'movies' folder?
    cheers, looking forward to visiting the apple store tomorrow!

    1. does apple TV let you look into your 'movies' folder in the home folder to play any movies it finds there.
    No, the tv uses itunes for its source of movies.
    2. will it play .dv or .mov files, or does it need to be a specific format
    DV, no. MOV, maybe. MOV is a container type not a compression type, if the MOV container has the correct compression formats in it then it will play. Movies for the tv need to be either mpeg4/2 or mpeg4/10 (H264/AVC)
    3. i've noticed an 'export to apple tv' in quicktime pro, do i need to do this for all my movies before apple tv will play them. and after i do an 'export to apple tv' where do the files need to be? imported into itunes, or just sat in my 'movies' folder?
    Yes 'export to tv' will do the job for you. You need to be aware though that DV with the wrong field dominance will cause it a problem, and some cameras do use the wrong field dominance. It won't work with muxed files (mpeg2 for example) and on SD movies it can be a little wasteful on space. I've always used mpegstreamclip to convert from DV.
    Of course from now on you'll be using FCE with this in mind and exporting accordingly.

  • Searching my last question

    how can i get my last post and its reply
    thanks
    bis

    click on your name in your post above.
    It will take you to your profile, along with a list of the last few posts you have made. There USED TO BE a link to click to go there directly, but it go lost in the last round of forum "improvements"
    http://forum.java.sun.com/profile.jspa?userID=512301

  • RoboDemo skipping last question

    Well, we still have a few RoboDemo files that we are still
    updating using RoboDemo. But, the OS on my computer was upgraded to
    XP and my copy of RoboDemo was removed. I have a couple of RoboDemo
    5 cds (different builds) but they are all having an issue with the
    questions, where it just skips the last question. The Display score
    at end of movie checkbox is checked. So, for instance if I have 20
    questions, after the 19th question, the question stats (# wrong, #
    correct) comes up. The build that I have installed right now is
    Version 5 Build 760.
    I would appreciate any RoboDemo expertise out there.
    Thanks.

    The last version of RoboDemo was/is Build #777.
    The change in OS shouldn't have anything to do with it, to
    the extent that WinXP is supported - though other changes made at
    the same time may be impacting the installation of RoboDemo. I
    doubt that is the problem, as it should either work - or not - when
    started, and your installation appears to be working.
    I'll bow out now, as I've already told you what the "fix" is
    (assuming that the correct build is installed). I've worked with RD
    from the beginning of time, so it will surprise me if someone has a
    different fix, but I certainly hope you do have luck in finding
    another solution ...
    ... best of luck.

  • Reinstalling AE and PP due to an error with dynamic link. Where do i find the program install? And tips on how to reinstall without messing things up? last question is, does my recent files and saves work after the reinstall?

    I have allready bought the programs, but need to reinstall AE and PP due to an error with dynamic link.
    Where do i find the program install?
    And tips on how to reinstall without messing things up?
    last question is, does my recent files and saves work after the reinstall?
    Thank you

    karianne wrote:
    I have allready bought the programs, but need to reinstall AE and PP due to an error with dynamic link.
    Where do i find the program install?
    Which versions? Which operating system?
    Try Download and Installation Help

Maybe you are looking for

  • Use of 15 pin external monitor socket query

    I want to record my display to a VCR machine using a 3 RCA phone plug input which I currently use for my DVD player using Red/White and Yellow RCA lead - have tried using a VGA to RCA lead plugged into the ext. monitor skt. But the lead I have has Re

  • ITUNES KEEPS FREEZING, MULTIPLE AVENUES EXPLORED... NO HELP

    I recently bought a new 8gig 5th gen ipod nano to replace my classic 80gig video. I am running the latest version of snow leopard on my macbook. After plugging in the USB and attempting to update the software on the nano, i-tunes freezes and the rain

  • Shuttle Component Refresh Issue in ADF

    Hi, I have 2 screens back and forth. On 1st screen, I have the search table where the records are being displayed. There, we have a button to add records, which takes the user to the next screen. On the 2nd screen, I have a dropdown and a shuttle box

  • Audit tablespace issue

    i have converted all tablespaces to local managed including "system", but i missed audit tablespace. now this tablspace is read only and dictionary managed. so i can't change it to online. can i drop it and recreate it? thanks

  • Video Messages

    What do I need to allow the users on my website to record a video message thru user's web cam? Like what Facebook does when you click on 'Add Video' on your profile page. Do I need to buy any flash server software? Thanks in advance.