By tag: windows8
0
kicks
Creating Windows 8 Live Tile Notifications with WinRT C# .NET
Learn how to create a basic Windows 8 Live Tile notification. We'll cover an example of a text, image, and animated Live Tile notification in C# .NET on the new Windows 8 desktop.
0
kicks
Windows 8 sales are below Microsoft's internal projections
What do you think of Windows 8? What can Microsoft do to turn things around?
0
kicks
Free Windows Media Center For Windows8 Pro
How to get Windows Media centre free for Windows8 Pro
0
kicks
Free Windows Media Center For Windows8 Pro
How to get Windows Media centre free for Windows8 Pro
0
kicks
Windows 8: Things that every IT professional should know
Windows 8: Things that every IT professional should know about Microsoft's new OS
0
kicks
Simple framerate counter for MonoGame games
Fluid and smooth user experience is a key element of any good Windows Store app. If you are writing a game, you most likely will want to measure and display framerate related data (current framerate, min. framerate, etc.) . In this example I am going to show how to add a simple FPS counter to a Mono...
0
kicks
Client certificate authentication in ASP.NET Web API and Windows Store
SSL over HTTPS provides a mechanism for mutual server-client authentication. This can be used as an alternative to more commonly used username/password based approach. In this post I am going to show how to set up client certificate authentication in ASP.NET Web API application and how to use delega...
0
kicks
.gitignore file for Windows Store applications
When developing Windows Store applications (former “Metro Style”), these are generally the files that I don’t want Git to include in the repository:
0
kicks
Get the network machine name in a Windows Store app
When developing Windows Store apps that support receiving push notifications, besides getting the application ID and hardware ID, I also like to get other useful information about the machine/device that can ease the management of the push notifications service. The network machine name is one of th...
0
kicks
What does “use strict” do in JavaScript?
This is one of the questions I get frequently when delivering workshops on Windows 8 “Windows Store” application development using HTML, CSS and JavaScript.
0
kicks
Physical location of Windows Store applications and data on a PC
When developing Windows Store applications for the Windows 8, it’s important (or at least interesting) to know where the applications get stored after installing it through the Store, where all the files go when we write to the LocalFolder, RoamingFolder, and TemporaryFolder, and also where the valu...
0
kicks
Global exception handling in Windows Store JavaScript applications
When an unhandled exception occurs in a Windows Store app, this application is terminated immediately, in a silent way and without showing any error message to the user. This is the default behavior, but we can change it, if we want to.
0
kicks
Detect if the Debugger is attached via JavaScript in a Windows Store
There are some cases where we want a block of o code or function to be executed only when we are debugging the application, usually to show detailed error messages that are intended only for the developer to see.
0
kicks
Detect DEBUG build configuration via JavaScript in Windows Store apps
One of the things I miss when developing Windows Store apps in HTML/JavaScript, is the possibility of using conditional compilation statements, in order to have different behavior depending on the build configuration selected when the project was compiled (e.g. Debug, Release, etc…), as we do in C# ...