Btabz or anyone Help again please :(

Ok so yesterday i had an issue with my ipod and btabz helped me with fixing the issue and today i noticed this.
heres my previous post incase anyone wants to know the previous problem
So i was useing my ipod last night and really happy with finally putting everyone of my cds on there 4000 songs took 6 months to get on there But anyway,so i ejected my ipod like im supposto,and went into my menu and EVERYTHING was gone songs n albums,so i plugged it back into my Pc trying not to tweek and it read the 12.72Gb out of 60 leaving me with the 42.96 gb Free but not one song shows up in the ipods list,and i dont know why or what i did wrong or anything can you help me i want my 4000 Songs back I dont have ne of my songs in my iTunes at all or on my pc they were all on da pod ,This is really Iupsetting,and Ifrusterating,and by the way im INew...Thanks for ur Ihelp.
-------Josh AKA Survival
"Welcome to Apple Discussions!This is why you need to have your music on your computer and/or backed up :-)Anyhow, you may be able to get your music back, but you will have to put it on your computer (from your iPod).See if you can get your music back via the steps listed here...MacMuse: Computer Crashed btabz "
okay and for the new issue
my "12.72Gb out of 60 leaving me with the 42.96 gb Free" is what my ipod said before the songs were fixed after i fixed the songs,i deleted some that i did not want off my ipod,No problem right then i noticed i had 3391 songs cuz i deleted a bunch still no problem but then i noticed this
it says (3391 items,8.4 days,11.57 Gb)and it says Used:24.29Gb with Free:31.39 Gb,why did my Gb useage double when i fixed it,and removed a bunch of songs,and should i have removed the songs off my ipod after i did what btabz had me do?
and for my 3rd issue some of my songs the albums are fine but the song names are like "HZUJ" and like "LBXV"and funky stuff like that whats up with that?

just download the podplayer.exe from www.ipodsoft.com and backup all the songs from ur ipod to ur system and then upload them to the itunes library . then u restore ur ipod for the latest updater available and then transfer all ur 13gb songs back into ur ipod.
its a long process though, but guess it works fine.

Similar Messages

  • Can anyone help me, please

    Hello again:
    Please run my coding first, and get some view from my coding.
    I want to add a table(it is from TableRenderDemo) to a JFrame when I click on the button(from DrawCalendar) of the numer 20, and I want the table disply under the buttons(from DrawCalendar), and the table & buttons all appear on the frame. I added some code for this problem(in the EventHander of the DrawCalendar class), but I do
    not known why it can not work.Please help me to solve this problem.
    Can anyone help me, please.
    Thanks.
    *This program for add some buttons to JPanel
    *and add listeners to each button
    *I want to display myTable under the buttons,
    *when I click on number 20, but why it doesn't
    *work, The coding for these part are indicated by ??????????????
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel {
         private static DrawCalendar dC;
         private static TestMain tM;
         private static TableRenderDemo myTable;
         private static GridLayout gL;
         private static final int nlen = 35;
        private static String names[] = new String[nlen];
        private static JButton buttons[] = new JButton[nlen];
         public DrawCalendar(){
              gL=new GridLayout(5,7,0,0);
               setLayout(gL);
               assignValues();
               addJButton();
               registerListener();
        //assign values to each button
           private void assignValues(){
              names = new String[35];
             for(int i = 0; i < names.length; i++)
                names[i] = Integer.toString(i + 1);
         //create buttons and add them to Jpanel
         private void addJButton(){
              buttons=new JButton[names.length];
              for (int i=0; i<names.length; i++){
                   buttons=new JButton(names[i]);
         buttons[i].setBorder(null);
         buttons[i].setBackground(Color.white);
         buttons[i].setFont(new Font ("Palatino", 0,8));
    add(buttons[i]);
    //add listeners to each button
    private void registerListener(){
         for(int i=0; i<35; i++)
              buttons[i].addActionListener(new EventHandler());          
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
    private class EventHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
         for(int i=0; i<35; i++){
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
         if(i==20){  //???????????               
              tM=new TestMain(); //???????
              tM.c.removeAll(); //??????
              tM.c.add(dC); //???????
              tM.c.add(myTable); //????
              tM.validate();
         if(e.getSource()==buttons[i]){
         System.out.println("testing " + names[i]);
         break;
    *This program create a table with some data
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TableRenderDemo extends JScrollPane {
    private boolean DEBUG = true;
    public TableRenderDemo() {
    // super("TableRenderDemo");
    MyTableModel myModel = new MyTableModel();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(700, 70));//500,70
    //Create the scroll pane and add the table to it.
    setViewportView(table);
    //Set up column sizes.
    initColumnSizes(table, myModel);
    //Fiddle with the Sport column's cell editors/renderers.
    setUpSportColumn(table.getColumnModel().getColumn(2));
    * This method picks good column sizes.
    * If all column heads are wider than the column's cells'
    * contents, then you can just use column.sizeWidthToFit().
    private void initColumnSizes(JTable table, MyTableModel model) {
    TableColumn column = null;
    Component comp = null;
    int headerWidth = 0;
    int cellWidth = 0;
    Object[] longValues = model.longValues;
    for (int i = 0; i < 5; i++) {
    column = table.getColumnModel().getColumn(i);
    try {
    comp = column.getHeaderRenderer().
    getTableCellRendererComponent(
    null, column.getHeaderValue(),
    false, false, 0, 0);
    headerWidth = comp.getPreferredSize().width;
    } catch (NullPointerException e) {
    System.err.println("Null pointer exception!");
    System.err.println(" getHeaderRenderer returns null in 1.3.");
    System.err.println(" The replacement is getDefaultRenderer.");
    comp = table.getDefaultRenderer(model.getColumnClass(i)).
    getTableCellRendererComponent(
    table, longValues[i],
    false, false, 0, i);
    cellWidth = comp.getPreferredSize().width;
    if (DEBUG) {
    System.out.println("Initializing width of column "
    + i + ". "
    + "headerWidth = " + headerWidth
    + "; cellWidth = " + cellWidth);
    //XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
    column.setPreferredWidth(Math.max(headerWidth, cellWidth));
    public void setUpSportColumn(TableColumn sportColumn) {
    //Set up the editor for the sport cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the sport cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for combo box");
    sportColumn.setCellRenderer(renderer);
    //Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = sportColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the sport to see a list of choices");
    class MyTableModel extends AbstractTableModel {
    final String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final Object[][] data = {
    {"Mary ", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    public final Object[] longValues = {"Angela", "Andrews",
    "Teaching high school",
    new Integer(20), Boolean.TRUE};
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    * JTable uses this method to determine the default renderer/
    * editor for each cell. If we didn't implement this method,
    * then the last column would contain text ("true"/"false"),
    * rather than a check box.
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    if (DEBUG) {
    System.out.println("Setting value at " + row + "," + col
    + " to " + value
    + " (an instance of "
    + value.getClass() + ")");
    if (data[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    //With JFC/Swing 1.1 and JDK 1.2, we need to create
    //an Integer from the value; otherwise, the column
    //switches to contain Strings. Starting with v 1.3,
    //the table automatically converts value to an Integer,
    //so you only need the code in the 'else' part of this
    //'if' block.
    try {
    data[row][col] = new Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(TableRenderDemo.this,
    "The \"" + getColumnName(col)
    + "\" column accepts only integer values.");
    } else {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG) {
    System.out.println("New value of data:");
    printDebugData();
    private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + data[i][j]);
    System.out.println();
    System.out.println("--------------------------");
    *This program for add some buttons and a table on JFrame
    import java.awt.*;
    import javax.swing.*;
    public class TestMain extends JFrame{
    private static TableRenderDemo tRD;
         private static TestMain tM;
    protected static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         setSize(800,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GridLayout(3,1));
    tRD=new TableRenderDemo();
    dC=new DrawCalendar();
    addItems();//add Buttons to JFrame
    private void addItems(){
         c.add(dC); //add Buttons to JFrame
         //c.add(tRD); //add Table to JFrame     

    Click Here and follow the steps to configure your Linksys Router with Version FIOS.

  • I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer? I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer?
    I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    Well...I went to the modem (Westell, WireSpeed), found the NAT settings, once again, I'm WAY over my head, I am assuming this is a TCP connection (as opposed to a UDP) and per Lorex my mobile devices will use port 1025.  So I gave it a "global port range" of 1-10 and I indicated that the "base host port" was 80, 1025, & 9000 (ports 1,2,3).  When I selected the 'enable' it asked for a "host devise" my choices are my IPhone, IMac and the IP address for the dvr, so I choose the dvr.  I still cannot connect and canyouseeme still can NOT find these open ports.  This is taking up my whole day! I don't know how people figure this stuff out.

  • TS1363 IPOD classic not baing recognised in itunes, can anyone help me please?

    i habve an ipod classic when i first used it it was fine but then it started stopping syncing half way through saying there was an error and my songs would cut off half way through or just not play now when i connect it to the computer it dosent show up in itunes but does in my computer. i messege in my itunes pops up saying i need to restore my ipod yet my ipod dosent show up in itunes to do this. i have tried uninstalling intunes and reinstalling it again i have tried using a different laptop but nothing works can anyone help me please?

    See my response to your other post.
    B-rock

  • When I submitted my iPhoto book to Apple, an error caused the  image file to be unreadable or unprintable,why can anyone help me please

    when I submitted my iPhoto book to Apple, an error caused the  image file to be unreadable or unprintable,why can anyone help me please:)
    what I did with my system was following:
    1. Update your software.
    2. Restart your computer.
    3. Make sure all applications are closed.
    4. Open iPhoto or Aperture.
    5. While all other applications are closed, preview your print product as a
    PDF.
    6. Resubmit your order. 
    and still my PDF ibook file looked like my photos were scratched across the photos. Please help:)
    Thank you
    CJ

    Yes me too!!
    I thought that I had done someting wrong.  The first time it was my first attempt so I did not preview the photobok (did not know this trick).  When I did the cover photos were completely ruined with lines and code.
    The second time I changed everything and even made a different sized book - thinking my photo files were too big.  I dutifully previewed before buying the book and everything was fine.  Then a few days later got the usual e-mail message from Apple. When I previewed the project again ALL of the photos were corrupted.
    What to do - I need to get the photobook to friends to celebrate their engagement!
    If I saved the pdf then submitted this would that work??
    Any thoughts - I am working on a large project and do not want to go any further if all the work will be ruined on buying the book.

  • I recently got a new iPad from Apple, everything was stored to the cloud now I have set up new iPad i have nothing. Apps can b replaced pics cannot. Can anyone help me please?

    I recently got a new iPad from Apple, everything was stored to the cloud now I have set up new iPad i have nothing. Apps can b replaced pics cannot. Can anyone help me please?

    Sorry to read about this. A relative had a similar experience. Just a few things she was told to do. Hopefully one will get your content back. Make sure you are logged in to the same Apple Account the last iPad was. You should have a recent backup that can be downloaded to have your new iPad look like the one you replaced. When I changed from one iPad to another I used my last backup and all my apps and photos reloaded with no issues. This was done over wifi.
    Another way is connecting your iPad to a computer that is logged into your iTunes account. It will show what backups you have available to download To your iPad. Again hopefully a recent backup was made of your iPad with all your most recent content.
    In my cloud settings I made sure any photos I took were uploaded to the cloud to be downloaded automatically to my iPhone and visa versa.
    If you had your photos setup to be uploaded to the cloud they should still be there. You just need to be logged into your Apple ID and your new iPad and I see no reason you cannot access them. Hopefully it is a simple fix.
    good luck.  Jeff

  • Accidently i have removed the disk utility can anyone help me please

    i have accidently removed the disk utility.... can anyone help me please..

    The problem with junk utilities such as MacKeeper is that they are capable of causing damage that is impossible to inflict on a Mac using normal means.
    MacKeeper is not the only such utility; it is merely the most visible due to its aggressive and highly successful marketing tactics.
    Get rid of MacKeeper by following these instructions exactly as written:
    If you used MacKeeper to encrypt any files or folders, use MacKeeper to un-encrypt them.
    Quit the MacKeeper app if it is running.
    Open your Applications folder: Using the Finder's Go menu, select Applications.
    Drag the MacKeeper icon from your Applications folder (not the Dock) to the Trash.
    You will be asked to authenticate (twice):
    You do not need to provide a reason for uninstalling it:
    Click the Uninstall MacKeeper button. You will be asked to authenticate again.
    After it uninstalls you may empty the Trash. All that will remain is an inert log file that does nothing but occupy space on your hard disk.
    Next: Test your Mac for operation. If it is still exhibiting problems, you may need to undo damage that occurred as a result of using MacKeeper. At the extreme this could include erasing your Mac and rebuilding your system from the ground up, but start by downloading and installing the OS X Combo Update I linked earlier. That may be all that is necessary to restore OS X to normal, but other programs you installed may need to be installed again.

  • Apple iPad 3. BT email not working. Cannot send emails from btconnect SMTP after iOS upgrade. This is the only difference I am aware of. Can anyone help me please.

    BT email not working. Cannot send emails from btconnect SMTP after iOS upgrade. This is the only difference I am aware of. Apple iPad 3. Can anyone help me please.

    All resolved at last
    Deleted the SMTP setting
    Recreated the SMTP using the same settings
    Able to send emails now
    No logic - as usual - just a bug!

  • My iphone 4s wont turn on,it wont even charge,when it does eventually start to charge the apple icon on the screen will appear for a few seconds then itll disappear, i have tried to do the soft/hard reset but nothing happens, can anyone help me please?

    My iphone 4s wont turn on,it wont even charge,when it does eventually start to charge the apple icon on the screen will appear for a few seconds then itll disappear, i have tried to do the soft/hard reset but nothing happens, can anyone help me please? do i have a dead iphone on my hands? isit worth me going into the apple store and seeing what they can do or isit pointless? please help!!!

    Try to backup and restore you device in itunes...restoring the device is like removing the iOS software off the device and re-add in a newer software, after you have restore you device, MAKE SURE YOU SET UP YOUR DEVICE LIKE A NEW DEVICE, DONT NOT RESTORE FROM BACKUP!!... give the device a chance to use the newer software and see if the issue still persisting, if the issue still on going then its would be a hardware issue.
    Call Apple Care and see if your device is still under warranty to get it replace

  • My iPhone 5 rear camera was not working, now the rear camera is also not working. I have procured the phone in 2012 from San Fransico. USA Can anyone help me, please?

    My iPhone 5 rear camera was not working, now the rear camera is also not working. I have procured the phone in 2012 from San Fransico. USA Can anyone help me, please?

    No one here can help you. If your phone is no longer under warranty, a third-party repair shop will most likely be your best bet. You can't mail the phone to Apple, in the US, as Apple does not accept international shipments. You could mail it to a friend/relative, in the US, & they could take it to an Apple store for you. Some Apple stores repair iPhones. Otherwise, you're looking at an out of warranty replacement.
    Good luck.

  • I would like to get siri working on my 3G iphone 4s and since upgrading to ios 7 my speakers work intermittently can anyone help me please

    I upraded my 3G iphone 4s to the ios7 and have had trouble with the speakers  working on and off  and I would like to know how to get siri  and would like to know how to do that so that I may use it in my hands free  equipped vehicles can anyone help me please ?

    First, this is the Photoshop (full version) forum - you may be able to get more pertinent and specific help down at the Photoshop Elements forum:
    http://forums.adobe.com/community/photoshop_elements
    Generally speaking, one edits image files then saves the results on one's hard drive, so the photos don't "go into" Photoshop, but rather they are just files on the disk.  However, I'm not sure whether you used a feature of Elements I may not be familiar with.  You may be best off asking Elements experts.
    -Noel

  • When I try to set up Icloud control panel in Windows Vista, I get "your setup couldn't be started because the Icloud server stopped responding. I've tried loads of fixes suggested on the net but none worked. Can anyone help me please?

    When I try to set up Icloud control panel in Windows Vista, I get "your setup couldn't be started because the Icloud server stopped responding. I've tried loads of fixes suggested on the net but none worked. Can anyone help me please?

    Hello, ksb2. 
    Thank you for visiting Apple Support Communities.
    We are investigating this issue. This article will be updated as more information becomes available.
    iCloud: iCloud Control Panel setup cannot be started
    http://support.apple.com/kb/TS5178
    Cheers,
    Jason H.

  • Hello sir        i have mac os x lion and A fter upgrading to Lion  i can't instal the face time app its type ( FaceTime can't be installed on "Mac" because the version of Mac OS X is too new. )   can anyone help me please .   notes : on snow leopard the

    hello sir
           i have mac os x lion and A
    fter upgrading to Lion  i can't instal the face time app its type ( FaceTime can’t be installed on “Mac” because the version of Mac OS X is too new. )   can anyone help me please .
    notes : on snow leopard the face time was work normally but i delete it the app i thought it will work after i reinstall it

    Lion comes with FaceTime. Look in your dock or in the Applications folder.

  • Flash swf that runs on every browser except in Firefox. Can anyone help me please?

    Hello.
    I have an flash swf in a site that runs on every browser except in Firefox. I get an warning telling me that the page requires a newer version of flash player but i already have the 10,0,32,18 and the swf was published for flash player 9.
    Can anyone help me please?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • Hi there, I want to change the background-color of the browser, when a popup-picture is shown. This picture pops up by clicking a hyperlink in the text...can anyone help me please...thanks a lot

    Hi there, I want to change the background-color of the browser, when a popup-picture is shown. This picture pops up by clicking a hyperlink in the text...can anyone help me please...thanks a lot

    Hi,
    CSS is interpreted by your browser, so server cache seems unlikely in htis case. There is however some hierarchy in CSS, so parts of the APEX CSS, theme CSS or page CSS might overwright or block yours.
    Does changing the CSS on runtime affect your page? Eg, run the following in your browser console and see if your page turns black: $('#uBodyContainer').css("background-color","black")
    Also try moving up your css in the hierarchy labeling it as important:
    div#uBodyContainer { 
      background-color:#000000 !important;  
    See:Assigning property values, Cascading, and Inheritance
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

Maybe you are looking for

  • Multiple browser views

    Hello all,    Currently I am creating a website and for some reason it is as if dreamweaver is creating a bit of ghost coding that's causing the website to appear different. For example I have created almost the entire site and I view it in every bro

  • 如何获取business objects xi 2.0/3.0 临时license?

    hi,      怎样获取bo xi r2/3.0 临时的install license以便个人学习. thanks, xwu.

  • Partition pruning

    Hi, We use Oracle 11.2.0.3 and are being aksed to considering implementing partitioning as follows: We will have a lrage fact table -several billion records structure is product_id, various other dimension _keys and the measures. It is a star schema

  • Verification of the adress in iTunes Store impossible because of bug in the Store

    Hi there I have bought a new iPhone and synchronised it with my existing iTunes Account. Now I have to verify my billng details. But that is impossible. I am asked to choose my title but in the scrolling menue you have no possiblity (Madame or Sir) t

  • Inspecting element on Safari 7 does not show Web Inspector

    When I run "Inspect Element" on Safari 7, nothing happens.  I don't see the Web Inspector and the page appears to lag a little bit.  I am running Mavericks 10.9.2 and Safari 7.0.3.