Search for events in the past

Is there a way to search for events in the past? If not, is there another calendar application with this feature that would be able to sync with my iPod Touch? This feature is one that I must have. I apologize if I come off as whining but my Palm calendar/address book was able to do this.
Thx

Hi helenhopelouise,
Welcome to the Support Communities!
The search feature within the Calendar app should show all events, past and present.   First, check to see if you are syncing All Events in your Calendar app.  Tap on the Settings app on your Home Screen.  Then choose Mail, Contacts Calendars.  Scroll down to the Calendar section to see your options.
Next, try the "Spotlight Search" of all of the data on your iPhone to see if the calendar event you are looking for appears. 
Finally, try quitting all of your open apps and restarting and/or resetting your iPhone.
iOS: Understanding Spotlight Search
http://support.apple.com/kb/ht3636
iOS: Force an app to close
http://support.apple.com/kb/ht5137
iOS: Turning off and on (restarting) and resetting
http://support.apple.com/kb/HT1430
Cheers,
  - Judy

Similar Messages

  • EventLog.EntryWritten firing for events in the past

    Hello - I have a windows service that will setup a delegate for the EntryWritten event. My understanding of this event handler is that it will only fire when an entry is written to the event log. However, events from the past that are contained in that eventlog
    (I'm talking events that occurred in some cases 2 years ago) that were previously written also cause the delegate to fire. For example today, 4/8/2015, I see events that occurred back in 2013 acting as though they were written today.
    Is this behavior expected? It seems as thought it is a bug or possibly something I am not doing correctly in the code. Any light that can be shed on this situation would be great.
    private static bool SetupListeners()
    var logsConfigurationSection = ConfigurationManager.GetSection("LogsSection") as LogsConfigurationSection;
    if (logsConfigurationSection == null) return false;
    for (var incr = 0; incr < logsConfigurationSection.Logs.Count; incr++)
    List<EventLog> el;
    if (logsConfigurationSection.Logs[incr].Wildcard)
    el = EventLog.GetEventLogs()
    .Where(w => w.Log.ToLower().StartsWith(logsConfigurationSection.Logs[incr].Name.ToLower())).ToList();
    else
    el = EventLog.GetEventLogs()
    .Where(w => w.Log.ToLower().Equals(logsConfigurationSection.Logs[incr].Name.ToLower())).ToList();
    foreach (var eLog in el)
    Log.Information("Setting up EntryWritten listener for {0}. Configuration is name {1} and wildcard {2}",
    eLog.Log, logsConfigurationSection.Logs[incr].Name, logsConfigurationSection.Logs[incr].Wildcard);
    eLog.EntryWritten += OnEntryWritten;
    eLog.EnableRaisingEvents = true;
    ListeningLogs.Add(eLog);
    return true;
    EDIT 1: This is C# 5.0, .NET Framework 4.5 and the service runs on Windows Server 2008 and/or Windows Server 2012 (core and full).
    EDIT 2: Looks like this situation has been present for some time given this post on SO:
    http://stackoverflow.com/questions/19137560/eventlog-entrywritten-event-handles-events-from-the-past
    As a stopgap in the code, I plan to interrogate EventLogEntry.TimeWritten (converted to UTC) relative to DateTime.UtcNow with a "buffer" of 2 minutes. This is inside of OnEntryWritten (the delegate called):
    if (elEntry.TimeWritten.ToUniversalTime() < DateTime.UtcNow.AddMinutes(-_bufferMins))
    return;
    Regards,
    Ryan

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Calendar-notifications for events in the past

    Since iOS 7, my notifications for an calendar-event in the notification center are gone, if i'm checking them to late. Is it possible to change the settings, so I can see them, until I'm going to delete them?
    If not, is there an alternative calendar-app with push notifications I can use instead?
    Thanks for an answer.

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Notifications for events in the past

    Since iOS 7, my notifications in the notification center are gone, if i'm checking them to late. Is it possible to change the settings, so I can see them, until I'm going to delete them?
    If not, is there an alternative callendar-app with push notifications I can use instead?
    Thanks for an answer.
    DerKomahnda

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Search for records in the event viewer after the last run (not the entire event log), remove duplicate - Output Logon type for a specific OU users

    Hi,
    The following code works perfectly for me and give me a list of users for a specific OU and their respective logon types :-
    $logFile = 'c:\test\test.txt'
    $_myOU = "OU=ABC,dc=contosso,DC=com"
    # LogonType as per technet
    $_logontype = @{
        2 = "Interactive" 
        3 = "Network"
        4 = "Batch"
        5 = "Service"
        7 = "Unlock"
        8 = "NetworkCleartext"
        9 = "NewCredentials"
        10 = "RemoteInteractive"
        11 = "CachedInteractive"
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0""
    or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>" -ComputerName
    "XYZ" | ForEach-Object {
        #TargetUserSid
        $_cur_OU = ([ADSI]"LDAP://<SID=$(($_.Properties[4]).Value.Value)>").distinguishedName
        If ( $_cur_OU -like "*$_myOU" ) {
            $_cur_OU
            #LogonType
            $_logontype[ [int] $_.Properties[8].Value ]
    #Time-created
    $_.TimeCreated
        $_.Properties[18].Value
    } >> $logFile
    I am able to pipe the results to a file however, I would like to convert it to CSV/HTML When i try "convertto-HTML"
    function it converts certain values . Also,
    a) I would like to remove duplicate entries when the script runs only for that execution. 
    b) When the script is run, we may be able to search for records after the last run and not search in the same
    records that we have looked into before.
    PLEASE HELP ! 

    If you just want to look for the new events since the last run, I suggest to record the EventRecordID of the last event you parsed and use it as a reference in your filter. For example:
    <QueryList>
      <Query Id="0" Path="Security">
        <Select Path="Security">*[System[(EventID=4624 and
    EventRecordID>46452302)]]</Select>
        <Suppress Path="Security">*[EventData[Data[@Name="SubjectLogonId"]="0x0" or Data[@Name="TargetDomainName"]="NT AUTHORITY" or Data[@Name="TargetDomainName"]="Window Manager"]]</Suppress>
      </Query>
    </QueryList>
    That's this logic that the Server Manager of Windows Serve 2012 is using to save time, CPU and bandwidth. The problem is how to get that number and provide it to your next run. You can store in a file and read it at the beginning. If not found, you
    can go through the all event list.
    Let's say you store it in a simple text file, ref.txt
    1234
    At the beginning just read it.
    Try {
    $_intMyRef = [int] (Get-Content .\ref.txt)
    Catch {
    Write-Host "The reference EventRecordID cannot be found." -ForegroundColor Red
    $_intMyRef = 0
    This is very lazy check. You can do a proper parsing etc... That's a quick dirty way. If I can read
    it and parse it as an integer, I use it. Else, I just set it to 0 meaning I'll collect all info.
    Then include it in your filter. You Get-WinEvent becomes:
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624 and EventRecordID&gt;$_intMyRef)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0"" or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>"
    At the end of your script, store the last value you got into your ref.txt file. So you can for example get that info in the loop. Like:
    $Result += $LogonRecord
    $_intLastId = $Event.RecordId
    And at the end:
    Write-Output $_intLastId | Out-File .\ref.txt
    Then next time you run it, it is just scanning the delta. Note that I prefer this versus the date filter in case of the machine wasn't active for long or in case of time sync issue which can sometimes mess up with the date based filters.
    If you want to go for a date filtering, do it at the Get-WinEvent level, not in the Where-Object. If the query is local, it doesn't change much. But in remote system, it does the filter on the remote side therefore you're saving time and resources on your
    side. So for example for the last 30 days, and if you want to use the XMLFilter parameter, you can use:
    <QueryList>
    <Query Id="0" Path="Security">
    <Select Path="Security">*[System[TimeCreated[timediff(@SystemTime) &lt;= 2592000000]]]</Select>
    </Query>
    </QueryList>
    Then you can combine it, etc...
    PS, I used the confusing underscores because I like it ;)
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

  • My iphone has calendar history for 10 years.  my icloud only shows about 6-8 weeks back.  how can i get icloud to show all the calendar events in the past that are on iphone?

    my iphone has calendar history for 10 years.  my icloud only shows about 6-8 weeks back.  how can i get icloud to show all the calendar events in the past that are on iphone?

    I encountered a similar problem when finally (and with much regret) I was obliged to migrate my MobileMe to iCloud last month.
    Many years of iCal history vanished without trace during this automated transition by Apple and iCloud then kindly synched the resulting vacuum back to iCal on my Mac.
    Fortunately, iCloud wasn’t able to decimate iCal on my other Macs because (1) they are still running Snow and (2) I had switched them off as a precaution.  Good job I did.
    My solution was to export my iCal data on one of those other Macs to a backup file – then I imported that backup file into my Lion-updated Mac’s iCal. That restored all the iCloud-deleted iCal data back on to my Mac and this was promptly synched automatically to my Calendar on iCloud.  So now it’s all there and showing.
    Perhaps you could do something similar?  In the meantime, be very careful not to let iCloud’s amnesia get synched to your iPhone (and other devices).
    Experience has taught me never to trust an “upgrade” until it is proven to be working correctly and always to keep in reserve another Mac with a properly-functioning system and all synching to it switched off...

  • How to search for events that collide?

    Anyone now a way to find (search for) events, in calenders, that collide?

    Hi Lasse,
    I hope you don't mind an Applescript solution to your problem. I'm assuming all your events are held in one calendar.
    The script here will ask for the calendar name, check all future events in that calendar and highlight any that clash.
    Try out the script by pasting the text below into a new Script Editor window (Applications>Applescript>Script Editor) and pressing "Run". If you want to keep it, save it as file format "application".
    Hope this helps.
    John M
    -- Copy below here into Script Editor--
    -- Find Calendar Overlaps --
    -- John Maisey -- 9 Sept 2005 --
    tell application "iCal"
         activate
         set myNow to my (current date)
         set sourceCal to first calendar whose title is (item 1 of (choose from list ¬
              (title of (every calendar) as list) with prompt "Choose the calendar"))
         set {myStarts, myEnds, myUIDs, mySumm} to {start date, end date, uid, summary} of (events of sourceCal whose start date is greater than myNow)
         repeat with myFirst from 1 to count of myStarts
              repeat with mySecond from 1 to count of myStarts
                   if myFirst is not equal to mySecond then
                        if ((item myFirst of myStarts) is less than (item mySecond of myStarts)) and ((item myFirst of myEnds) is greater than (item mySecond of myStarts)) then
                             show (first event whose uid is (item mySecond of myUIDs)) of sourceCal
                             display alert (item mySecond of mySumm) message "This event happens during another event in this calendar. The other event is titled " & (item myFirst of mySumm) & "." as warning
                        end if
                   end if
              end repeat
         end repeat
    end tell

  • My iphone 3g is keep searching for network, and the carrier unable to load network list , wat shall i do?  Read more: My iphone 3g is keep searching for network, and the carrier unable to load network list

    My iphone 3g is keep searching for network, and the carrier unable to load network list , wat shall i do?

    Yes, that kind of tallies with my experience ... after 3 days of useless iPhone 3G (BTW, killing 3G on the phone and relying on acquiring AT&T 2G didn't help, it still locked onto T-Mobile with the result that it was draining battery and rebooting frequently!), I ended up visiting the local Apple Store.
    Although the visit was not to resolve the iPhone problem, whilst there I happened to cycle the phone and due to the store having a local AT&T cell, the strength of the local signal meant that I finally re-acquired a AT&T 3G signal ... once locked on again the phone was fine for the next day.
    Nett outcome of this is that I would prefer to lay most of the blame for this debacle on the poor state of 3G support both by AT&T (and US carriers in general), maybe exacerbated in my case by two related events (the local DNC in Denver, which saturated local AT&T cells including 3G and a proliferation of v2.0.0 and v2.0.1 firmwares on iPhones in town, which dragged cell coverage into the weeds).
    It would be nice for future sanity if AT&T and T-Mobile could at least resolve the ability to acquire/release the iPhone gracefully, otherwise I'll be very sceptical of travelling back to the US with only my iPhone, as a self-employeed consultant I can't afford to be out of touch for three days again!

  • Multiple events in the past?

    I am a recent convert from windows to mac so be gentle with me! I want to record events of the past so I can use them on my ipod touch to jog my failed memory ( result of a stroke!) Is this the application to use? I have typed in the dates but there is not a year view to bring them all up and get a summary view - any ideas?Most of the events I want to "remember" are from the past of course. Can anyone suggest a way to do this or an alternative option? typically there are about 6 events a year and the years are 20 years ago.
    many thanks in advance.
    Brian

    Someone told me this ~ "There is a reported bug that if you delete a photo then merge or otherwise organize events prior to emptying the iPhoto trash that the master is not deleted" ~ that is what I do every time I organize things so I am wondering how to get rid of this bug or repair it and how to clean up my files to reflect what I want.
    Yes there is such a bug.  You can recover your "missing" masters and delete them but it will cost your your projects, i.e. books, calendars, slideshows, etc.  The best solution would be to restore a backup copy  of the library before the deletion and joining of events occurred.  However, it would not have your newer photos.
    Here's how to find and cull out those masters:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.>Click on the Add Library button,
    2 -  select the library you want to add from those in the selection window.
    3 - make sure that in the rebuild window the checkbox  "Scavange orphaned photos" is checked.
    4 - now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option
    5 - in the next  window name the new library and select the location you want it to be placed. Click on the Create button.
    Note 1: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments. However, books, calendars, cards and slideshows will be lost.
    Note 2:  Your current library will be left untouched for further attempts at a fix if so desired.
    This will give you a new library with the missing masters grouped in an Album titled Scavenged Photos
    from which you can delete them correctly.

  • Events in the past week - REST API

    Hi, 
    How do I pull the data which gets displayed in the "Events in the Past Week" blade on Azure Preview Portal using REST APIs ?
    Thanks
    Vibhuti 

    Thanks Alex for your reply. I did look into the service management rest api. 
    I was looking for the following - 
    1. I assigned a particular role to a AZure resource group and was looking into the Azure Resource Manager REST API.  However, I did not find any REST API reference which can provide me with the events like when was the role assignment object created,
    when was it assigned to the Azure resource group etc. 
    Thanks
    Vibhuti 

  • I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.

    I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.
    I am running Mac OSX 10.4.11. According to the System profiler the CD/DVD drive is a "PioneerDVD-RWDVR-112D." When I compare the information under this heading, the only unusual difference from my iMac is that the G5 reads "Burn Support: Yes (Unsupported)." My iMac reads "Burn Support: Yes (Apple Shipping Drive)."
    Under the System Preferences the options are set to "Ask what to do" when a blank CD or DVD is inserted. Music CD set to open iTunes, Picture CD set to open iPhoto, Video DVD set to open DVD player.
    Do you have any suggestions?
    Thanks, Jack

    Hi Jack, great help so far!
    Internal...
    http://eshop.macsales.com/static_pages/Framework.cfm?page=superdrive/sdl_powerma c_g5.html
    External be sure it's Firewire & not Bus powered...
    http://eshop.macsales.com/shop/firewire/optical-drives/

  • Mac mini Server 10.6  unable to search for files on the server from desktop.

    I'm running Mac mini Server 10.6 with 15 various Apple Mac desktops 10.4 / 10.6. The problem i'm having is that i'm unable to search for files on the server from any of the desktops. I have fixed permissions and rebooted. I can perfomr a search though command - F and spotlight from the server.
    Anyone have any ideas?

    I have a Mac mini server with Mac osx 10.6.8 installed --- I have a website {UNDER CONSTRUCTION} installed on it with a REGISTERED DOMAIN NAME belizeansworldwide.com -->[DNS service w/GoDaddy]  & DSL INTERNET service  w/VERIZON --- {My server is the ONLY DEVICE CONNECTED to my VERIZON DSL router/modem}
    When I enter my DOMAIN NAME or WAN IP # in my browser(s)--> Chrome OR Safari -- i get my Verizon modem
    set-up page-->{this incl the WAN IP# as I expected}----{NORMALLY I WOULD ACCESS MY Actiontec
    modem/router via 192.168.1.1} --- While in that webpage there's an option "shared files/folders"   & clicking on that option DISPLAYS MY WEBSITE --->  {"PORT FORWARDING DID NOT RESOLVE THAT"}
    My next attempt @ a solution was through my Server's SystemPreference>Sharing>Internet Sharing
    & this the Original Object of my post ===>  "MY SHARING PANEL DOES NOT INCLUDE THE OPTION
    FOR   'Internet Sharing' among the others like CD DVD, Remote Login,Remote Management, Bluetooth Sharing, etc.etc ---- Hope this additional info will help to clarify  &/or explain my problem
    Thanks, & best regards to you & yours

  • Firefox will not access the internet. I have used Firefox for years and the past week I have not been able to get on the internet??? What is the problem. My interent works as I get email and can iuse Internet Explorer to access.

    Firefox will not access the internet. I have used Firefox for years and the past week I have not been able to get on the internet??? What is the problem. My interent works as I get email and can iuse Internet Explorer to access

    Which version of Firefox are you using?
    See
    * https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can

  • I have lost my 'music, mail, safari and phone' icons and i cant get them back alothough i can still find them when i search for them in the search bar.

    my 'music, mail, safari and phone' icons have gone from my home screen and the rest of my apps have spread out only show 16 on a page (instead of 20)  i have no idea how to get them back and have tried resetting home screen which did nothing.  i can get onto these applications but i have to search for them in the search screen.  can anyone help me get these icons back?  if so please help

    this just rearanges the icons in the same order but with the screen still set up with only 16 icons an the bottom 4 (muisc mail...) missing    are there any other ways i can get them back?

Maybe you are looking for