Sms calendar events on lumia 920

My wife and used to update our calendars with sms calendar events between her Nokia e66 and my c7. I purchased a Lumia 920. And now this way isn't working anymore. Anyone An Idea How To solve This?

jimmyireland wrote:
Same as mine farby.Think he should check once more
If you refer the post by b21_s its Chat Back-up in place of SMS Delivery Confirmation.
May be the phone is Network locked and its some carrier related menu ..

Similar Messages

  • Monthly Calendar View (Lumia 920)

    Hello,
    I have what appears to be an odd issue with the monthly calendar view.  Out side of its to small and hard to read, but thats another issue I'll tackle later.  When looking at the monthly view it appears the text is in a different language.  Even when all the other interfaces are in english on the phone.  Here is a screen shot of the monthly calendar view directly from my phone. Screen Shot on Imgur
    When look in the daily view the information is in english and correct.  Has any one else seen or experainced this on their Lumia 920?

    Hi LouValdez,
    Welcome to the forum! 
    This feature is called Lorem Ipsum which is used to keep the appointments private while visible on the phone's monthly calendar view. The text will give you a clue that an agenda is set on a particular date.  This applies to all entries, whether from Gmail, Hotmail, and other accounts that have calendar sync feature.
    Disabling this feature is currently not supported, but you can cast your vote for the ability to turn it off at this website: Get rid of the Lorem text in the small view calendar.
    Let us know if you need further assistance. 

  • Script creates+deletes Google Calendar-events. (free SMS-notification)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

  • Google calendar event times are shown as -1h

    Summary:
    When I create a new event in the built in WP8 calendar app to a Google calendar the time of the event is being displayed as one hour earlier.
    Steps to reproduce:
    Create a new event in calendar. Choose one of the Google calendars configured (I have two configured in my phone). Set time as 2013/07/17 16:00. Save the event.
    Expected behavior:
    The event time in the agenda view is shown as 2013/07/17 16:00.
    Observed behavior:
    The event time in the agenda view is shown as 2013/07/17 16:00 for a few seconds. It then automatically changes to 2013/07/17 15:00.
    Other notes:
    I have two Google calendars configured. I can observe the same misbehavior on both.
    I also have a Microsoft (@hotmail.com) calendar configured. This works as expected.
    When I log into my Google calendar using a web browser, the time is shown as expected.
    When I use a third party calendar (Chronos) and sync my Google account directly, the time is shown as expected.
    When I use a third party calendar (Chronos) and use it simply as an interface to the built in WP calendar the time is off again showing 2013/07/17 15:00.
    The timezone on my WP is set to (UTC) London.
    I started noticing this perhaps a week ago. It was working as expected before.
    Phone model is Nokia Lumia 925
    Phone OS version is 8.0.10327.77
    Notes 1-6 suggests to me that the internal calendaring module in WP8 fails to recognize DST (daylight saving time) in timezone (UTC) London or misinterprets relevant information fields on Google calendar objects.
    Note 7 suggests to me that this is related to an update to my WP8 phone or a change in Google calendar API.
    Any help is much appreciated, this is driving me rather nuts.
    Thanks,
    Kaarel

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

  • Nokia Lumia 920 email : how to do search on all em...

    Hello all, 
    This is  a feature i miss from my previous iphone 4. 
    I have multiple email accounts linked together (hotmail, 2 google accounts) on my lumia 920 email client app. I have set all email accounts to sync emails from past one month. However when i do a search for a particular keyword (eg: barbecue) , which might be present on one or all of the email accounts, probably on or before the one month time window, the email client can search only on the hotmail server and not on the google servers. 
    This was a feature i enjoyed with the iphone, in that it can search on all servers (linked) for the keyword I' looking for. Am I missing some setting ? or is it a limitation of the windows phone 8 email client ? or is it a limitation for nokia lumia's implementation of the windows phone 8 email client ? 
    Hope someone can help me out. 
    Thanks and Regards,
    Kiran Antony

    Hello all, 
    Wooowww.. I found the soluton on web..!!
    http://www.wpcentral.com/quick-tip-gmail-settings-windows-phone-8
    Tried this and now i have only synced last 7 days and the search for an email can search on all servers (hotmail and google). However, its slightly annoying that i've to sync all calendars and contacts in order get the mail client be able to connect to the server. A change in this behaviour is desired.!
    Thanks,
    Kiran Antony

  • Nokia Lumia 920 loads of issues after Denim update...

    Everything functions well, but after updating it to Lumia Denim + Windows Phone 8.1 Update 1 I first got some weird installing issues, then it started randomly crashing, then it worked fine again, of-course it won't back-up as usual (so no hard-resseting for me), and the live folders seem buggy for no reason at all, but for some reason whenever I attempt to create a live folder it takes me 5 minutes and it won't ''accept it''.
    Also for some reason there is no ''Hey Cortana'' or maybe this simply isn't for the Nokia Lumia 920.
    Attachments:
    wp_ss_20150226_0009.png ‏614 KB
    wp_ss_20150226_0010.png ‏611 KB
    wp_ss_20150226_0011.png ‏405 KB

    Hi, TulaTheQuang. You may try checking if there is any update on the phone system apps by going to Store >... > settings > check for updates and see if these will fix the problem. If not, try rebooting your phone by holding the volume down and power keys at the same time for 10-15 seconds, release and the phone will restart. After this operation, you may need to set the date and time on the phone. Let us know what will be the outcome. For the availability of Hey Cortana, you may refer to this link: Will I get “Hey Cortana” voice activation after Lumia Denim update?. Link is applicable regardless of your region.
    Regarding your concern about the calendar, gilesrm74. The feature is currently unsupported on the device, but you may post your concern on this link: windowsphone.uservoice.com as a feature suggestion. And for the availability of Cortana, you may check this link: Full of features: Lumia Denim Update. 

  • When a third party program creates a new Google calendar event using a http link I cannot click the save button in Firefox 9.01 or 10b2.

    I use a TV listings program called DigiGuide. This has a script that opens a new Google Calendar event page in my browser for a specified TV program with all fields already completed. I then just have to click the SAVE button on the Google Calendar site to save the event - but since updating to 9.01 from 8.xx this button and others (Discard, Search) has no effect, although the cursor changes when over the button as if it recognised a link. Opening the same page in Chrome works fine. I have also noticed that Calendar's other buttons (e.g. next/previous period) can stop working on the main Calendar page, which I have as a pinned tab - in this event navigating away from Calendar and back again regains that functionality. The issue persists in Firefox 10b2.

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

  • Lumia 920 proximity sensor not working

    It's a 5 months old Lumia 920 and already the proximity sensor stopped working!!!
    When i make a call or receive a call, when i place the phone beside my ear, or cover it with my hand just to check, nothing happens! The phone screen doesn't go black, it stays active for the entire time and the phone charge drains like crazy.
    Guess it's a hardware failure. Still if anyone has any suggestions, i will appreciate much.
    Thanks in advance.
    BR,
    Saad

    I've had the same problem. The screen won't blank during a call (like the proximity sensor isn't detecting my face/finger/hand). I keep hanging up on people with my ear. I've taken to locking my screen before putting it to my ear but anytime I get another call / text / voicemail / calendar notification / alarm while i'm on the phone (which happens a lot still) it lights the screen up again and makes it where i'm able to hang up with my ear.
    I've factory reset, and had the phone replaced TWICE already. I'm on my 3rd Lumia 920 (and they all have the same issue!) This didn't happen until the most recent firmware update...so I think it was a problem created when they were trying to fix the other proximity sensor issue where the screen stayed on black all the time during a call.
    Rebooting does fix the problem temporarily, but it always comes back. I'm tired of hanging up on people and hoping for a new model device from AT&T but they're giving me **bleep** at the moment.
    TLDR: Factory reset, replacement devices don't fix the problem. It's a firmware bug. I'm on my 3rd 920 with the same issue. Extraordinarily frustrating.

  • Transfer SMS from N8 to Lumia.

    I have just upgraded from N8 tonokia lumia. I have txts I want to keep. How do you make folders..
    Moderator's note: We have edited your post. A more appropriate subject was provided.

    Hi rosie1157,
    If your new device is Windows Phone 8 (Lumia 920, 820, 620, Etc.) you can transfer your SMS via Bluetooth using the Transfer My Data app. Just download it to your phone and follow the on screen instructions. 
    However, if you are using a Windows Phone 7.5/7.8 device, transferring SMS is not possible.

  • Lumia 920 seldom does not respond while in sleep m...

    Hi,
    I encountered the same issue along with another abnormal condition too. Phone turns into locked state and the screen stops glowing (blank black screen), indicating idle state. It doesn't respond when I press unlock button. Also it does not respond for Camera, and Volume buttons too. But, when I connect it to a PC in that state I am able to browse the phone normally via PC only. Phone still remains buggy. As a work around pressing volume-keys + power key + camera key simultaneously restarts the device and resumes to normal state. However, previous state of phone isn't restored i.e., device starts as it were normally restarted.
    Regards,
    K Chandrasekhar Omkar
    Moderator's Note: E-mail address was removed. Please don't publish your personal contact information on a public forum. 
    Sorry, couldn't find any place to post this. It seems that there is, at least on my phone, a semi-reproducible bug that stops the volume control from working.
    Steps to reproduce (from clean phone, ie. just freshly booted, no remnant IE tabs):
    1. Turn on phone.
    2. Open music+videos (Xbox music) app. Play a song that is locally stored on the phone.
    3. While the music is still playing, open up an Internet Explorer tab and navigate to youtube (m.youtube.com).
    4. Play an HD movie file. I played Peter Jackson's "The Hobbit" preview #9. Your previously playing music will stop playing.
    5. After a few seconds, stop the youtube video playback by hitting the Windows button.
    6. Go back to the music+videos app. Play a song that is locally stored on the phone.
    On times that the bug shows up, the music plays at a fixed volume. Using the volume rocker will cause the volume display to increase and decrease, but the actual volume will not change unless you change the volume to 00/30, at which point the sound will mute. If the bug doesn't show up, repeat steps 3 through 6 until the issue shows up. You don't need to reboot in between attempts.
    Interestingly, volume control still works if you go back to the youtube video. The issue shows up when using the loudspeaker as well as when using headphones. If nobody else can reproduce it, we can start trying to figure out if it's certain music file types or something that cause it. Diagnostic information below:
    Model: NOKIA Lumia 920 Carrier: AT&T
    OS Version: 8.0.9903.10 Firmware revision number: 1232.2109.1242.1001 Hardware revision number: 1.0.0.0 Radio software version: 1.0.202041.3 Chip SOC version: 8960
    Thank you,
    Omkar Kandarpa

    I've had the same problem.  The screen won't blank during a call (like the proximity sensor isn't detecting my face/finger/hand).  I keep hanging up on people with my ear.  I've taken to locking my screen before putting it to my ear but anytime I get another call / text / voicemail / calendar notification / alarm while i'm on the phone (which happens a lot still) it lights the screen up again and makes it where i'm able to hang up with my ear.
    I've factory reset, and had the phone replaced TWICE already.  I'm on my 3rd Lumia 920 (and they all have the same issue!)  This didn't happen until the most recent firmware update...so I think it was a problem created when they were trying to fix the other proximity sensor issue where the screen stayed on black all the time during a call.
    Rebooting does fix the problem temporarily, but it always comes back.  I'm tired of hanging up on people and hoping for a new model device from AT&T but they're giving me **bleep** at the moment.
    TLDR:  Factory reset, replacement devices don't fix the problem.  It's a firmware bug.  I'm on my 3rd 920 with the same issue.  Extraordinarily frustrating.

  • Nokia Lumia 920 issues... that nokia CANNOT fix

    I have got quite a few issues with this useless phone:
    MMS messages: i cannot recieve them. i can with my iphone, its a nokia issue, they are unable to let me know what is wrong.
    random rebooting: this shoudnt happen but it does, very annoying.
    unable to connect to WPA2 Enterprise networks :a biggie for me, will install a certificate, but cannot use it, nokia CANNOT fix this issue
    battery life is nothing like advertised, i was advised by nokia to disable data, disable wifi, disable EVERYTHING turning my premium phone into a dumbphone
    the phone creaks, you can hear it on calls and video's captured
    Nokia support is useless, they tell me they will call me back, but never do.
    the camera is useless in normal light conditions heaps of overexpsed area's
    anyone have any fixes for these issues?

    As has been reported by many people here as a result of an equal amount of people bringing it up Battery life on the Lumia 920 will require a number of charging cycles to optimize, This has nothing to do with the phone but is inherent of the type of batteries used in modern day phones and not specific to Lumia 920.
    Battery use may vary depending on a number of issues. If you are seeing mailsync, sending and/or receiving SMS and others be troublesome and require many retries it could be you are in a region where the signal is not very good. I am _not_ saying it's not the phone, just that it does not have to be, and frankly often isn't.
    Nokia Drive+ is not available as a beta for nothing. If you can't deal with or won't be willing with using beta software then don't. The latest update has reportedly improved performance significantly.
    How does MMS not working have anything to do with Battery, get the correct settings from your carrier. There's plenty of information available here on how to get this sorted.
    What are your expectations of battery life? In general I would say for a phone like the Lumia 920 a normal working day should be quite acceptable and many users initially reporting shorter life have cone back in confirming that battery life has seriously improved over the initial few days/weeks of use.
    And in conclusion, if you feel your device is faulty talk to Nokia using the contact details here. In such a case there is nothing anyone here can say or do to help you really.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Lacking of some basic functions of Lumia 920

    Hi,
    The Lumia 920 is lacking some basic functions as follow:
    1. Call history does not show duration of calls.
    2. SMS field does not show whether it is sent&delivered or sent&not delivered or not sent without turning on the delivery confirmation, doing so I will receive an SMS from mobile operator.
    3. I cannot choose vibrate&ring at same time.
    This is so basic and essential so pls work with Microsoft to add these function.
    Thanks,
    Phung

    farby wrote:
    1. Agree
    2. Though may be matter of inconvenience..but at least the purpose is served that you receive an SMS confirming the delivery
    3. Offcourse you can but if both are selected the Vibrations will be only for a few seconds and then the phone will start ringing ..
    I found one more function that is not good, that is call forwarding, we have a very poor option here, forward or not while we should have other options to forward the call once the phone is unreachable, not answering....
    I think MS and Nokia should add these functions into the phone. So far I don't satisfy with this new WP8 as it should have done well as a role of phone.

  • Inviting an atendee to a calendar event

    Hello. I am a new BlackBerry owner and having added a reminder to my calendar for next week, I want to "invite attendee" (send a reminder to my husband's cell phone). When I click on the "Invite" it then takes me to contacts but I cannot seem to attach his mobile number, it keeps asking me if I want to edit my contact for him. What am I doing wrong? Probably something small but I thought maybe someone here would know. Thanks in advance for your help.

    hello, as far as I know, calendar events work with email, not phone numbers. Did you set an email in the contact of your husband ?
    If your husband does not have an email address, I know many carriers offer a free email address like [email protected] where XXXX is the phone number of the subscriber. There is often a setup to allow the person to receive an SMS with the subject and sender of the email. But I know it defeats the purpose of sending a calendar event. Sorry.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Can I sync & edit calendars between Mac & Lumia 92...

    I'm swapping home and work computers to Apple but would like to keep my lumia 920. One important feature for me with windows is the ability to edit my calendar on any of my devices - laptop, home computer or 920 - and it automatically syncs with them all. Despite hours of surfing and Apple expert advice, I still haven't found a post telling me if it's possible to edit and sync any type of calendar between Apple and 920 without me needing a phd in computing. Can anyone help please ?

    http://discussions.nokia.com/t5/Pool-of-Knowledge/​Sync-contacts-and-Calendars-between-a-Mac-and-Wind​...
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • N9 don't receive calendar events sent form another...

    Hi 
    I have tried to send calendar events from my E75 to my N9 but these messages are not received by my N9.
    Does anyone has a solution for this?

    It will be sending them as MMS, not SMS, chances are that the N9 isn't recognised by the network so that stops that feature from working.
    Do they work if you email or bluetooth them instead?

Maybe you are looking for

  • How to create a database in ORACLE 8i

    How to create a database in ORACLE 8i

  • TS3682 iCloud backup problem

    How do I re-instate iCloud backups? Last automatic back up was right before I left for Japan in June. Has not backed up since. Have followed instructions on-line with no fix.

  • Unloading point not transmited to vendor through EDI in SA

    Hi , Unloading point details are not transmited to vendor for perticular material in SA . What will be the possible reason for this ? . It was gone as blank in ASN . But in message details auto unloading point details are their . RB Edited by: Raghav

  • Portal DEV Environment Setups

    I am still having problems setting up portal DEV/Debugging environment and fishing for some info on how everyone else had setup theirs. I have followed Plumtree's guide for basic portal DEV setup, but having issues with it. Does pretty much everyone

  • Reprocessing Dunning Letters

    Does anyone know if B1 can handle the following scenario for Dunning Letters? 1. Dunning letters are processed through the Wizard. 2. It is realized that a batch of payments have not been processed. That is done, which obviously changes invoices and