Calendar event - how to make it to repeat it self?

Hi,
I was surprised to say that I added a calendar event and I can't make to repeat itself.
For example, I'm using this because I have to take some medicine every day in the morning and I always use reminder for this, to be sure that I take it So it is not a event reminder, which I would like o repeat itself.
I didn't found anything for this setting. Did anyone find such a thing?
Thank you.
Br,
Qqcsi

Hi,
You are right, I forgot to include the model of my phone. Sorry. It is a Nokia N79.
Unfortunetly I don't have what you suggested
Even my Nokia 6100 had it. It's strange that in the N79 I can't find it
Thanks,
Qqcsi

Similar Messages

  • Upgraded to ios 7.1 battery drain is significant and have lost my calendar events. how do i get my events back and why am i losing so much power now?

    how do i get my calendar events back and why the power drain after upgrading my operating system to 7.1?

    Thought I'd reply to this seen as no one else has, I am also experiencing very similar problems with my 4s and by the looks of it is it's across all handsets. I've never had any battery issues with my iPhone even 7.0.6 was fine, but since updating to 7.1 the battery is ticking down very fast. I fully charged in the morning and left it in my locker all day at work when I got my hands on it it's gone down to 52% just on its own!!
    I really hope they sort this out fast the irony is 7.1 was supposed to help battery life!

  • How to make arrays or repeat objects in circle?

    Hello,
    1 - How to make arrays without copying and pasting? Fig-1
    2 - how to create objects repeated in circles? Fig-2
    Regards and Thanks

    1) Patterns
    2) One option is Scripting (or Actions).
    http://forums.adobe.com/message/3472806#3472806
    Edit: That was only for text layers, you could give this a try:
    // xonverts to smart object, copies and rotates a layer;
    // for photoshop cs5 on mac;
    // 2011; use it at your own risk;
    #target photoshop
    ////// filter for checking if entry is numeric and positive, thanks to xbytor //////
    posNumberKeystrokeFilter = function() {
              this.text = this.text.replace(",", ".");
              this.text = this.text.replace("-", "");
              if (this.text.match(/[^\-\.\d]/)) {
                        this.text = this.text.replace(/[^\-\.\d]/g, '');
    posNumberKeystrokeFilter2 = function() {
              this.text = this.text.replace(",", "");
              this.text = this.text.replace("-", "");
              this.text = this.text.replace(".", "");
              if (this.text.match(/[^\-\.\d]/)) {
                        this.text = this.text.replace(/[^\-\.\d]/g, '');
              if (this.text == "") {this.text = "2"}
              if (this.text == "1") {this.text = "2"}
    var theCheck = photoshopCheck();
    if (theCheck == true) {
    // do the operations;
    var myDocument = app.activeDocument;
    var myResolution = myDocument.resolution;
    var originalUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    var dlg = new Window('dialog', "set circle-radius for arrangement", [500,300,840,450]);
    // field for radius;
    dlg.radius = dlg.add('panel', [15,17,162,67], 'inner radius');
    dlg.radius.number = dlg.radius.add('edittext', [12,12,60,32], "30", {multiline:false});
    dlg.radius.numberText = dlg.radius.add('statictext', [65,14,320,32], "mm radius ", {multiline:false});
    dlg.radius.number.onChange = posNumberKeystrokeFilter;
    dlg.radius.number.active = true;
    // field for number;
    dlg.number = dlg.add('panel', [172,17,325,67], 'number of copies');
    dlg.number.value = dlg.number.add('edittext', [12,12,60,32], "30", {multiline:false});
    dlg.number.value.onChange = posNumberKeystrokeFilter2;
    dlg.number.value.text = "12";
    // buttons for ok, and cancel;
    dlg.buttons = dlg.add('panel', [15,80,325,130], '');
    dlg.buttons.buildBtn = dlg.buttons.add('button', [13,13,145,35], 'OK', {name:'ok'});
    dlg.buttons.cancelBtn = dlg.buttons.add('button', [155,13,290,35], 'Cancel', {name:'cancel'});
    // show the dialog;
    dlg.center();
    var myReturn = dlg.show ();
    if (myReturn == true) {
    // the layer;
              var theLayer = smartify(myDocument.activeLayer);
              app.togglePalettes();
    // get layer;
              var theName = myDocument.activeLayer.name;
              var theBounds = theLayer.bounds;
              var theWidth = theBounds[2] - theBounds[0];
              var theHeight = theBounds[3] - theBounds[1];
              var theOriginal = myDocument.activeLayer;
              var theHorCenter = (theBounds[0] + ((theBounds[2] - theBounds[0])/2));
              var theVerCenter = (theBounds[1] + ((theBounds[3] - theBounds[1])/2));
    // create layerset;
              var myLayerSet = myDocument.layerSets.add();
              theOriginal.visible = false;
              myLayerSet.name = theName + "_rotation";
    // create copies;
              var theNumber = dlg.number.value.text;
              var theLayers = new Array;
              for (var o = 0; o < theNumber; o++) {
                        var theCopy = theLayer.duplicate(myLayerSet, ElementPlacement.PLACEATBEGINNING);
                        theLayers.push(theCopy);
    // calculate the radius in pixels;
              var theRadius = Number(dlg.radius.number.text) / 10 * myResolution / 2.54;
              myDocument.selection.deselect();
    // get the angle;
              theAngle = 360 / theNumber;
    // work through the layers;
              for (var d = 0; d < theNumber; d++) {
                        var thisAngle = theAngle * d ;
                        var theLayer = theLayers[d];
    // determine the offset for outer or inner radius;
                        var theMeasure = theRadius + theHeight/2;
    //                    var theMeasure = theRadius + theWidth/2;
                        var theHorTarget = Math.cos(radiansOf(thisAngle)) * theMeasure;
                        var theVerTarget = Math.sin(radiansOf(thisAngle)) * theMeasure;
    // do the transformations;
                        rotateAndMove(myDocument, theLayer, thisAngle + 90, - theHorCenter + theHorTarget + (myDocument.width / 2), - theVerCenter + theVerTarget + (myDocument.height / 2));
    // reset;
    app.preferences.rulerUnits = originalUnits;
    app.togglePalettes()
    ////// function to determine if open document is eligible for operations //////
    function photoshopCheck () {
    var checksOut = true;
    if (app.documents.length == 0) {
              alert ("no open document");
              checksOut = false
    else {
              if (app.activeDocument.activeLayer.isBackgroundLayer == true) {
                        alert ("please select a non background layer");
                        checksOut = false
              else {}
    return checksOut
    ////// function to smartify if not //////
    function smartify (theLayer) {
    // make layers smart objects if they are not already;
              if (theLayer.kind != LayerKind.SMARTOBJECT) {
                        myDocument.activeLayer = theLayer;
                        var id557 = charIDToTypeID( "slct" );
                        var desc108 = new ActionDescriptor();
                        var id558 = charIDToTypeID( "null" );
                        var ref77 = new ActionReference();
                        var id559 = charIDToTypeID( "Mn  " );
                        var id560 = charIDToTypeID( "MnIt" );
                        var id561 = stringIDToTypeID( "newPlacedLayer" );
                        ref77.putEnumerated( id559, id560, id561 );
                        desc108.putReference( id558, ref77 );
                        executeAction( id557, desc108, DialogModes.NO );
                        return myDocument.activeLayer
              else {return theLayer}
    ////// radians //////
    function radiansOf (theAngle) {
              return theAngle * Math.PI / 180
    ////// rotate and move //////
    function rotateAndMove (myDocument, theLayer, thisAngle, horizontalOffset, verticalOffset) {
    // do the transformations;
    myDocument.activeLayer = theLayer;
    // =======================================================
    var idTrnf = charIDToTypeID( "Trnf" );
        var desc3 = new ActionDescriptor();
        var idFTcs = charIDToTypeID( "FTcs" );
        var idQCSt = charIDToTypeID( "QCSt" );
        var idQcsa = charIDToTypeID( "Qcsa" );
        desc3.putEnumerated( idFTcs, idQCSt, idQcsa );
        var idOfst = charIDToTypeID( "Ofst" );
            var desc4 = new ActionDescriptor();
            var idHrzn = charIDToTypeID( "Hrzn" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc4.putUnitDouble( idHrzn, idPxl, horizontalOffset );
            var idVrtc = charIDToTypeID( "Vrtc" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc4.putUnitDouble( idVrtc, idPxl, verticalOffset );
        var idOfst = charIDToTypeID( "Ofst" );
        desc3.putObject( idOfst, idOfst, desc4 );
        var idAngl = charIDToTypeID( "Angl" );
        var idAng = charIDToTypeID( "#Ang" );
        desc3.putUnitDouble( idAngl, idAng, Number(thisAngle) );
    executeAction( idTrnf, desc3, DialogModes.NO );

  • How can make the header repeat in every page?

    I followed the instructions in pages' help nad it does work for text heardes, however it does not work with images and graphics.
    Daoes anyone know how to make graphic and/or images headers repeat in each page?
    Thanks in advance.
    Ruben

    Make them Master Objects:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&highlight=letter head&mforum=iworktipsntrick
    Peter

  • How to make Smart Builds repeat?

    im sorry if this question has been answered already,
    but how do you repeat smart builds, so that they never end, until you move to the next slide?
    (for example, using the 'thumb through' smart build the animation ends when the last picture is reached, when i actually want the cycle to repeat)
    (oh, and i've tried copying and pasting images to add them to the end of the smart build, but the unfortunate side-effect is that the file is now HUGE!)
    thanks,
    'kalapaka'
    Message was edited by: kalapaka

    Welcome to the forums!
    Smart Builds can't be looped directly. One workaround is to create a presentation that just has your Smart Build, export that presentation as a QuickTime movie, and the place the resulting movie in your main presentation and set it to loop. (To make sure the looping is transparent to the user, be sure to put the repeat the first image as the end of the Smart Build.) The results you get should be pretty good.
    Alternatively, if you don't want to go the movie route, you can create the single slide Smart Build presentation as outlined above, put a hyperlink on it to the main presentation, and then set the Smart Build presentation to loop. To do this, you have to set the Smart Builds to advance automatically, set the slide transition to transition automatically, with a delay (this is critical), and it the Document Inspector set the slideshow to Loop. The slide transition delay is necessary because the hyperlink will only work during this delay, and not while the Smart Build is actually running. If you set the delay to the same delay as used between Smart Build images, it will not be obvious. You can also set the hyperlink object so that it is transparent, and thus also will not be noticeable by the audience. With this setup, the presentation will happily loop continuously until the hyperlink is clicked, although the hyperlink can only be clicked at the end of each Smart Build cycle.

  • How to make server behaviors repeat region vertical?

    I have done many "Server Behavior, Repeat Region" showing vertical list without any other setup, now I’m doing a new one and is showing horizontal which doesn't make any sense. Does anybody know why and how to fix this “bad behavior”?

    This is very simple page no external or internal css is for internal use only to retrieve data base information. I currently have to more from different sites working fine without any third party app or any extra coding effort.  here are codes.
    Thank you guys for your prompt response.
    <?php require_once('Connections/customers.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    mysql_select_db($database_customers, $customers);
    $query_Recordset1 = "SELECT * FROM customers";
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $customers) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table width="158%" border="1">
      <tr>
      <th scope="col">ID</th>
        <th scope="col">Name</th>
        <th scope="col">Last Name</th>
        <th scope="col">Address</th>
        <th scope="col">City</th>
        <th scope="col">State</th>
        <th scope="col">Zip Code</th>
        <th scope="col">E-mail</th>
        <th scope="col">Phone</th>
        <th scope="col">Username</th>
        <th scope="col">Password</th>
        <th scope="col">Role</th>
      </tr>
      <tr>
        <?php do { ?>
          <td align="left"><?php echo $row_Recordset1['id']; ?></td>
          <td align="left"><?php echo $row_Recordset1['name']; ?></td>
          <td align="left"><?php echo $row_Recordset1['lname']; ?></td>
          <td align="left"><?php echo $row_Recordset1['address']; ?></td>
          <td align="left"><?php echo $row_Recordset1['city']; ?></td>
          <td align="left"><?php echo $row_Recordset1['state']; ?></td>
          <td align="left"><?php echo $row_Recordset1['zip']; ?></td>
          <td align="left"><?php echo $row_Recordset1['email']; ?></td>
          <td align="left"><?php echo $row_Recordset1['phone']; ?></td>
          <td align="left"><?php echo $row_Recordset1['username']; ?></td>
          <td align="left"><?php echo $row_Recordset1['password']; ?></td>
          <td align="left"><?php echo $row_Recordset1['role']; ?></td>
          <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
      </tr>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>

  • How to make SubForm to repeat on each page of the PDF

    Hi all,
    I have an I-form, which "floats" on 2 or more pages. My problem is that I want to repeat a SubForms as a header(or a footer) on each page of the document. Any idea how can I do that.
    Many thanks in advance
    Z.
    Edited by: Zdravko Kalenderov on Oct 16, 2008 11:13 AM

    Hi,
       Yes ,If you want to display the same content in all body pages , you just design repeatable part in the master page.
    Thanks & Regards
    Manee

  • [Office365][Calendar][Event]How to get deleted event by REST API

     
    Structure of event:
          "Id": "AAMkAGI2NG...WRAAAAAA2hTfspaWRAAADTG93AAA=",
          "IsCancelled": false,
    Meaning of property "IsCancelled" is to distinguish between events that have been deleted or not, isnt it ?
    Last week I was able to get the event that has "IsCancelled" is true, but now i can get "IsCancelled" is false only. What is the cause of change?
    Can I use REST API to get the events that are already deleted? If ican, pls show me how to do!
    Thanks in advance !

    I dont think its possible to do it

  • HT1692 how do i stop my calendar events being deleted automatically after a month or so?

    I cannot keep calendar events - how do i change this , it should be so simple.

    If you normally sync to your computer via iTunes there is a setting in iTunes for how many days back you keep calendar events.
    If you don't normally sync to your computer I'm not sure  if there is a way to keep calendar events around longer.

  • Dissapearing emails with calendar events

    Whenever I receive an email containing a Calendar Event invitation the email just deletes itself after accepting the invitation. The event is correctly added to the Calendar but the email message dissapears and I cannot access the message from a different device (e.g. office PC). It is annoying!

    You may want to check your calendar events settings and make sure the to and from date are just for that one day and also make sure your reminder is set for one time event and not daily on your device as well as your repetition is set to one time event.

  • Why don't I get reminders/calendar events when Smart Cover closed on ipad3?

    I don't quite know why. But when my Smart Cover is on my ipad 3, reminders and calendar events don't make any noise till I open the cover,then I have about 20 items all at once making noise. Is there a way the ipad can make noise when the cover is closed to remind me of events etc?

    Hi,
    Based on my research, “\Device\Harddisks” means Disk 2 in Disk Management.
    However, it seems that he numbers after DR are just unique random numbers. "DR" is being incremented as you insert new drives (e.g. USB). In these scenario,
    it is hard to find the \Device\Harddisk2\DR72.
    Did you mean that you have 40TB for disk 2? If yes, it would take a long time to do the scan. However, this may be the unique way to make sure the “\Device\Harddisk2\DR72” can
    be scanned.
    Best regards,
    Susie

  • How can I use custom repeating event in my iPad Air calendar iOS 8.0.2

    How can I use custom repeating event in my iPad Air calendar iOS 8.0.2?

    Unless something has changed, you can't. The iPad has limited ability to make repeats. However if you make the custom repeats in another program you can send them to or import them into your calendar and the iPad will respect the custom repeat.

  • When I make a new Calendar event the phone loads, and then the event disappears! How can I fix this?

    On my iPhone 4 8GB unlocked (iOS 6), whenever I try to make a new event in Apples Calendar app, when I am done making the event, the phone shows a small loading circle in the top bar and when that loading circle stops the event disappears. I checked my iCloud Calendar in case it stored it there or something but no that was empty. And making an event in the iCloud Calendar app does not make it sync the event to my iPhone 4 either so I basically cannot make any events at the moment. Help!
    EDIT:
    I just went into the iCloud settings and saw that the Calendar iCloud sync was turned on. So I turned it off, waited, turned it back on again and now I see the events again, and I can make them without them dissapearing immediately. Stupid bug.
    Message was edited by: AppleRayL

    see > OS X Mountain Lion: Shortcuts for taking pictures of the screen
    or > How to Take a Screenshot in Mac OS X (with screenshots)

  • How do I delete a calendar event (repeating daily forever) that I accepted on my iPhone from a mobileMe iCal invite?

    Hi,
    I'd like to know how to delete a calendar event from my iPhone4 (iOS 5.1) calendar. The event was sent to me from a mobileMe synced iPhone4 (iOS 5.1) calendar and for some reason it was set to daily repeat forever.
    The event has been deleted from the originators calendar now, but the result has not been propagated to my calendar, despite an update being sent out. When I attempt to accept it just hangs and doesn't update in my calendar.
    More annoyingly, the event doesn't have an edit button in my calendar, so I cannot delete it (and all other occurences) myself.
    Any ideas on how to remove it?
    Thanks,
    Rich

    A workaround. Not perfect but it gets rid of it.
    Do the below link's steps and then deselect that calendar from view.
    https://discussions.apple.com/message/22346299#22346299

  • How do I enter a calendar event in my iPhone 4 iOS5 that repeats every third Thursday?

    How do I enter a calendar event in my iPhone 4 iOS5 that repeats every third Thursday?

    If you have Outlook 2007 on your computer you can set up the event to repeat every third Thursday on a calendar on your computer within Outlook. Then sync your iPhone with Outlook on your computer using iTunes.

Maybe you are looking for

  • Error during Database instance installation of NW04s Portal installation

    Hello All,      This is our system environment:    Portal - NW04s SR1 (SCS instance on one host) -- finished successfully    Database - MS SQL Server 2005 on a separate host We are doing a domain installation. The database was installed successfully,

  • GL Account drill down crashing in 8.8

    Forum, In 8.8 PL17 when in the Chart of accounts screen, if any user tries to drill down into the account balance they get the following message: System Message (-100) Anything but a memory problem. This was not an issue on 2005 for this particular d

  • SOAP with SSL in weblogic 5.1

    Hello! Any idea of using SOAP with SSL in weblogic 5.1.?? My webservice works properly when I use http, but it doesn't work with http. It's very important to me, to get a solution for this problem!! Many thanks. Best regards, Rafa.

  • MINI SAP on Windows Vista Home Basic

    Hi, I'm trying to install the MINI SAP CD in the Windows Vista Home Basic, but I'm not getting success. I made download of Virtual Microsoft PC but for the version Home Basic, it doesn't have function. Somebody could help me please ?

  • DTW Legacy Import problem

    One of our clients wants the previous two years of invoices and POs imported. DTW does not like to import closed documents. We tried importing them as open documents and then closing them . This did not work out so well, as not all documents loaded c