Is there a way to open two months at the same time in iCal?

I have recurring events for every month in 2009 and want to replicate them in 2010. I do not want to just extend the stop date because there will be subtle changes to the 2010 items that I do not want changed in the 2009 versions. I would ideally like to open Jan 2009 and Jan 2010 next to each other and copy the 2009 event to the 2010 calendar (the appointment copy does not copy the recurrence info which is good). Is there a way to show either two instances of iCal running or 2 month windows?
Thanks!

Hi,
If you activate iCal's Debug menu, you should find it has a 'New Calendar Window' option (Cmd-L). It is a bit of a knack to cutting and pasting correctly between windows.
Best wishes
John M

Similar Messages

  • Is there a way to show two angles at the same time in the final edit rather than switch between them with Multicam?

    Can I show two angles at the same time in the final edit rather than alternate with Multicam?

    Stack two clips on top of each other and reduce the sizes. I think that's what you want.

  • Is there a way to detect two keys at the same time?

    Is there a way to detect the keys if the user is holding two keys down at the same time?

    yes, but you'll have to check outside of the event loop (i.e. don't check for it in the keyPressed method).
    just use an array of keys that keeps track of which keys are currently down and which are up. you could use a boolean array but I use an int array because... Im not sure I've just done it probably because of my C background. anyway, basic setup:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class MultiKey extends JFrame {
         int keys[];
         public MultiKey() {
              super();
              keys = new int[256];
              Arrays.fill(keys,0); // 0 = key is up
              enableEvents(AWTEvent.KEY_EVENT_MASK);
              show();
         public void processKeyEvent(KeyEvent e) {
              // the 0xff below binds the key code to below 256
              int key = (e.getKeyCode()&0xff);
              if (e.getID() == KeyEvent.KEY_PRESSED) {
                   keys[key] = 1; // 1 = key is down
              else if (e.getID() == KeyEvent.KEY_RELEASED) {
                   keys[key] = 0; // 0 = key is up
         protected boolean isKeyDown(int key) {
              return (keys[key] != 0);
         protected boolean isKeyUp(int key) {
              return (keys[key] == 0);
    }so now at any time in your code you can check key state by using the isKeyUp and isKeyDown methods. this is about as close as you get to input polling in java unless you use LWJGL or something similiar ;)
    you can try out a full executable example at my site here - just open up the jar and start holding keys down :)

  • Is there any way to view two tabs at the same time w/o opening a new window?

    I would like to view one tab while I am working in another. I can do it by opening one of the tabs in a new window and tiling both windows on the screen. Is there any way to do it within one window?

    Just installed Split Panel and it looks like it will do exactly what I want.
    Thanks,
    (Don't know how this got in here twice. I'd like to delete it but can't figure out how to.)

  • Is there a way to add two windows in the same window?

    is there a way to add two windows in the same window?

    what do you mean by your first use of the word "window"? do you mean a visible frame? a section of the gui that the user doesnt see?
    or perhaps you mean you want to add multiple tabs to a single window, so that switching between tabs shows different windows?

  • How can I open two libraries at the same time on itunes?

    Hey i need help on opening two libraries at the same time on itunes. I don't know if that is possible but need some advice if its possible. I already have several libaries but I need to compare labaries at times due to various users on my computer. Please help .

    Not that I'm aware of. What exactly is that you want to achieve? There are tools for scanning media folders and adding any files not listed in the library, or deleting those that no longer exist. There are also ways to use one library for multiple users so that any tag update gets applied for everyone.
    tt2

  • Cannot open two pictures at the same time - computer crashes

    I have PSE7 and Windows7.    I cannot open two pictures at the same time.  When I go to open the second picture it crashes PSE7.  Anyone know how I can open two pictures at the same time?  What is the fix?

    Hello Shawbrah
    Thanks for your reply.
    Yes, your method is actually the only workaround for a workplace with PSE7, but it isn't a solution for our enterprise network/domain.
    There are different problems:
    We have several computers with PSE7 installed. It does not make sense to manually install a local TCP/IP-printer on each PC.
    We have many fluctuation in our company which means that the workplaces will often be moved and the PCs will often be replaced.
    If the employees are printing over a local printer, our centralized printer monitor solution does not recognise print volumes.
    The printers which are defined on our print server have special tray settings and these settings are "linked" to the core business application. Users should not be able to print with other settings, this could end in a chaos.
    Finally to work with PSE in our company, there is no other way than upgrade to PSE8...
    -Nicolas

  • Is there a way to delete multiple pictures at the same time from the iphone4s?

    Is there a way to deleter multiple pictures at the same time, from my iphone4s? I know how to delete one at a time. Thanks

    Open your Photos App > Camera Roll > At the top right corner you will see a rectangle with a right arrow, select that. Now you can select as many photos as you want and you can hit the red Delete button on the bottom right.

  • Any way to play two clips at the same time one over the other? (transprent)

    Any way to play two clips at the same time one over the other? (transprent)

    Yes.
    See the information here for a variety of ways to do this:
    http://discussions.apple.com/thread.jspa?threadID=933500&tstart=50
    http://discussions.apple.com/thread.jspa?threadID=903151&tstart=0
    http://karsten.schluter.googlepages.com/jackiechancredit
    http://www.geethree.com/slick/V_04.html

  • Any way to Open Two iPhotos (from the same library?)...

    Hi...
    I might have copied an "event" accidentally (somehow) - with one of the copies getting some extra photos... I would like to view both events in separate windows (side by side) so I can see if the photos are duplicates...
    One event is still in scan form with each scan having at least three photos... The other event had been cropped - so no sending the two events into one place and letting the system tell me about duplicates.
    So in closing: Is there a way to open iPhoto in two separate windows simultaneously?
    Thank you in advance...
    Comments, suggestions, opinions welcome...

    So in closing: Is there a way to open iPhoto in two separate windows simultaneously?
    No, I’m afraid.
    You may be able to use This to get a listing of the photos in either Event for comaprison - doing something like giving them a unique keyword might help.
    Regards
    TD

  • Data Sets - Is there a way to put two fields in the same row?

    I am working on my first Spry Data Set (in Dreamweaver CS4) which, if I can get it figured out, will eventually be used as a calendar on a client's web site. You can see the beginning of the project here:
    http://www.rieradesignco.com/calendarlist_spry.html
    My question is, can I put two or more fields on one row? Specifically, I would like the part that looks like this...
    3
    [WED]
    Fusion
    ... to look like this:
    3   [WED]   Fusion
    I tried simply moving the fields (in Design View) so that they looked like they would be in the same row, but as you can see, that didn't do the trick. (You can see what I did here, in the highlighted part of the screenshot:  http://www.rieradesignco.com/spryquestion.jpg). I also tried nesting a table within the table on my html data document that contained the three fields I needed - it worked okay, but that just makes the table more difficult to work with. I don't want to simply type the three items into one field, because it will be a long list and they all need to line up perfectly.
    Is there another way to do it?

    Change the following line to include the red coloured parts
    <div class="MasterColumn" spry:repeat="ds4" spry:setrow="ds4" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">
      <span>{Dsp_#}</span><span>{Dsp_WkDay}</span><span>{Dsp_Event}</span>
    </div>
    The add the following style rule to your document:
    .MasterColumn span {
        display: inline-block;
    I hope this helps.
    Ben

  • Open two movies at the same time

    It seems that it is not possible to open two movies (.cp) at
    the same time with Captivate 1 (well you can run a new Captivate
    program an open the second movie) but will it be possible to open
    more than one movie at the same time in Captivate 2?
    Thanks

    Hello hydrosound,
    Whilst you cannot open two Captivate movies in the same
    instance of Macromedia Captivate, you can get around this by simply
    loading another copy of Captivate. I do this all the time and open
    the second project file that way.
    HTH
    Regards,
    Mark

  • How do I open two profiles at the same time?

    until i updated to Firefox 7 i got prompted to which profile i want to open every time i open firefox, i am using one profile to play and one for work. i get prompted the first time but not the rest of the time how do i fix it so that i can again run two profiles at the same time

    See:
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • Is there a way to open new tabs on the same site without having them go to a new window?

    i like to go to article sites and open up many tabs where each tab is a new article. this allows me to quickly go from one article to the next. when i try to do this with the new firefox it opens the new tabs in a new window because they are from the same site. is there any way for me to turn that feature off?

    Do you mean the Switch to Tabs kicks in if you enter an already opened URL?
    *Switch to Tab no more: https://addons.mozilla.org/firefox/addon/switch-to-tab-no-more/

  • AddressBook - Is there a way to change multiple addresses at the same time?

    To be clear....I have 25 contacts at 1 company and that company moved.
    Is there a way to link the cards together so that when I change the address on one card it automatically updates the other 24 cards?? Rather than having to change each contact individually, which is time consuming and annoying.
    I have created a "Smart Group" for the company and all of the contacts place themselves in the group but it still won't sync the addresses.
    Can someone tell me how to do this, if it's even possible? And if it's not, I really wish it was!!
    Thanks!

    Open your Photos App > Camera Roll > At the top right corner you will see a rectangle with a right arrow, select that. Now you can select as many photos as you want and you can hit the red Delete button on the bottom right.

Maybe you are looking for

  • Stock Statement

    Hi, As our customer requirement we need a report "Stock Statement" for given period (From date - To date) with the following columns Item Opening Stock Qty Opening stock Value Receipt Qty Receipt Value Issue (Consumption) Qty. Issue (Consumption) Val

  • Parameter log_parallelism is not set on Oracle 10.2.0.1.0 on linux

    when i am trying to set following parameter, oracle 10g (10.2.0.1.0) is giving me error. As i am trying to setup Standby database and in Production database, it is required to set this parameter SQL> ALTER SYSTEM SET LOG_PARALLELISM=1 SCOPE=BOTH; ALT

  • Flex mobile projet using air = 3.5

    Hi everyone, My issue is quiet simple to explain : I can't create a "Tabbed Application" using the Air sdk version 3.5 or later. Using Flash builder 4.6 or 4.7, the issue is the same : 1/ New flex mobile project : OK 2/ Selecting Tabbed Application :

  • Cannot buy credit using credit card contact iTunes support

    Playing Pharohs way run out of credit cannot make purchase with my credit card contact iTunes support to complete transaction.

  • Slide out and drop down competition

    Hey everyone. I have been trying to find a solution to this for days, and yet can't figure it out. I have a menu that needs to slide out (horizontally, left to right) from behind an element that says menu. But then instead of the links taking you to