Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6892927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:35:43+00:00 2026-05-27T06:35:43+00:00

Can you suggest tutorial which describes how to automatically update Windows phone 7 application

  • 0

Can you suggest tutorial which describes how to automatically update Windows phone 7 application tile every day? I need to take some local text from binding and put into the tile.
I have done research on this. Some articles contains information about updating tile from server, some topics contains only parts not full source code or hard to understand.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:35:44+00:00Added an answer on May 27, 2026 at 6:35 am

    You’ll need to use a Periodic Task Agent.

    Check the last time it was run. If that time was on a different day, then update the tile as needed.

    Something like:

    protected override void OnInvoke(ScheduledTask task)
    {
        if (task.LastScheduledTime.Date != DateTime.Now.Date)
        {
            var tile = ShellTile.ActiveTiles.FirstOrDefault(t => t.NavigationUri.ToString().Contains("SOMETHING TO IDENTIFY THE TILE IN QUESTION"));
    
            if (tile != null)
            {
                var updatedTile = new StandardTileData
                {
                     Title = "WHATEVER",
                     BackContent = "SOME LOCAL DATA"
                };
    
                tile.Update(updatedTile);
            }
        }
    
        NotifyComplete();
    }
    

    For a starter on Background Tasks, see http://msdn.microsoft.com/en-us/library/hh202961(v=VS.92).aspx or for an example on creating one see http://msdn.microsoft.com/en-us/library/hh202941(v=vs.92).aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can any one suggest any good tutorial or any set of code which help
I'm wondering if people can suggest the best tutorial that will walk me through
Can anyone suggest a book or a tutorial on creating Charts in PHP extracting
Can I get a complete simple scenario i.e. tutorial that suggest how this should
how can i convert eps image to jpg/png. any good application you can suggest.
Can anyone suggest me a helpful programming language which can be used to create
Please suggest where can I find good resources (tutorial/books/example code etc) for this
I'm new to wordpress. Can any one suggest me a best tutorial for learning
Can anyone suggest me some link or tutorial from where i can learn how
I want to learn cairngorm framework. Can any one please suggest to me which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.