Why can I only add one app in passbook?

Why can I only add one app (Starbucks) in Passbook? 

You can add many passes to Passbook, what makes you think you can only add one?
Check out http://support.apple.com/kb/HT5483.

Similar Messages

  • Why can't I add paid apps to my wishlist?

    Hi. I'm using Mavericks and I can't figure out how to add an app to my wishlist in the App Store. I've tried clicking on the down arrow next to the price, where it normally is, but it's not there. This not a free app, and I'm logged in.
    Thanks.

    The Mac App Store does not have a wish list.

  • Why can I only hear one track of the song?

    1st gen only plays one track of songs on new headphones.

    If you have a slow networkconnection this might work:
    In Preferences>Store tick the box Load complete preview before playing
    M

  • Why can't i add any app on ios to wish list?

    Many apps r big to download via 3G so i would like to add that app in my wish list to download later

    Probably because those app you want to install requires IOS 4.3 or higher.
    Your phone is at the highest IOS, you'll need to purchase a 3GS or higher iphone.

  • Why can I only add up to 7 rows in a table???

    I have written the following programme
    but can only allow 6 addButton clicks....(I want to allow adding unlimited number of rows)
    can anyone run the code and help me out please???
    import javax.swing.border.* ;
    import javax.swing.* ;
    import java.awt.Dimension;
    import java.awt.event.* ;
    import java.util.*;
    import java.awt.*;
    import javax.swing.table.TableColumn;
    import javax.swing.JTable;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.*;
    public class ReadingListDialog extends javax.swing.JDialog{
    ReadingListDialog me;
    String[] type = {"Text Book", "Online Material","Other"};
    String[] columns;
    JComboBox typeComboBox;
    JButton editButton;
    JButton cancelButton;
    JButton saveButton;
    JButton addButton;
    JButton deleteButton;
    JTable bookTable;
    JTable onlineTable;
    JTable otherTable;
    JTabbedPane tabbedPane;
    Box outerBox;
    Box buttonBox;
    JScrollPane bookScrollPane ;
    JScrollPane onlineScrollPane ;
    JScrollPane otherScrollPane ;
    Vector row;     
    DefaultTableModel bookModel;
    DefaultTableModel onlineModel;
    DefaultTableModel otherModel;
    private boolean DEBUG = true;
    /** Creates a new instance of ReadingListDialog */
    public ReadingListDialog(java.awt.Frame parent, boolean modal, boolean edit) {
    initComponents();
    public void initComponents(){
    me = this ;
    ImageIcon icon = new ImageIcon("middle.gif");
    Object[][] bookData = {
    // {"Altemate Java", "Robert Sedgewick", "Library", "June 30", "p.130-150","No notes","Read"},
    //{"Elementary Algebra","Ian Horthorn","Desk Copy","sep 28","p.111, p.112","important topic!!!True......hello everyone","Not Read"},
    String[] bookColumn = {"Text Title",
    "Author",
    "Location",
    "Read By Date",
    "Page/Chapter",
    "Note",
    "Status"
    DefaultTableModel bookModel = new DefaultTableModel(bookData, bookColumn);          
    bookTable = new JTable(bookModel);
    setUpReadingStatusColumn(bookTable.getColumnModel().getColumn(6));
    bookTable.setPreferredScrollableViewportSize(new Dimension(500, 35));
    Object[][] onlineData = {
    // {"Google", "www.google.com", "June 30", "a search engine","Don't understand"},
    // {"Waikato Uni","www.waikato.ac.nz","Sep 29","important topic!!!True......hello everyone","Half way"},
    String[] onlineColumn = {"Website Name",
    "URL",
    "Read By Date",
    "Note",
    "Status"
    DefaultTableModel onlineModel = new DefaultTableModel(onlineData, onlineColumn);     
    onlineTable = new JTable(onlineModel);
    setUpReadingStatusColumn(onlineTable.getColumnModel().getColumn(4));
    onlineTable.setPreferredScrollableViewportSize(new Dimension(500, 35));
    Object[][] otherData = {
    //{"Lecture slide", "N/A", "June 30", "useful for assignment 2","Read"},
    //{"Notes on Linear Algebra","DeskCopy","Sep 29","important topic!!!True......hello everyone","Not Read"},
    String[] otherColumn = {"Material",
    "Location",
    "Read By Date",
    "Note",
    "Status"
    DefaultTableModel otherModel = new DefaultTableModel(otherData, otherColumn);     
    otherTable = new JTable(otherModel);
    setUpReadingStatusColumn(otherTable.getColumnModel().getColumn(4));
    otherTable.setPreferredScrollableViewportSize(new Dimension(500, 35));
    tabbedPane = new JTabbedPane();
    //create the buttons
    cancelButton = new JButton("Cancel");
    saveButton = new JButton("Save");
    addButton = new JButton( "Add Row" );
    deleteButton = new JButton("Delete Row");
    //add buttons to buttonBox
    buttonBox = new Box(BoxLayout.X_AXIS);
    buttonBox.add(saveButton);
    buttonBox.add(addButton);
    buttonBox.add(deleteButton);
    buttonBox.add(cancelButton);
    addButton.addActionListener( new ActionListener()          {
    public void actionPerformed(ActionEvent e)               {
    DefaultTableModel bookModel = (DefaultTableModel)bookTable.getModel();
    Object[] newRow = new Object[7];
    int row = bookTable.getRowCount() + 1;
    for(int k = 0; k<row; k++)
    newRow[k] = "";
    bookModel.addRow( newRow );
    //Create the scroll pane and add the table to it.
    bookScrollPane= new JScrollPane(bookTable);
    onlineScrollPane = new JScrollPane(onlineTable);
    otherScrollPane = new JScrollPane(otherTable);
    //add the scroll panes to each tab
    tabbedPane.addTab("Text Book Readings", icon, bookScrollPane, "Edit your reading list");
    tabbedPane.setSelectedIndex(0);
    tabbedPane.addTab("Online Readings", icon, onlineScrollPane, "Still does nothing");
    tabbedPane.addTab("Other Materials", icon, otherScrollPane, "Still does nothing");
    //add the tabbedPane to outerBox
    outerBox = new Box(BoxLayout.Y_AXIS);
    //outerBox.setBorder(new EmptyBorder(0,0,20,15));
    outerBox.add(tabbedPane);
    outerBox.add(buttonBox);
    //add the outerBox to the pane
    getContentPane().add(outerBox);
    if (DEBUG) {
    bookTable.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    //printDebugData(bookTable);
    cancelButton.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
    me.dispose();
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public void setUpReadingStatusColumn(TableColumn statusColumn) {
    //Set up the editor for the status cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("");
    comboBox.addItem("Read");
    comboBox.addItem("Just Started");
    comboBox.addItem("Half way");
    comboBox.addItem("Not Read");
    comboBox.addItem("Don't understand");
    statusColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the status cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for selecting a status");
    statusColumn.setCellRenderer(renderer);
    //Set up tool tip for the status column header.
    TableCellRenderer headerRenderer = statusColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the satus to see a list of choices");
    public static void main(String args[]) {
    ReadingListDialog r = new ReadingListDialog(new javax.swing.JFrame(), true, true);
    r.setSize(new Dimension(600,500));
    r.show();

    Try this
    public void actionPerformed(ActionEvent e) {
    DefaultTableModel bookModel = (DefaultTableModel)bookTable.getModel();
    Object[] newRow = new Object[] {};
    //int row = bookTable.getRowCount() + 1;
    //for(int k = 0; k<row; k++)
    //newRow[k] = "";
    bookModel.addRow( newRow );

  • Why do my photos on my computer take up 5.5 GB but syncing them to my iPod Touch they take up around 15 GB, and why can I only select one folder to sync, and not multiple folders?

    I have wiped the iPod a few times and tried from different computers. All the small things get more frustrating every day with apple.

    DrNicT61 wrote:
    I'm a little confused how that would help the problem I have...care to explain it a little differently?
    The Camera roll, on the iPod Touch, is where photos taken by the iPod (if it has a camera), screenshots and downloaded pictures are stored. Since they have "originated" on the iPod they are not on your computer - yet. So the total size of the photos on your iPod (in your case 15GB) will be made up of photos you have synced from your computer (5.5GB) and the Camera Roll of 9.5GB.
    In the Photos App, notice the line named Photo Library (I mentioned it in my previous post). That folder contains all the photos synced form your computer. If there is an extra line above the Photo Library, named Saved Photos, this is the Camera Roll and it is where those screenshots, downloaded pictures and camera shots are listed.
    Cruicially, if you ever need to Restore your iPod, the Camera Roll (Saved Photos) will be deleted, so you may wish to save the contents of the Camera Roll onto your computer. My method is; when the iPod is connected to iTunes, look in My Computer for an extra drive (it should show an iPod icon) and copy them from there to a folder on my computer. If I want them on your iPod, I paste them into one of the folders I intend to use for Syncing with the iPod. Once they have been successfully saved, I can go back the My Computer/the iPod and delete them from the Camera Roll.

  • Why can I only import one TDMS signal at a time in Signal Express?

    I have dozens of data files which were originally recorded as LabVIEW waveform files.  I converted them all to TDMS in LabVIEW in hopes that I could import them to Signal Express (with the S&V Suite) for further processing.  Each data file contains more than 20 channels.
    When I try to import them to SE, I am unable to import the entire group.  Instead, I am limited to one channel at a time.  This would take days to import all channels, and is not what I want at all.  Is there some way to import an entire group of channels at once?
    JR

    I was using the "Logged Signals from LabVIEW TDMS file" import; perhaps I had installed it on SE 2.5 before upgrading to 3.0.  Regardless, I downloaded the ZIP file, and ran the msi with the "Repair" function.  This did not change the functionality.  I then used your suggestion, and redigitized one of the files with the Express VI set for TDMS.  Same deal, although instead of the channel names I had been able to specify using the TDMS subVIs, now it lists them all as "Voltage_x", where x is a channel number beginning with 0.
    I've attached two images as examples of what I'm experiencing.  The first (temp1.JPG) shows where I've tried to select the entire group.  You can see that "Convert File" is not enabled, and the sample information has not been read.  The second image (temp2.JPG) shows where I've selected a channel.  I am only able to select one channel, not a range.  The "Convert File" button is now enabled, and sample information is correctly displayed.
    Attachments:
    temp1.JPG ‏57 KB
    temp2.JPG ‏57 KB

  • Why can I only get one of the 2 songs I just puchased

    I just bought 2 songs and could only get 1 to my ipod, the other says when I try to get it on a playlist "I am not authorized to play it on this computer" But I just did the other one????? I went and bought it again but still no luck.
    HELP!!! need it for the morning workout!

    Thanks Niel, but I had just downloaded i tunes again on this computer but cause I had a virus and everything got wiped out.
    No one else touches my computer.
    i just found it weird, that I bought 2 songs about 30 seconds apart and only could get one into my music.

  • Why can i only select one LUN for repository creation from the list of LUNs

    1) have successfully created a server pool with heartbeat/cluster lun of 15GB storage
    2) Now trying to create repositories for VMs - Unable to select more then 1LUN per repository - we have a requirement of over 14TB and have 1TB per LUN does this mean we will require 14 repositories??? Please help
    Thanks in advance

    right....It seems as though we will have to have 1TB LUNs per Repository, one question that comes to mind is that is it possible for a single VM to use more then one repository any ideas... ??
    so for example if a VM needs to utilise remaining free space from a LUN is this possible or if a VM needs a bigger partition then 1TB can we use 2 x repositories to build this partition?? as we have max 1TB LUNs from storage.
    Or will we have to request a amendment to the size of LUNs to increase to 2TB from storage? 2TB being max supported to a repository

  • Why can I only download one song every 90 days?

    Everytime I try to download a song from my purchased it says one song every 90 days!

    Hello, bridgeted. 
    Thank you for visiting Apple Support Communities. 
    It sounds like your computer has been associated with another Apple ID in the past 90 days.  Here is some information regarding this process. 
    When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID. Your Apple ID can have up to 10 devices and computers (combined) associated with it, with a maxium of 5 computers at any time. Each computer must also be authorized using the same Apple ID. Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days. You can view which devices or computers are currently associated with your Apple ID, remove unused devices or computers, and view how many days remain before the devices or computers can be associated with a different Apple ID from the Account Information page in iTunes on your computer:
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Cheers,
    Jason H. 

  • TS1368 Why can I only download from the apps store and not itunes

    Why can I only download from apps store and not iTunes.

    Try logging out of your account on the iPad by tapping on your id in Settings > Store and then log back in and see if it then works.

  • HT201272 Why can't I search any apps in the store?  I can only see the ones that the Genius thing recommends for me.  This is on my iPhone 4S .

    Why can't I search the App Store on my iPhone 4S?  All I can do is search the recommended ones from Genius.  What do I need to do?

    Apple’s having trouble with the iTunes Store servers right now. Wait for them to resolve the issue.
    Feel free to check up on the issue @ http://www.apple.com/support/systemstatus/
    This outage started @ 5am est (~10 hours ago).
    I'm disappointed in Apple's inability to do the smart thing, and post a notice in the header of the site, this is a user-wide issue, you don't just hide the fact it's happening behind a server status page.

  • I can't syncronize my library and my new device. I deleted old one but nothing change.I can't only add sth in library when my device connected.

    I was using iPod touch before and I bougth new iPhone 5S.I change my apple id.Now I can't syncronize my library and my new device. I deleted old one but nothing change.I can't only add music,videos etc in library when my device connected.I tried to delete iTunes and set up again but it doesn't work. It's really hard to using like this. I always add new things at iTunes when my device doesn't connected. Please help me

    You reinstalled an old version of iPhoto after you updated your library to the newer version.
    Update ALL your software and try again.
    Click the Apple Menu at the upper left-hand corner of your screen and select "Software Update..."
    Repeat until it tells you there are no more updates.
    AND, launch the App Store application located in your Applications folder to see if there are any updates there as well.

  • HT201087 Why can't I add a location to a photo in the new Photos app?  Apple appears to have taken away a feature without asking.

    Why can't I add a location to a photo in the new Photos app?  Apple appears to have taken away a feature without asking. 

    I have an iPhone and occasionally use it for photos, but my main camera is NOT an iPhone.  To be forced to go outside Apple for a product when Apple had perfectly good products available is ludicrous.  But it is what it is, apparently.

  • Ill.CS3 - Why can I only work with one sheet on the desktop? I want to design a multi page document...

    ill.CS3 - Why can I only work with one sheet on the desktop? I want to design a multi page document...

    Use this ancient work-around:
    Create mutli-page PDF | Illustrator

Maybe you are looking for