How do I set an appointment that is every 4 weeks, or the second Thursday of the month?

How do I set a recurring event that is every 4 weeks or the second Thursday of every month?

You can't. Not natively to the iPad. The only way would be to make the appointment in some other program and then import the appointment into your calendar app. The app will honor repeats made in other programs.

Similar Messages

  • I'm having trouble scheduling a "repeat" for an appointment that recurs, e.g., "the second Thursday of each month," rather than on a specific date.   It seems that it can only repeat a given date.  Am I missing something??

    For iCalendar:  Is there a way to schedule a repeat for an event that repeats, e.g., "the 2d Thursday of the month."?  All I see are options that will repeat (every day, month, year, etc.) on a given date.  Am I missing something?

    loyev1,
    There should also be a "Custom..." selection in the (every day, month, year, etc.) drop down menu. Select "Custom..."
    Then:

  • How do i set an appointment into my iphone and get a warning sign for the appointment to date into my agenda ?

    Since IOS5.1 , I been having a hard time getting my agenda to show my appointments and give me a warning sign like alarm or a reminder alarm for them .
    Now since the new update we have had one app split into two and gotten reminder and agenda .
    Now i have been using o r better said been trying to use the reminder , to get my appointments set right .
    But it seems to be that i do not get a warning of any type from my phone about the coming date , i set up the reminder for in the first place .
    Before ios5.1 the reminder was intergrated into the agenda and for more easy to use since the new .
    Now the agenda has no more option to also add birthdays and other handy reminders which are on a yearly bases .
    I have been trying to find out if i missed something or other , and come to the conclusion that i see no options aviable to either enable or disable anything of the sort to change this .
    Also i have been reading the manual and i notest that in there is no reminder of how this new stationary app from apple itself works and explained .
    Anyone can enlighten me about this please , thank before hand and greetings from verbodentoegang

    So I have bought a couple of apps on my iphone and would like to transfer them to my itunes library, but not sure how.
    iTunes > File > Transfer purchases
    When I plug in my iphone and try and sync the two, I get a warning from itunes that everything on my iphone will be wiped and everything from my itunes library will be moved to it.
    Have you changed the computer you are syncing with?

  • How do I set iCal so that my alarms go off when in sleep mode?

    I'm pretty sure that I can set iCal to open a program (iTunes) as an alarm while the computer is in sleep mode but I can't find the setting. This morning it didn't go off while in sleep mode.
    Does anyone know how?

    I am pretty sure that you can't. You can however use the Energy Saver in System Preferences to wake the computer at a set time, and then your iCal alarm could fire.
    AK

  • When I send an email the rely comes into another account in my apple email.  How do I set it so that my email comes to the correct address?

    When I send an email the rely comes into another account in my apple email.  How do I set it so that my email comes to the correct address?

    Hi Sunny C,
    Welcome to the Support Communities!  The "From" field should be showing by default, but you can check or change your settings for Mail with the instructions below:
    Mail (Yosemite): Set Mail preferences
    http://support.apple.com/kb/PH19178
    In the Composing pane, you can set the email account that you want to send new messages from.
    Also, check the View command on the Menu bar.  View > Message Attributes should have a checkmark beside the "From" field.
    Cheers,
    Judy

  • Upon launching Thunderbird, how can I set a password that will prevent viewing of my emails if someone uses my computer?

    Upon launching Thunderbird, how can I set a password that will prevent viewing of my emails if someone uses my computer?

    100% this addons can help you
    https://addons.mozilla.org/en-us/thunderbird/addon/master-password/
    look at my Thunderbird when I open it

  • How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    It would seem if your choose "Show my windows and tabs from last time" '''''and''''',
    *when you last closed Firefox, you had no web site open (just a blank tab), that it would open just that blank tab
    *when you last closed Firefox, you had one or more tabs/web site open, that would allow you to "Restore Previous Session"
    #Have you tried that?
    #If so, what is happening in each circumstance when you reopen Firefox?
    '''Restore Previous Session'''<br />
    Open tabs are automatically saved when closing Firefox beginning in Firefox 4. To open your last session, after Firefox starts, click History > Restore Previous Session. For this to work
    #You must be remembering history (Options > Privacy > Remember my browsing history).
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    #You must not be using Private Browsing or permanent Private Browsing
    #*See [https://support.mozilla.com/en-US/kb/Private%20Browsing Private Browsing]
    #You must not use Clear Recent History or Clear history when Firefox closes
    #*See [https://support.mozilla.com/en-US/kb/Clear%20Recent%20History Clear Recent History]
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]

  • How do I set up an indicator to display for only 1 second?

    How do I set up an indicator to display for only 1 second?
    I am reading keys from a serial device and I turn on an indicator that corresponds to the key pressed
    on the serial device but how do I set this up so that it only stays lit (enabled) for a second or two?
    The indicator is inside of a case statement and turns on OK but I do not want it to stay on for more than
    a second or two. How do I modify this to display for only a second or two?
     (P.S. I am running an old version 8.2 and can only see vis that are 8.2 or older.)
    thanks

    Simplest way to turn the indicator off (false value) after a set time is to use a Sequence structure (flat or stacked).
    Frame 1, set to true,
    Frame 2, Wait ms (wire millisecond value to wait)
    Frame 3, set to false.
    This method, however, prevents the code outside the case structure from running during that wait time.  
    Something more elaborate will allow the external code to run.  What comes to mind is a shift register that holds the indicator name and the time stamp (in milliseconds) when it was turned on, in an array of clusters.  Each iteration of your loop will check this register to see if a certain time has passed (current time stamp minus turn on time).  If so, use a case structure to turn the indicator off and remove the elements from the shift register array (so you don't keep setting the indicator to false).  The array will let you control multiple indicators independently.
    A problem with this option could arise from multiple readings.  Lets say you want to turn it off after 2 seconds, but you read the value again after 1 second (this means the indicator should be on for a total of 3).  The code would still turn it off after the 2 second mark.  Of course this really depends on the time intervals involved with your code.

  • I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    Close ... before going for a specific Cisco app ... lets find out some details:
    Host we need more details:
    What is your server environment (Windows Server, or Mac OS X Server, or Linux)?
    What security is implemented in your environment - as what is restricted (RDP for all or specifc credentials on all machines? Are you part of local admin group to the server you wish to connect)?
    Does your environment Support CISCO IPSec connection? If so use Settings> VPN and IPSec tab to enter VPN details, if not then go with above suggestion. IF your restricted to RSA then either built in VPN settings or 3rd party app for RSA would suffice.
    Finally, there are many RDP applications out there I use "Mocha RDP Light" (free minimal ads when launched not when connecting).

  • I was on a free dictionary website and it asked me if it would like to send me push notifications and i allowed it but i don't want them anymore...how do i get rid of that? I'm using my macbook pro by the way

    I was on a free dictionary website and it asked me if it would like to send me push notifications and i allowed it but i don't want them anymore...how do i get rid of that? I'm using my macbook pro by the way

    Go to the site and look for an unsubscribe link. Or, contact the site and ask them to stop.

  • TS4020 I had to buy a new iPhone, how do I retrieve my stuff that was backed up in my iCloud account? The guy at the apple store said it could take a few days iCloud was running real slow due to so many new accounts, is that true?

    I had to buy a new iPhone, how do I retrieve my stuff that was backed up in my iCloud account? The guy at the apple store said it could take a few days iCloud was running real slow due to so many new accounts, is that true?

    No problems backing up iCloud here.
    Tap Settings > iCloud > Storage & Backup
    Switch iCloud Backup On

  • How do I set a reminder to repeat every 2 months in Reminders program?

    How do I set a reminder to repeat every 2 months in Reminders program? The program allows you to set a reminder to repeat every 2 weeks, but it doesn't allow give you much freedom if you want to set it to repeat, every 2 months or every 3 months, or every few days, etc.
    Can someone advise how I can set up a reminder (To Do) to repeat every 2 months?
    Thanks,

    unfortunately you can only use the predetermined time lenght's in the reminder app (hour, day, week ,month ,year) and so on. You could either set it to remind you monthly or you could set it up as an event in your calendar as it is a bit more customizable on time

  • HT4528 how do I create an event in my calander that repeats the second thursday of every month

    how do i create an event in my calander that repeats the second thursday of every month

    This should get you started down the pathJust replace User data with your cluster and do the data integrity check in the value change event use a simple one button dialog to notify the user which values are out of compliance and disable and grey the OK button untill all conditions are met.
    Jeff
    Attachments:
    Prompt(Date).vi ‏50 KB

  • How can I set up new sites to open in new pages and not over the top of the current open page?

    how can I set up new sites to open in new pages and not over the top of the current open page?

    Middle-click ''(press down mouse scroll wheel)'' <br />
    or <br />
    {Ctrl + Click} <br />
    or <br />
    Right-click and use '''''Open in a New Tab'''''

  • How do I keep a document that was created on another computer? I have the link.

    How do I keep a document that was created on another computer. I have the link. https://adobeformscentral.com/?f=Mv9KGJZhLFi47Q-H63fajA

    Hi,
    The link you provided is for the HTML fillable form. Is that what you are trying to download?
    FormsCentral form files are stored on the FormsCentral servers. If you are the author or a co-author of the form you can access it from any machine by logging into FormsCentral. If you aren't the author or a co-author of the form you will need to contact the author and have them share the form with your FormsCentral account. The following FAQ explains how to share forms with other users:
    http://forums.adobe.com/docs/DOC-2462
    Regards,
    Brian

Maybe you are looking for

  • Mid 2012 MacBook Air Yosemite Slow Booting and Old Boot Screen

    Hello Guys, I have a mid 2012 MacBook Air 13" and I had installed public beta of Yosemite on it. Now I am running OS X 10.10 (14A388b) and I have problems on the boot. On all the other macs, I saw that the booting screen is black background and a whi

  • Changing file type API to open with Adobe Reader 9.2

    In windows XP, if I go to C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins, it shows the API extension to be File Type AcroExch.plugin This seems to be because Adobe Acrobat 5.0 is installed first on the PC, then Adobe Reader 9.2 is installed on the

  • Reserve memory for global zone

    Hello, Is there a way / method to reserve certain amount of RAM only for the global zone? I have a server (Solaris 10 10/08) with 5 zones on it and instead of setting memory caps on each zone, I would like to reserver some memory for the global zone

  • Slow wireless on Time Capsule

    I realize this question in some form or another has been posted ad nauseum, so I'll apologize in advance. I'm running a 500 GB Time Capsule. I recently got the bright idea to extend the network and bought a couple of new AirPort Express (11n models).

  • Won't burn CD

    I make a playlist but when I click the burn button at the bottom of the screen, the message "Disc Recording Not Found" flashes at the top of the page. Am I missing some component?