I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  ! Do you get the idea ? Thanks !

I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  !
Do you get the idea ?
Thanks ever so much !

the numbers manual can be downlaoded from this website under the Apple support area...
http://support.apple.com/manuals/#numbers
What your looking for is written out step by step for drop downs and all other special types of user input starting around page 96 in the '09 manual.
Jason

Similar Messages

  • How I do remove or change pass of Remote Lock (Ipad) ?? I put 1234 to test, but I don't know change.

    How I do remove or change pass of Remote Lock (Ipad) ?? I put 1234 to test, but I don't know change.

    Go into Settings > General > Passcode Lock (you will need to re-enter the code to go into it) and you can then either Change Passcode or Turn Passcode Off

  • I am trying to set up the podcast capture but i don't know what a host name or an IP addess is

    Could you tell me what a host name or an IP address is and how to find these as i am trying to set up the podcast capture?

    I would recommend carefully reading Pondini's guide on using Migration Assitant, if you still have trouble you have 90 days of free telephone support from Apple via AppleCare. While they are more versed in OS X than MS Windows they may be able to help you. Pondini's guide is found by clicking Lion or Mountain Lion Setup Assistant tips

  • JTable: How do you get the sort indicator shown in the design guidelines ?

    http://java.sun.com/products/jlf/at/book/Idioms4.html#996747
    As opposed to Volume 1, they don't provide any code :-(
    (http://java.sun.com/products/jlf/)

    You need to put your own TableCellRenderer into the table header. You implement the same interface as an ordinary cell renderer, but you install it differently. Here's a snippet of my code that does this:
         private void setupHeaderRenderers()
              for (int i = 0; i < model_.getColumnCount(); i++)
                   TableColumn tc = t_.getColumnModel().getColumn(i);
                   tc.setHeaderRenderer(new SortHeaderRenderer(/* my ctor args */));
         }and the renderer itself is as below. Apologies for dependencies on other stuff of mine, but you get the idea.
    private class SortHeaderRenderer extends    DefaultTableCellRenderer
      RenderInfo r_;
      SortHeaderRenderer(RenderInfo r)
        r_ = r;
      public Component getTableCellRendererComponent(javax.swing.JTable table,
                                                    Object  value,
                                    boolean isSelected,
                                                    boolean hasFocus,
                                                    int     row,
                                                    int     column)
          if (table != null)
            JTableHeader header = table.getTableHeader();
            if (header != null)
              setForeground(header.getForeground());
              setBackground(header.getBackground());
              setFont(header.getFont());
          setText((value == null) ? "" : value.toString());
          setBorder(UIManager.getBorder("TableHeader.cellBorder"));
          setHorizontalAlignment(SwingConstants.CENTER);
          setHorizontalTextPosition(SwingConstants.LEFT);
          // Check if we are the primary sort column and if so, which
          // direction the sort is in
          if ((orderItems_ != null) && (orderItems_.contains(r_)))
            if (sortDescending_)
              setIcon(sortDescending__.getIcon());
            else
              setIcon(sortAscending__.getIcon());
          else
            setIcon(null);
          return this;

  • My iPhone was stolen.  How do I retrieve the pictures etc that were on imt.  I know they must be in the iCloud but I don't know how to get into it from my iPad.  Also, I would like to try to locate the phone ...how do I do that from my iPad?

    My iPhone was stolen.  How do I retrieve the pictures etc that were on imt.  I know they must be in the iCloud but I don't know how to get into it from my iPad.  Also, I would like to try to locate the phone ...how do I do that from my iPad?

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
     Cheers, Tom

  • TS3430 does anyone know how to fix itunes when you get the message that it has encountered a problem and needs to close

    does anyone know how to fix itunes when you get the message that it has encountered a problem and needs to close

    You are using ADE on Windows or Mac ? and their versions ??
    Please restart your machine and try once again.
    Thanks

  • HT5624 I would like to change ,my password. I signed in but I don't know what was my answer for the 2 security question. How can I change my password?

    would like to change ,my password. I signed in but I don't know what was my answer for the 2 security question. How can I change my password?

    Hello, dot mac & MobtleMe no longer exist, though it may be possible to still use a dot mac addy... or maybe not if expired.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
        •    Server name: imap.mail.me.com
        •    SSL Required: Yes
        •    Port: 993
        •    Username: [email protected] (use your @me.com address from your iCloud account)
        •    Password: Your iCloud password
    SMTP (outgoing mail server) information:
        •    Server name: smtp.mail.me.com
        •    SSL Required: Yes
        •    Port: 587
        •    SMTP Authentication Required: Yes
        •    Username: [email protected] (use your @me.com address from your iCloud account)
        •    Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • How do you get the web application path from the servlet?

    I have created a web application which is installed in
    /webapps/myApplication
    /webapps/myApplication/data/users.xml
    /webapps/myApplication/WEB-INF/classes/myServlet
    How can you get the path to the "users.xml" file from the "myServlet" file?
    The code below doen's seem to return the xml file. anybody knows why?
    public class myServlet extends HttpServlet {
    public void doGet( HttpServletRequest req, HttpServletResponse res ) throws ServletException, IOException
    File myXmlFile = new File("/data/users.xml");

    Try this..
    String FileName = getServletContext().getRealPath("\\data\\users.xml");
    File myXmlFile = new File(FileName);
    hope this helps..

  • I know my Game Center username and password, but I don't know the email (or maybe apple id) that is for my account. It is not my normal one. I can't log in with just my username, so does anyone know how I can get my email?

    I know my Game Center username and password, but I don't know the email (or maybe apple id) that is for my account. It is not my normal one. I can't log in with just my username, so does anyone know how I can get my email?
    Can you help me please

    Dear
    I have worked renovation of the device and have an account, but I forgot my email
    I do not know E-mail has been linked in game center
    I have a name defined in game center
    Do I have the possibility of knowing E-mail has been linked in game center

  • If you deleted a  device off of find my iphone.how do you get the device to start back up agian and put it back on find my iphone?

    if you deleted a  device off of find my iphone.how do you get the device to start back up agian and put it back on find my iphone? becuase i have delted my dads iphone acedentily of find my iphone and it is nownot working. his phone is just staying at a black screen with a loading circle on it. i need to know how to fix this..like do i go the to apple store or the carrier store or can i fix it at home?

    Try these two ways to fix the iPhone (in order).  If neither works, you would have to take it to the store.
    1.  Reset the iPhone.  Hold the on/off and home buttons togehter for about 10 seconds.  If it works, you'll get the Apple logo and then something good should happen.
    2.  Try recovery mode as described here:
    http://support.apple.com/kb/HT1808
    If one of these work, you can then re-introduce the iPhone to Find My iPhone by doing Settings > iCloud > Find My iPhone = "On" on the device.

  • Iphone 3GS- How do you get the pictures to show up larger when someone call

    Iphone 3GS- How do you get the pictures to show up larger when someone calls? I know this seems trivial but I have difficulty seeing, so one of the reasons I actually purchased this phone was for this feature. When the photos do come up they come up in the top right corner in small boxes / windows. I already google'd this topic and they suggested importing the photos - to itunes and than directly on to the iphone, I did this and it didn't work. Additionally I took a few test photos from the iphone and tried setting them to contacts. This didnt work either. I looked in settings and could not find anything that discussed this issue. Although I do believe I have seen iphones that ring with large pictures. Am i Crazy?

    You aren't crazy.
    Adding the photo to contacts on the computer gets you the smaller pix when people call.
    Assign the photo on the phone itself and you get full-size pix.
    Additionally I took a few test photos from the iphone and tried setting them to contacts. This didnt work either.
    So, that certainly should work. Try it again? Try it with a brand new contact, maybe it is not overwriting a previously existing picture.
    I suppose there is a small possibility that Apple thought this differing behavior was a bug instead of a feature and "fixed" it with a recent update, but I doubt it.

  • Zen Vision M: How do you get the Display to st

    How do you get the display to stay on when using a transmitter to play songs on the radio? Everytime I connect the transmistter, the Zen display shuts off so I can't select and change songs without disconnecting then reconnecting to play. I don't know if there is a simple option that I'm just not getting. Any suggestions?Message Edited by SKC909 on 04-26-20070:42 PM

    SKC909,
    Are you connecting the transmitter to the player headphone jack or the AV out? From your post, it sounds like you're doing it from the AV out. If that's the case, go to the player System->Video setting and disable Video out.
    Jason

  • How do you get the text box text properties dialog box to appear on a MAC?

    how do you get the text box text properties dialog box to appear in Adobe Reader XI on a MAC? I know windows is Ctrl-E but can't figure out what to hit for Mac.

    Right-click the toolbar and you should find it there (including the short-cut, which is probably Cmd+E).

  • Where or how do you get the 2.0 update?

    I got the latest version of itunes, the latest version of software for ipod touch but I still can't find the "APPS" tab in the preferences setting. How do you get the 2.0 update? I had the same problem with the other update when I first bought this thing. Apple is really ******* me off.

    Ya know i would just wait because they dont HAVE to release it today, tommorow, or in the next year if they want too. Maybe they have a new idea and want to add that so you need to be patient... i know we were all dissapointed when i didnt come out in june but just shut your virtual mouth and wait!
    Take a chill pill and relax...
    Just a few more hours...
    -Naghamster

  • I currently have the Mac OS X v10.5.8 and want to get the new operating system but I don't know how to do it. I don't have the Mac App Store and can't get it because of my version. What do I do?

    I currently have the Mac OS X v10.5.8 and want to get the new operating system but I don't know how to do it. I don't have the Mac App Store and can't get it because of my version. What do I do?

    The Early 2006 model 1,1 Core Duo can only run a maximum of 10.6 Snow Leopard. The models Late 2006 Core 2 Duos 2,1 through Early 2008 4,1 can only run a maximum of 10.7 Lion. The Late 2008 model 5,1 Aluminum Unibody through the Mid 2010 White Unibody model 7,1 can run 10.8 Mountain Lion.
    To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up check the Model Identifier and post it back here.
    The Snow Leopard 10.6 DVD should still be available from Apple for $20. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775 to purchase it. It may still be in the Legacy Products list.
    If they no longer have any in stock you will have to buy it from eBay or Apple resellers that still have stock. But you will have to pay a premium since the DVDs are no longer being made. Snow Leopard DVDs are already up to $100 on Amazon.
    http://www.ebay.com/sch/i.html?_nkw=10.6+snow+leopard&_sacat=0&_odkw=mac+os+10.6 &_osacat=0
    Once you are at 10.6.8 Lion is still available from Apple. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775. to purchase it. Then within 3 days you will get an email with a code which you can use to download Lion from the App Store.  The price is still $29. You must have at least a model 2,1 MacBook.
    Lion will require at least 2gb of RAM but really needs 4gb to run smoothly.
    As for third party programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors in 2006 they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

Maybe you are looking for

  • Push Contacts,calendars, bookmarks not working after update...

    Just updated and my list of contacts are correct when logged on mobile me but when i look on iphone nothing there after creating account and switching push on. Any ideas? Same for bookmark and calendars. MAybe bottleneck after this evening. Thank you

  • Installing modem in Windows 8.1

    I'm having difficulty installing my MultiTech MT9234ZPX-PCIE faxmodem in my new Windows 8.1 desktop. MultiTech has not issued drivers specifically for Win 8.1 yet. I may have an IRQ conflict.  Someone answered a similar question by suggesting that FX

  • Setting up my "new" macbook

    I bought a new MacBook from the Apple Store for my daughter. The Mac rep patiently set up the computer for us. This week my husband bought what he thought was a"New" Macbook from another store. When I got home I found out that it was actually an open

  • Open in another window to see more info

    I want to sell my jewelry !! So I want to know ,can you click on a pictures and it open with the descriptin and the price ....also can you click on the price and it goes to a basket for buying . Thank you

  • Standby Database Progress Summary

    Hi you all, a couple months ago I installed and configured Oracle Cloud Control 12c, every thing it's working fine, except that I can't see the standby progress summary chart on Availabilty -> Data Guard Administration, it's not showing any data like