Can I show one years events on my Curve

The User guide seems to indicate that the calendar will only show events for the display period, i.e. day, week or month.  I plan further ahead than this and would like to be able to have the calendar show events as far ahead as one year. Can this be done (I currently have one month on display but if I scroll forward to next month there are no events shown, even though they are on my Google calendar, which I am synced to)

Will not  work, most likely for BootCamp.  Windows drivers for hunderbolt will only create digital (DVI), not analog (VGA).
Run Windows in Parallels/other-VM-software where OSX runs the Thunderbolt port, or by a USB-VGA adapter.

Similar Messages

  • How can I move one years worth of Raw photo files to a different hard drive and perserve the edits

    How can I move one years worth of raw photo files to a different hard drive (to manage space) and preserve the develope module edits and still see them in  the Library module?

    The easiest situation, is where this year's worth of images is grouped physically inside one parent folder (something many people build in from the start, in any case).
    If there is a parent folder on disk, but you are not currently seeing that inside LR's Folders panel, you can make this visible to LR by right-clicking on one of the folders which live immediately inside that, and selecting "show parent folder". This gives you a single "handle" by which to manipulate the whole grouping.
    Then it is just a matter of moving this parent folder. It's usually as simple as dragging it from one place to another inside LR's Folders panel, however this is a little more difficult when it's a question of another drive which does not yet appear there.
    So an alternative method will likely prove more straightforward: physically move the whole year folder into the other drive using your operating system's Explorer/Finder. The folder (and subfolders, and all the contained images) will change with ? icons inside LR, and it all goes "offline". This is because LR's records of where everything is, are known not to currently work (the former location is now not available). But all the edits, thumbnails, keywords, collections etc are still in place because these things are still remembered in the Catalog - and the fullsize previews are still cached also.
    Then right-click on the parent folder in LR's Folders (the top folder which shows a "?") and select Update Folder Location. Then browse to the other disk and identify where this folder is now to be found. LR updates all its records and the whole grouping carries on just as before, only using a new  storage location for each image concerned.

  • Can iCal show all recurring events?

    I have a bunch of recurring events throughout the year in iCal, and I'd like to see a list of them.  Or at least, find them one by one, to see what's there (and what isn't).  Is there some way I can do a search that shows me a list of only the recurring events?

    Hi Roger,
    Put a " in the search box works (for some reason). iCal's search is done by Spotlight. It can take a little while if you have a lot of events.
    Best wishes
    John M

  • Can iCal show a years weeks in numbers?

    Hello! In Sweden most people plan their lives using the years weeks insted of months. Is it possible for iCal to also show a weeks number instead of only months, dates and days?
    We say for instance: - "Can you help me with... week 38?".
    It would be of great help if someone can help me with this!
    Tjenis,
    Mikael

    Hi DB,
    Just for interest then, as there seems to be some already on iCal Share.
    Best wishes
    John M
    --Copy below this line into Script Editor and click run --
    --Annual Week numbers
    --John Maisey
    --4/2/5
    set numberOfWeeks to 1000 -- change as needed
    set daysText to "MonTueWedThuFriSatSun"
    set aDate to (current date)
    set day of aDate to 1
    set month of aDate to January
    set aDay to weekday of aDate
    set weekNo to 1
    --Day of week as num. starting with 0
    set aDayText to (characters 1 thru 3 of (aDay as text)) as text
    set dayOff to ((offset of aDayText in daysText) - 1) / 3 as integer
    if dayOff is less than 5 then
         set StartDate to aDate - dayOff * days
    else
         set StartDate to aDate + (7 - dayOff) * days
    end if
    tell application "iCal"
         set newCal to make new calendar at end of calendars with properties {title:"Week No."}
         set myCal to (count of every calendar)
    end tell
    repeat with myCount from 1 to numberOfWeeks
         if (month of StartDate is December) and (day of StartDate is greater than 28) then set weekNo to 1
         if (month of StartDate is January) and (day of StartDate is less than 5) then set weekNo to 1
         set weekText to "Week No. " & weekNo
         tell application "iCal"
              tell calendar myCal
                   make new event at end of events with properties {start date:StartDate, allday event:true, summary:weekText}
              end tell
         end tell
         set weekNo to weekNo + 1
         set StartDate to StartDate + 7 * days
    end repeat
    --

  • I can't show the correct event .

    I have check again . I had written Oval, Rectangle and Line JButton.
    However, I just show circle.
    I think this parts of the code has problem :but I don't clear
    And the following has this all code(2 file) , thx a lot !
    '************************************************I'm sure problem . I guess
    clear.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e){
    repaint();
    System.out.println("Clear button is clicked");
    public void itemStateChanged(ItemEvent event){
    if (event.getSource() == oval)
    p3 = new Painter(0);
    else if (event.getSource() == oval && event.getSource() == filled)
    p3 = new Painter(1);
    else if (event.getSource() == line)
    p3 = new Painter(2);
    else if (event.getSource() == rectangle)
    p3 = new Painter(3);
    else if (event.getSource() == rectangle && event.getSource() == filled)
    p3 = new Painter(4);
    This is the following my code : thx .
    '*************************************************JavaAss2.java
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class JavaAss2 extends JFrame implements ItemListener {
    private JCheckBox filled = new JCheckBox("filled");
    private JRadioButton oval = new JRadioButton("Oval");
    private JRadioButton line = new JRadioButton("Line");
    private JRadioButton rectangle = new JRadioButton("Rectangle");
    private JButton clear = new JButton("Clear");
    private Painter p3;
    public JavaAss2() {
    setBackground(Color.gray);
    Container c = getContentPane();
    c.setLayout(new BorderLayout());
    JPanel p1 = new JPanel();
    p1.setLayout(new GridLayout(5, 1));
    c.add(p1, BorderLayout.EAST);
    Painter p2 = new Painter();
    p2.setLayout(new BorderLayout());
    c.add(p2, BorderLayout.CENTER);
    clear.setSize(30, 15);
    ButtonGroup btngp = new ButtonGroup();
    btngp.add(oval);
    btngp.add(line);
    btngp.add(rectangle);
    p1.add(oval);
    p1.add(line);
    p1.add(rectangle);
    p1.add(filled);
    p1.add(clear);
    oval.addItemListener(this);
    line.addItemListener(this);
    rectangle.addItemListener(this);
    filled.addItemListener(this);
    clear.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e){
    repaint();
    System.out.println("Clear button is clicked");
    public void itemStateChanged(ItemEvent event){
    if (event.getSource() == oval)
    p3 = new Painter(0);
    else if (event.getSource() == oval && event.getSource() == filled)
    p3 = new Painter(1);
    else if (event.getSource() == line)
    p3 = new Painter(2);
    else if (event.getSource() == rectangle)
    p3 = new Painter(3);
    else if (event.getSource() == rectangle && event.getSource() == filled)
    p3 = new Painter(4);
    if (oval.isSelected())
    new Painter(0);
    else if (oval.isSelected() && filled.isSelected())
    new Painter(1);
    else if (line.isSelected())
    new Painter(2);
    else if (rectangle.isSelected())
    new Painter(3);
    else if (rectangle.isSelected() && filled.isSelected())
    new Painter(4); */
    public static void main (String args[]){
    JavaAss2 javaAss2 = new JavaAss2();
    javaAss2.setTitle("Painter");
    javaAss2.setSize(500, 500);
    //javaAss2.pack();
    javaAss2.setVisible(true);
    javaAss2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    '******************************************Painter.java
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Painter extends JPanel{
    private int Oid;
    public Painter() {
    setBackground(Color.white);
    setSize(500, 500);
    public Painter(int id){
    Oid = id;
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    switch(Oid) {
    case 0: g.drawOval(20, 20, 50, 50);
    System.out.println("You have chosen Oval !!!");
    break;
    case 1: g.fillOval(20, 20, 50, 50);
    System.out.println("You have chosen Oval with fill colour !!!");
    break;
    case 2: g.drawLine(100, 100, 150, 150);
    System.out.println("You have chosen Line !!!");
    break;
    case 3: g.drawRect(30, 120, 150, 75);
    System.out.println("You have chosen Rectangle !!!");
    break;
    case 4: g.fillRect(30, 120, 150, 75);
    System.out.println("You have chosen Rectangle with fill colour !!!");
    break;
    }

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class test extends JFrame implements ItemListener {
      private JCheckBox filled = new JCheckBox("filled");
      private JRadioButton oval = new JRadioButton("Oval");
      private JRadioButton line = new JRadioButton("Line");
      private JRadioButton rectangle = new JRadioButton("Rectangle");
      private JButton clear = new JButton("Clear");
      // we need these references in itemStateChanged()
      private Painter p3;
      Container c;
      public test() {
        setBackground(Color.gray);
    //    Container c = getContentPane();
        c = getContentPane();
        c.setLayout(new BorderLayout());
        JPanel p1 = new JPanel();
        p1.setLayout(new GridLayout(5, 1));
        c.add(p1, BorderLayout.EAST);
        // so we can use p3 in itemStateChanged()
    //    Painter p2 = new Painter();
        p3 = new Painter();
    //    p2.setLayout(new BorderLayout());
        p3.setLayout(new BorderLayout());
    //    c.add(p2, BorderLayout.CENTER);
        c.add(p3, BorderLayout.CENTER);
        clear.setSize(30, 15);
        ButtonGroup btngp = new ButtonGroup();
        btngp.add(oval);
        btngp.add(line);
        btngp.add(rectangle);
        p1.add(oval);
        p1.add(line);
        p1.add(rectangle);
        p1.add(filled);
        p1.add(clear);
        oval.addItemListener(this);
        line.addItemListener(this);
        rectangle.addItemListener(this);
        // line below >> class cast exception - because
        // in itemStateChanged we cast all events to JRadioButton
        // we really don't need a listener for the check box
        // we'll check to see if it is selected in our
        // itemStateChanged method
        //filled.addItemListener(this);
        clear.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e){
            System.out.println("Clear button is clicked");
        setLocation(300,25);
      public void itemStateChanged(ItemEvent event){
        JRadioButton button = (JRadioButton)event.getSource();
        String id = button.toString().substring(
                     button.toString().indexOf("text=") + 5,
                     button.toString().lastIndexOf("]"));
        System.out.println("id = " + id);
        c.remove(p3);
        if (button == oval) {
          if(filled.isSelected())
            p3 = new Painter(1); // fill
          else
            p3 = new Painter(0); // draw
        if (button == line)
          p3 = new Painter(2);
        if (button == rectangle) {
          if(filled.isSelected())
            p3 = new Painter(4); // fill
          else
            p3 = new Painter(3); // draw
        c.add(p3, BorderLayout.CENTER);
        c.repaint();
        c.validate();
      public class Painter extends JPanel{
        private int Oid;
        public Painter() {
          setBackground(Color.white);
          setSize(500, 500);
        public Painter(int id){
          Oid = id;
        public void paintComponent(Graphics g){
          super.paintComponent(g);
          System.out.println("Oid = " + Oid);
          switch(Oid) {
            case 0:
              g.drawOval(20, 20, 50, 50);
              System.out.println("You have chosen Oval !!!");
              break;
            case 1:
              g.fillOval(20, 20, 50, 50);
              System.out.println("You have chosen Oval with " +
                                 "fill colour !!!");
              break;
            case 2:
              g.drawLine(100, 100, 150, 150);
              System.out.println("You have chosen Line !!!");
              break;
            case 3:
              g.drawRect(30, 120, 150, 75);
              System.out.println("You have chosen Rectangle !!!");
              break;
            case 4:
              g.fillRect(30, 120, 150, 75);
              System.out.println("You have chosen Rectangle " +
                                 "with fill colour !!!");
      public static void main(String[] args) {
        test javaAss2 = new test();
    //    JavaAss2 javaAss2 = new JavaAss2();
        javaAss2.setTitle("Painter");
        javaAss2.setSize(500, 500);
        //javaAss2.pack();
        javaAss2.setVisible(true);
        javaAss2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

  • What you can build in one year with Strobe Media Player (SMP)

    Hi, thanks to all the hard working folk at Adobe who've been kind enough to let people like myself build commercial applications using SMP.  I just wanted to share a link to my new facebook application that I've been building for the past year using SMP.  I could not have been able to do it without SMP as I needed a free, high end, flexible API video player to do it with.
    Again thankyou, and I'll be sure to provide a link to SMP on my site.
    Here's the link to my facebook application using SMP:
    http://apps.facebook.com/pazooza/Video/View/21?VideoID=1
    Please note:  It's a facebook application so it will ask you for some basic permissions just click yes :-)
    Regards
    Rob

    KCvolunteer07 wrote:
    I have a lot of code that doesn't need to be checked for errors, so I don't know if I should pull that code out and do multiple try catch statements or just leave it like this...if this makes sense for the program logic you are going for then yes it is ok. I would say though the there should only be one try-catch block per thrower because theoretically each exception thrown has a different meaning for what your program should do in response.

  • Photos have one year, Event has another?

    Changed photo date in certain event using Adjust Date/Time, but the event date range did not change.  All photos have 2014 year, but event says 2009. Help?
    Thanks

    Flag the photos and then make new event from flagged photos - it will be correct
    LN

  • Can I subscribe one year iTunes Match using my iTunes balance?

    or bank card is the only way to do that?

    Note:
    You may use store credit to pay for your iTunes Match subscription; however, you must have a valid payment method on file at the time of sign up.
    From Here  >  http://support.apple.com/kb/HT4914

  • How can organize photos by year?  by putting a folder inside of a folder?  So putting all of the events for one year under one folder so that it keeps them seperate?

    Looking for help in organizing my photos.   I would like to organize them so that i can put all of the events for a year into one folder  (i would like to keep multiple events under a folder)?  Help please?!

    Like Larry suggested:
    Click to view full size
    The top folder could be named 2011.  In it could be 12 smart folders each with the following criteria:
    Date is in the range"  mm/01/yyyy to mm/31/yyyy.
    So the 2011 folder would have 12 month smart albums each with the photos for that particular month.
    Or you can use the search by date function at the bottom of the window to search by year, month, week or day.
    OT

  • In iPhoto, can I file individual events from one year into one main event withouthout m muddling them up?ing them up

    In iPhoto, can I file individual events from one year into one main event without muddling them up?

    Perhaps I misunderstood you. You want to have a hierarchy
    Folder: 2000
    ->Contains Event for January, February, etc
    Folder 2001
    -> Contains Event for January, February etc
    That sort of thing? Well with Events, no you can't. Yes you can do that with Albums, but not Events.
    That said, it's a pretty limited way of organising your photos - in fact you might as well just use folders in the Finder. You can find the photos from any year, month, day with the Calendar tool. Simply click on the Search icon on the bottom, then on the the wee drop down and select the calendar tool.
    Want the photos from a particular range - say, June 11 1999 to September 30 2001? Then a Smart Album will do that.
    But the problem is that it's often hard to remember the year/month something happened. Did we go to Disney in 1997 or 98? There are other more useful ways that make your snaps more searchable.
    Here's a canned answer that I offer that suggests some of the richer organising possibilities of iPhoto. It might spark something.
    I use Events simply as big buckets of Photos: Spring 08, July - Nov 06 are typical Events in my Library. I use keywords and Smart Albums extensively. I title the pics broadly.
    I keyword on a
    Who
    What
    Where basis (The When is in the photos's Exif metadata). I also rate the pics on a 1 - 5 star basis.
    Using this system I can find pretty much find any pic in my 50k library in a couple of seconds.
    So, for example, I have a batch of pics titled 'Seattle 08' and a  typical keywording might include: John, Anne, Landscape, mountain, trees, snow. With a rating included it's so very easy to find the best pics we took at Mount Rainier.
    File -> New Smart Album
    set it to 'All"
    title contains Seattle
    keyword is mountain
    keyword is snow
    rating is 5 stars
    Or, want a chronological album of John from birth to today?
    New Smart Album
    Keyword is John
    Set the View options to Sort By Date Ascending
    Want only the best pics?
    add Rating is greater than 4 stars
    The best thing about this system is that it's dynamic. If I add 50 more pics of John  to the Library tomorrow, as I keyword and rate them they are added to the Smart Album.
    In the end, organisation is about finding the pics. The point is to make locating that pic or batch of pics findable fast. This system works for me.

  • Hi there, i have a ipod nano general 7, just used one year. Now can't charge battery. When charging, the icon shows full power, but disconnect it. It becomes dark, no power. Why, the battery doesn't work ?

    I've a ipod nano general 7, I've just used it one year. Now, I can't charge the battery. When charging, the icon shows full power. But when I disconnect, the ipod becomes dark, no power is keeped. Why, the battery doesn't work ? the life of my ipod's battery is too short ? 

    Howdy tamsg,
    Welcome to Apple Support Communities.
    The article linked below provides a lot of great troubleshooting tips that can help you resolve the issue with your iPod nano charging or displaying a blank black screen.
    iPod nano (7th generation): Hardware troubleshooting - Apple Support
    So long,
    -Jason

  • Calendar events only go back one year in list view

    Although visible in day & month views, calendar events only go back only about one year. And this also seems to preclude them from searches.
    This seems to have been reported since 2008, and still exists in iOS 5. Any insight? Or do I need to switch back to Win Mobile?

    In my calendar viewing in a list, I can see days back and forth.
    View a list of events.  In month view, tap to see a day’s events. In day view, tap .
    Sorry, the icons are missing above, see this help link:
    http://help.apple.com/iphone/8/#/iph3d110f84

  • HT204088 I was charged for a one year subscription just seconds after i agreed to purchase a 6 month subscription to Grindr and you can see they overlap please cancel  the order for the one year subscription.

    Tony I was charged twice for a product. I authorized one purchase for a 6 month subscription to Grindr and then I was also charged for a 1 year subscription please remove the one year subscription and refund my card... My bank said to go through apple to get the refund or it would be fraud and we would have to go through a long process. please help me out over 60$ is a lot of money for anyone ...
    thanks
    Anthony MAxcy
    <Email Edited by Host>

    We are fellow users here on these forums, you're not talking to iTunes Support - I've asked the hosts to remove your email address from your post's title (it's not a good idea to post personal info).
    You can try the 'report a problem' page to contact iTunes Support (I'm not sure if app subscriptions show on there): http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I can export many iphoto events to a Data stick. I want to do the same with a DVD. When I do the DVD window is blank. If I drag and drop can only do one. Help

    I can "export", using file, many iphoto events to a data disk. When I do the same to a DVD the DVD window is blank and nothing has been exported. When I use drag and drop to a DVD it works but I can only get one event on the disk. How do I export many iphoto events to a DVD. I am using a write only DVD. I am using a Mac Book Pro OS 10. Thanks in advance.
    Gord

    When I click on the data stick icon on my desk top a window comes up. It lists the various events that I have exported. If i click on an event each picture shows up in a list. I can click on the picture and view a jpeg photo or view a avi video. When I export I select "original" as the file type. When I export to a DVD and klick on the the DVD icon the window shows up but it is blank.  

Maybe you are looking for

  • How to enable email notification in OIM 11g

    Hello, I am currently working in a stock 11.1.1.3.0 environment, and am trying to enable email notifications when a user requests to be provisioned to AD. The default approver is Xelsysadm, and I have put my email address in this account's slot. Howe

  • Photoshop CS4 won't launch

    I'm getting this error message "Could not open scratch file because the disk is not available." The disk is mounted and on the desktop. All I did was go into photoshop CS4 and add another scratch area which is one of the Hard drives mounted on the de

  • I just upgraded an old Imac from Leopard to Snow Leopard, now it won't work

    I just upgraded my 2003 imac from leopard to snow leopard and after restart all I get is a blue screen.  Nothing happens.  How can I get back to the old leopard.  I use this computer for research just because of the 23'' screen.  Help

  • Search not working for Acrobat Macintosh forum  Adobe hates Mac?

    I have tried searching this forum, only to get 0 results every time. Even such basic keywords as "pdf" results in 0 results. I've have tried seaching without singing in, with signing in, in Firefox, in Safari... nothing. I want to make some forms in

  • I just buy a new i phone 5 and the hand free is not working

    Hi i phone support team I just bue a new i phone 5 and the head set is not working I got it from frind Pleas i need you support to change the head set Ahmed shindy Phone number.  00201148886700 Email. [email protected]