Latest Photo's not showing in pictures tab?

My Z10 camera and photo's have been working fine but now when I take a picture it will no show in my pictures file?
All my older photo's are showing as normal. Any ideas?

can you set default save picture to the memory card.
Ades Ganteng

Similar Messages

  • My photo album does not show the pictures I have taken! Any help?

    My photo album does not show the pictures I have taken, they show up on my iMac through iCloud but not on my phone. Also my videos do not show up that I take.

    Did not work. I've selected iMessage to ON and left it. After a few hours I recieved a message "activation unsuccessful. Turn on iMessage to try again". This has been going on for the past 3 days.

  • Some of my earliest photos are not showing on my phone after updating to iOS7. They can be seen in the app "over" which allows for art and lettering to be placed on a photo but I can not find an album for photos before 2012.

    Some of my earliest photos are not showing on my phone5 after updating to iOS7. They can be seen in the app "over" which allows for art and lettering to be placed on a photo but I cannot find an album or year for photos before 2012 (in the photo app). The iphone says the photo content is there when I check in "about" under general in settings. So the pictures seem to be somewhere but I just can't access from from the photo app. Any suggestions. I also know that they were there before the iOS7 upgrade as I was looking for a pre 2012 picture last week and it we there.

    Some of my earliest photos are not showing on my phone5 after updating to iOS7. They can be seen in the app "over" which allows for art and lettering to be placed on a photo but I cannot find an album or year for photos before 2012 (in the photo app). The iphone says the photo content is there when I check in "about" under general in settings. So the pictures seem to be somewhere but I just can't access from from the photo app. Any suggestions. I also know that they were there before the iOS7 upgrade as I was looking for a pre 2012 picture last week and it we there.

  • Some of the users Profile photo is not showing in sharepoint team sites

    Some of the users Profile photo is not showing in the list of SharePoint team site.
    In the people picker their picture is grayed out but if you click on their name it will direct you to their mysite and the picture is there.
    Can some body help on this.

    Try running:
    stsadm -o sync -deleteolddatabases 0
    Then, run the timer job named similar to "User Profile Service Application - User Profile to SharePoint Full Synchronization". Wait for it to complete, then re-check the profile photo on the SharePoint site.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • HT4236 What do I do if "photos" is not showing up as an option under "My Device" in the iTunes window?

    What do I do if "photos" is not showing up under "My Device" when I plug my phone in and the iTunes windo opens?  I had my phone reset yesterday b/c of picture texting/software problems.  It wiped it clean!  I had to start again like it was a NEW phone and use my backup info on my computer to sync my information.  I have restored my contacts, calendars, music, etc...but, I can't get my pictures back.   HELP!

    If the iTunes window is set as wide as possible on your computer screen, try changing your computer screen resolution

  • My photos are not showing and the videos say requested url not found

    I have an iPhone 4s running 5.0.1 My photos are not showing up in iPhoto and on my phone they never focus in to the clear picture. Also any videos I have taken are saying "The requested url is not found on this server" I am not sure what is going on. Anyone know how to Fix this.

    sounds like there might be a problem with your iphone's memory
    but this might help http://www.iphonelife.com/tip/how-to-get-photos-off-iphone
    http://www.copytrans.net/copytransphoto.php

  • I backed up by phone and now icloud is not showing my pictures over 1400 of them help

    I backed my phone up and now icloud is not showing my pictures over 1400 of them. help?

    Why do you believe this is true?
    If you had PhotoStream turned on and your photos were syncing to it, PhotoStream holds the last 30 days worth of photos (up to 1000 photos maximum) in the cloud and they should sync back to the phone. Any photos taken more than 30 days ago and any photos greater than the 1000 photo capacity of PhotoStream, will have already been purged from the cloud and are no longer available for download.
    IF you had photostream turned on, it stands to reason that you probably also had iCloud backups turned on, in which case you should be able to wipe the phone (settings>General>Resets>Erase all content and Settings) and restore it from your most recent iCloud backup.

  • Disable "Do not show my picture" on Lync client

    Hi all, is it possible to disable the "Do not show my picture" on Lync client ?
    I want to stop that an user can disable photo.
    Thanks a lot

    Try this script, I've edited it to make it a little clearer what areas need to be changed.
    # script to re-enable AD photos for users that have disabled them
    # DNS Name of SQL Server - Leave Blank for SQL Server Express
    $sqlserver = ''
    # This is the directory where exports will be placed temporarily - you must have write access to this directory
    $exportdir = 'C:\Lync-Scripts'
    ########## DO NOT EDIT BELOW THIS LINE ##########
    "Checking for Export Directory"
    If (-not (Test-Path "$exportdir" -pathType container))
    "ERROR: Your Export Directory doesn't exist!"
    Exit
    "Cleaning up old files..."
    If (Test-Path "$exportdir\Export-Pictures.xml") { Remove-Item "$exportdir\Export-Pictures.xml" }
    If (Test-Path "$exportdir\Import-Pictures.xml") { Remove-Item "$exportdir\Import-Pictures.xml" }
    # check to see if we need to have an sqlserver argument to DBImpExp
    If ($sqlserver -ne "")
    "Query will be run against SQL server ""$sqlserver"""
    $sqlserver = "/sqlserver:$sqlserver"
    "Exporting users..."
    $p = [diagnostics.process]::start('"C:\Program Files\Common Files\Microsoft Lync Server 2010\Support\DBImpExp.exe"', "/hrxmlfile:""$exportdir\Export-Pictures.xml"" /restype:user $sqlserver")
    $p.WaitForExit()
    # check that XML was exported
    If (-not (Test-Path "$exportdir\Export-Pictures.xml" -pathType leaf))
    "ERROR: Verify that $exportdir is writable!"
    Exit
    "Loading XML"
    $d = [xml] (Get-Content "$exportdir\Export-Pictures.xml")
    "Processing..."
    $changes = 0
    foreach ($hr in $d.HomedResources.HomedResource)
    $found = 0
    foreach ($c in $hr.Containers.Container)
    foreach ($p in $c.Publication)
    If ($p.CategoryName -eq 'contactCard' -and $p.InstanceNum -eq 6 -and $p.Data.contactCard.displayADPhoto -eq 'false')
    $hr.UserAtHost
    $p.Data.contactCard.displayADPhoto = 'true'
    $p.Version = (([int] $p.Version) + 1).ToString()
    $p.PrevPubTime = $p.LastPubTime
    $p.LastPubTime = (Get-Date -Format s).ToString()
    $found = 1
    $changes++
    If ($found -eq 0) { [Void]$d.HomedResources.RemoveChild($hr) }
    "Changes: $changes"
    If ($changes -ne 0)
    "Saving XML..."
    $d.Save("$exportdir\Import-Pictures.xml")
    "Importing users..."
    $p = [diagnostics.process]::start('"C:\Program Files\Common Files\Microsoft Lync Server 2010\Support\DBImpExp.exe"', "/import /hrxmlfile:""$exportdir\Import-Pictures.xml"" /restype:user $sqlserver")
    $p.WaitForExit()
    "Finished import, cleaning up..."
    If (Test-Path "$exportdir\Export-Pictures.xml") { Remove-Item "$exportdir\Export-Pictures.xml" }
    If (Test-Path "$exportdir\Import-Pictures.xml") { Remove-Item "$exportdir\Import-Pictures.xml" }
    "Done"
    Also, please note that the default installation of Lync uses SQL Server Express and you don't need to provide the SQL server.

  • Photos event not showing date, shows some irregular words

    Photos event not showing date

    Thank you Btabz. Is there anyway out of purchasing iphoto4? Can't I just use my folders? If I had a pc, i don't think I would need a specific program like iphoto4. do you know of any other applications/ ways to transfer photos that might help?
    Yes, I thought that iTunes would just sync with the folder. I had about 1300 pictures, and for some reason or another I had renamed about 20 of them, and they're the only ones that transfered to my ipod. By "renamed," I mean that I changed the Digital Camera's label of something such as "Fxl0004_21" to "Sunset picture."
    I know that sounds strange, but that's what happened. Any ideas would be much appreciated.
    Thank You.

  • After migrating data from Time Machine, some of my photos are not showing up in iPhoto. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see my photos

    After migrating data from Time Machine, some of my photos are not showing up in iPhoto LIbrary view. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see all  my photos in 'Library' view, and I can't figure out how these photos seem to be arbitrarily hidden. Help, please.

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • TS2755 My friend sends me photos from his iPad 2 via email. However, when he come to my iPad 2 inbox, the photos do not show up. Instead I get 20-some characters. What is wrong? Please advise.

    My friend sends me photos from his iPad 2 via email. However, when they arrive in my inbox on my iPad 2, the photos do not show up. I receive 20-some characters. Please advise as to the problem.

    Try sending them via the Messages app as opposed to E-mail.
    E-mail shouldn't normally be a problem, but Messages will do as a soloution.
    To do so:
    . You need iOS 5
    1. Go to your Photo Gallery
    2. Open up the album/ images you want to send
    3. Press the share button (top right hand corner)
    4. Select 'Send as Message' (not e- mail)
    5. Select your friends Apple ID from your address book for his iPad
    6. Voila!
    - it's something along those lines...... my iPad is downstairs atm, but the actual way of doing it will be similar...... !

  • Why some photos do not show up in the widgets after final export?

    Why do I have a problem with the FeatureD News Widget not showing all my photos? I have tried redoing it many times over in different formats and all but one photo never shows up in the final export. Please I need help to finish up the website.

    If I understand this correctly, you are reporting that you have images in your Featured News' target frames and some of those photos do not show up in the published site.
    If so, I would like you to confirm if the widget works fine in Preview within Muse? Are the images missing in all browsers, even after clearing the browser cache? Can you provide a link to a published site? If required I may also request your source Muse file to investigate further.
    Thanks,
    Vikas

  • My photos are not showing up as layers in the layers panel, only as one layer, so I can't make any changes to the layers.  Does anyone know why this is happening?  Am I downloading them from my camera wrong?

    My photos are not showing up as layers in the layers panel, only as one layer, so I am not able to make changes to the layers.  Does anyone know why this is happening?   Am I downloading them from my camera wrong?  I have watched the video and the photos don't open that way on my layers panel. Any help would be appreciated, I would like to edit out the background and turn it a different color.

    barba87623950 a écrit:
    My photos are not showing up as layers in the layers panel, only as one layer, so I am not able to make changes to the layers.  Does anyone know why this is happening?   Am I downloading them from my camera wrong?  I have watched the video and the photos don't open that way on my layers panel. Any help would be appreciated, I would like to edit out the background and turn it a different color.
    Photos from cameras or scans have only one layer (the 'background' layer).
    You can start with that 'background' layer and duplicate it or add other layers in the editing process. For instance you can make a selection of a subject and put it on another layer; a common use is to desaturate the 'background' and to keep the color in the selected subject in your newly created layer.

  • My Iphone5 does not show the picture location after upgrading to ios 7.0.4 - why?

    my Iphone5 does not show the picture location after upgrading to ios 7.0.4 - why?

    I change Settings>Privacy>Location Services>Camera to OFF and then ON and the locations start to appear !!!!.
    It seems to be Apple bug.
    Thanks for you efforts

  • Photo does not show up in Adobe Elements

    I have a MacBook and have iphoto set up to open the edit with Adobe Photoshop Elements and not with iphot oediting tool. I had version 8 of APE and upgraded to APE 9 - now the photo does not show up in the Adobe window when I try to edit. How do I fix this ?

    Most likely you have set the wrong file as the external editor. You don't want the obvious one; that's just a link to the welcome screen. Go back and choose this one, which is hidden away inside the folder Support Files:

Maybe you are looking for

  • Schedule line in Scheduling Agreement non modifiable

    Hi Friends, I'm creating Scheduling Agreement with VA31. The issue is that Schedule line category is coming as non-modifiable. Is it standard that in Scheduling Agreement, you can not overwrite default schedule line category? In customizing for Assig

  • Advise required for the scenario logic

    Hi Experts, SCENARIO NAME: FILE(text format) to IDOC. requirement. ex. input is 10 line items if any of the line item fails that supposed to throw exception what ever success lines are there that should process with out any fail or idoc should genera

  • Acrobat 9 standard will not open in Windows 8?

    Not sure what else to do. It installed just fine, but now will not open. Has anyone else had this issue?

  • Installed 10.4.6, airport card is now dead. PLEASE HELP!

    I installed 10.4.6, my airport card worked great before this. Now it's totally dead, won't power on and doesn't work. The card is only a few months old and worked great before I installed 10.4.6. I have tried taking the card out and reinserting it, r

  • Ipad Mini not syncing with my itunes on macbook laptop - help?

    Hi, I purchased an ipad mini today and when I try and sync with my itunes on my Macbook it says I require MAC OS X version 10.6.8 or later. I currently have version OS X 10.5.8. Can anyone help? what do I do?