WinRT JS app guide: Introduction

What we will cover In this post we will introduce our next guide on creating Windows Store Apps, this time with JavaScript and HTML. Windows Store App guide with JavaScript and HTML A couple of months ago we walked through the steps of creating a Windows Store application in C# and XAML using Telerik graph [...]

 
 February 25, 2013  Posted by Iris Classon at 1:21 pm Code, Windows 8, Windows Store App, WinRT 1 Response »
Example: Compressing and decompressing files in a Windows Store App with GZipStream class

I don’t know about you, but working with streams in WinRT has proven to be a challenge- at least for me. I keep expecting things to be there that aren’t and my reads and writes collide in my mind. Aside from WinRT, there has also been changes in (welcoming changes) in .Net 4.5, and I [...]

 
 February 18, 2013  Posted by Iris Classon at 11:08 pm Errors, Visual Studio 2012, Windows 8, Windows Store App No Responses »
Error Windows 8 / Visual Studio 2012: Something went wrong with Share. Try again later

As i was preparing my demo’s for some upcoming sessions the Share charm stopped working. From Visual Studio 2012 when I was running my app and trying to share nothing would happen at all- I had an app that was both a share target and share source, and from other Windows Store Apps it would [...]

 
Settings panel: Windows Store Apps JS/HTML and C#/XAML side by side

In Windows Store Apps the Settings of an app has to be accessed the same way, through the settings charm in the charms bar. Both app and system settings can be accessed there. You add commands to the pane itself, and that’s all you can do with the pane. Each command can invoke one settings [...]

 
 February 13, 2013  Posted by Iris Classon at 6:38 am Windows 8, Windows Store, Windows Store App No Responses »
Windows Store App Enterprise Deployment mini-guide

Here is a simplified guide for sideloading enterprise Windows Store Apps 1. The app should pass the WACK test 2. App must be signed by a Certificate Authority trusted by targeted PC’s 3. For sideloading the signed app package + dependencies are needed 4. Windows Server 2012 and Windows 8 Enterprise edition PC’s must be [...]

 
Error: Visual Studio 2012 hangs or crashes when adding new folder in Windows Store App with Javascript and Html

A couple of days ago I had the weirdest problem in Visual Studio 2012. I was working on some demo applications, Windows Store Apps, and in JavaScript and Html. But whatever I did I could not create or rename a folder. Whenever I did Visual Studio would hang, and become completely unresponsive until I basically [...]

 
A simple design time data example with Windows Store Applications for beginners

I’ve gotten many question about design time data and how you can work with it. The default templates are for many a tiny bit complicated, and if you look at most of the examples out there for design time data ther are often just modified versions of the code in the template. You can download [...]

 
 January 28, 2013  Posted by Iris Classon at 10:04 am Windows 8, Windows Store, Windows Store App, WinJS, WinRT No Responses »
Confused about WinRT? Best in-depth article!

Still confused about WinRT? Today I came across one of the best articles I’ve read on WinRT, a very well written in-depth article that explains the story, the details and the discussion. I recommend everybody to read this! The article is written by Peter Bright (Twitter @drpizza) and is 7 pages long, and as several [...]

 
WinRT comparison JS/Html and C#/XAML: Using a grid for app layout

In XAML we often use the Grid element to create a fluid layout but at the same time keep the controls where we want them to be in relation to each other. Of course we don’t use just the grid, but it often serves as a main frame- or skeleton, for the app. If you [...]

 
Connecting your website to your Windows Store App with meta tags

A pretty cool thing you can do to better connect your website with your Windows Store App Oddly enough most developers I’ve talked to are unaware of this little cool thing you can do to connect your Windows Store App with your website so I’ve decided to write up this little blog post, and also [...]