• Network Dashboard 2.1 Passed Certification, Published To Marketplace

    Just a quick note to let everyone know that version 2.1 of Network Dashboard has passed certification and has been published to the Windows Phone Marketplace. It usually takes about 24 hours from this point until it’s available to everyone. For more information on what’s included in this update, see this post.

  • Network Dashboard 2.1 Submitted For Marketplace Certification

    Network Dashboard version 2.1 has been submitted for certification testing for the Windows® Phone Marketplace. If everything goes according to plan, it should be available in the marketplace in a few days. Version 2.1 brings the following changes: NOTE: To properly support multiple locales, we have changed how reminder times are stored. This may have…

  • Seeking Translators For Network Dashboard

    I’m currently seeking volunteers to help translate Network Dashboard into other languages. It’s a fairly small app, so there’s only about 45 phrases that need to be translated. I’ve had offers for German and Italian translations already and have sent the template off to them, so I will hopefully have those translations soon. Anyone interested…

  • Network Dashboard 2.0 Released; Available Now in the Marketplace

    I’m happy to announce that Network Dashboard 2.0 has been released and is available now in the Windows Phone Marketplace. Network Dashboard 2.0 brings the following changes: Network Dashboard has changed from being a free app to a paid app with a free trial. The free trial contains all the features of previous versions, so is…

  • “What happened to Network Dashboard?”

    That’s a question I’ve heard quite a few times over the last couple of days. I figured I’d write up a quick post to let everyone know what happened and what’s going on. First, Network Dashboard has been hidden from the Marketplace for the time being.  I submitted a version 1.2 update to the Marketplace…

  • Network Dashboard – Seeking Feedback on Switch to Paid App

    I’m just putting the finishing touches on a new version of Network Dashboard that fixes a couple of bugs and adds a couple of neat new features. I’m seriously considering a change, though, from a free app to a 99 cent app with a trial. Just to be clear, the trial will NOT be a…

  • Brandon Watson Loves Network Dashboard!

    Yesterday at the Build Blogger Bash at Microsoft’s Build conference, Brandon Watson, Microsoft Senior Director of Windows Phone Development, mentioned Network Dashboard during a live recording of the Windows Phone Dev Podcast. I showed him Network Dashboard and he immediately downloaded it on his phone. On the podcast He said, “I love it!” You’ll find the mention…

  • Network Dashboard v1.1 Submitted for Marketplace Certification

    Network Dashboard version 1.1 was submitted for Windows® Phone Marketplace certification today. The new version brings a much-requested feature: Start Screen Live Tile status support for Wi-Fi and Mobile Data tiles. Start Screen Live Tile support allows the Live Tiles for Wi-Fi and Mobile Data to display the current state of those radios through a…

  • Network Dashboard for Windows Phone Mango Now Available

    I’m proud to introduce our latest Windows® Phone application, Network Dashboard! Network Dashboard is now available for download via the Windows Phone Marketplace. Network Dashboard provides a quick and easy way to see the current status of your Wi-Fi and Mobile Data features as well as one tap access to configuration options for Wi-Fi, Mobile…

  • How to Use the PhotoChooserTask

    This is a quick post to show some code around how to use a PhotoChooserTask for Windows Phone programming: private BitmapImage OriginalImage = new BitmapImage(); private void btnAddPicture_Click(object sender, EventArgs e) { PhotoChooserTask pix = new PhotoChooserTask(); pix.Completed += new EventHandler<PhotoResult&rt;(OnCameraCaptureCompleted); pix.ShowCamera = true; pix.Show(); } private void OnCameraCaptureCompleted(object sender, PhotoResult e) { if (e.TaskResult…