Apart from the other cool new features, the giant company also added a feature in Microsoft Visual Studio named “Layout Management”. This is a nice feature for people working on multiple devices with Visual Studio 2015. Using this you will be able to save and sync your IDE layout across devices.

 

Today in this post, we are going to discuss this and will learn how to save and sync the Window Layout. Continue reading and let us know, how this can benefit you.

Published by on under Tips | Visual Studio 2015

For some people, it is sometimes irritating when the "Output" window automatically opens up on the screen when building a project or solution in Visual Studio. For some people, it's the reverse case and they want to check the entire log while the build is running or the console application is running in debug mode.

 

In Visual Studio, you can control this behavior and ask the IDE whether to open it into view or not. It’s not specific to Visual Studio 2015 and is available since VS 2013. Let's see how to enable/disable it.

Published by on under MVB | Tips

It happens many times (during the coding or code review process) when we need a bigger space in our favorite Visual Studio IDE to check/read the code completely. Closing all the other docked windows/panels, toolbars and then adding them one by one is really very difficult and time-consuming.

 

Visual Studio 2015 provides us an easy way to switch between a full screen and normal mode. This way, you don’t have to do extra work to create a bigger space. Continue reading to learn more on this topic.

Published by on under Tips | Visual Studio 2015

If you are working in Visual Studio 2015 IDE, you might have noticed the “Quick Launch” search bar, which allows you to quickly navigate to common menus and settings. This is a handy tool that you will need while searching for some options or features within the popular IDE.

 

Today this post will cover how to enable/disable this “Quick Launch” bar. Continue reading to know these quick tips & tricks on Visual Studio 2015. Pass it on to your friends/colleagues.

Published by on under Tips | Visual Studio 2015

Registry is the heart of Windows Operating System and all/most of the apps and games associates various values/data into the registry, which can be accessed at different point of time. Playing with Windows registry is very dangerous and hence general people should avoid or take special care while working with it.

 

In case you are a developer, you want to read/write/delete entries to/fro Windows Registry. This post will cover details and code snippets to delete an entire key tree from it. Continue reading to learn how to do it.

Published by on under .Net | C#

Sometime we need to find out details of running process which is external to your current process, might be a third party one. If you are currently looking for some code to find out details of a process, this post will definitely help you. Here we will learn, how to get the process description using C#.

 

Continue reading to learn about it. Also, sample code has been shared for you to understand it better. If you have specific query, drop a line in the comment section.

Published by on under .Net | C#

Microsoft now stepped one step forward to push Windows 10 to a major set of devices who are still using Windows 7 or Windows 8.x by marking the OS as “Recommended Update”. It’s still your decision whether to opt-in or opt-out. If you opt-in, you will of course get it as free.

 

It is still a right time to upgrade to Windows 10, but not mandatory. To know more about it and the upgrade process, continue reading this post.

Published by on under DZone | News

I hope you read my previous post on “Building a Toast Notification with text for apps targeting Universal Windows Platform”. There we learned how to create a very basic toast notification. Continuing the series of posts, today we will learn how to add buttons within the notification.

 

Let’s begin with building toast notification with text and buttons. Stay tuned to learn creating more complex notifications in next blog posts of this series.

Published by on under CodeProject | Tips

Microsoft started rolling out a configuration update to Windows 10 Mobile users who are in fast ring. This might be a step towards rolling out the Redstone update to the Windows 10 Mobile users. If you are already in the fast ring, you might have already got the notifications.

 

Windows Insiders chief, Gabriel Aul, in a tweet announced the availability of this update which will prepare your device for the next big update and improve all over the upgrade experience.

Published by on under News | Windows

When downloading from a remote location, many time we need to know whether the file downloaded properly or not. There are many techniques to know about it but among them, one of the approach is to check the hash value of the file. The Cryptography APIs of .NET can help you to calculate the same.

 

Today in this post, we will learn how to calculate the hash value of file stored in local resource. Continue reading to learn more about the steps. Code has been shared.

Published by on under .Net | C#

If you are a developer and building apps or games for Windows 10, targetting Universal Windows Platform (aka. UWP), you might want to show toast notifications to the user of your app/game. You might also want to provide some additional content like textbox, button etc. to get specific inputs.

 

As part of this tutorial series, we are going to learn how to show custom toast notifications. Today let’s begin with building simple toast notification with text. Stay tuned to learn complex notifications in next blog posts.

Published by on under CodeProject | Tips