You might have already hear about Clippy. Yea, that’s the Office Assistant that we had in those days. In earlier office versions it helped us with many quick tips to complete the job easily, having some nice animations. If you are fond of it and want to use it in your development environment, there is a cool ReSharper extension for Visual Studio.

 

Recently I came across it and thought to share with you more details about the extension as well as some snaps and the process to install it. The extension is also available as opensource project on GitHub. Continue reading to know more.

Published by on under JetBrains | Office

If you are a developer and developing code using Visual Studio IDE, you might want to learn the shortcut keys that our facorite IDE exposes to use. Mads Kristensen developed a Visual Studio extension and exported all the keyboard shortcuts of Visual Studio 2012, 2013 and 2015.

 

In this post, I am not only bookmarking the tool and link to the site, but also sharing the same with you. I hope, it will be useful for you in day to day development life.

Published by on under Tips | Visual Studio 2013

Windows 10 SDK provides an easy to implement project template by which you can quickly create an app for Universal Windows Platform which you can use to run a hosted web app. You don’t have to create the whole app, if the site is already running. Just change few values in manifest file and your app will be running.

 

In this post, we will learn how to create a hosted web app targeting Windows 10 (without writing any code). Share your feedback and/or ask your queries, if any.

Published by on under CodeProject | Tips

Microsoft recently released Windows 10 Mobile build 10.0.10586.63 to Windows Insiders in the fast ring. There’s not such noticable changes in this build, but I have noticed one cool feature that allows you to select and copy a portion of text from SMS messages easily by just tapping.

 

In this post, I am going to share you details about this with proper screenshot for easy understanding. I hope that, you will like it. Let us know, what you discover more on this build.

Published by on under Tips | Win10Tips

Most of the developers in the Microsoft platform uses C# as their programming language. C# is now matured to version 6 and has come with new features in its different versions. As a programmer, we should know all these features. This will not only help you in cracking interviews but also help you decide whether you should upgrade your project to latest.

Published by on under .Net | C# 4.0

If you are building apps/game for Universal Windows Platform, you might want to retrieve the device information where the app/game is currently running. You might use this information to log details about any exception and/or to do specific action based on device details.

 

In this post, we will learn how to fetch the device information in UWP apps. Continue to read about the APIs exposed by Microsoft SDK. Don’t forget to read my other posts too and share your feedback.

Published by on under CodeProject | Tips

How many times we are in such a condition when our battery is going to die and we have to do some important calls or something else? If we poll for it, the count will be high. If you are a developer and building apps targeting Universal Windows Platform (aka. UWP), you might want to integrate the battery APIs already exposed.

 

This post will cover about the API today and we will learn how more about the API with proper demonstration. Continue to read more on this topic and don’t forget to check other posts on the same topic.

Published by on under CodeProject | Tips

If you are a developer building apps for Universal Windows Platform, you might have noticed that, at the time of debugging there are some strings of digit getting display just under the title bar of the application. This is called as Frame Rate Counter, which displays frame rate and per frame CPU usage.

 

Today in this small blog post, we will learn how to enable/disable the Frame Rate Counter in your Universal Windows apps. Countinue reading to know more about it.

Published by on under CodeProject | Tips

If you are a developer and building apps for Universal Windows apps, you might like to customize your app title bar to match your app theme. You can also change various colors of the buttons. Windows 10 SDK provides you to customize the title bar of Universal apps.

 

Today in this blog post, we will learn how to apply custom colors in apps built for Universal Windows Platform along with different other APIs exposed for it.

Published by on under CodeProject | Tips

Let’s come to basics of programming today. It’s a common interview question asked during an interview and many time candidates become confused with the difference between using directive and using statement/block. Today we will cover this topic and discuss various difference among those.

 

To learn or brush up the basic concepts, continue reading more. I hope, this will clarify all your doubts. If any feedback, do share below in the comments section.

Published by on under .Net | CSharp

Many time we need to programmatically retrieve the size of a file before downloading it from a web location or a network path. This is require to calculate the progress and/or the estimated time to download and display it to the user. For a local file it is easy, but to retrieve this information from a remote location, the implementation is little different.

 

Today in this small blog post, we will learn how to retrieve it dynamically using C# code. Continue reading to know about it. Code snippet has been shared in the post.

Published by on under .Net | CSharp