In this post we will see Clipboard API support in Windows Phone. Clipboard API support came as part of Windows Phone 7.5 and it was not part of Windows Phone 7. Class is defined in System.Windows namespace as below, You can set text as below, In above snippet txtSource is a text box. You canContinueContinue reading “Clipboard API in Windows Phone”
Author Archives: Dhananjay Kumar
Video on How to work with Page State in Windows Phone
MongoDB with CSharp
Before you start working with MongoDB using C Sharp, I recommend you to read MongoDB on Windows quick start in 5 minute and download MongoDB for CSharp from here Start MongoDB server If you would have gone through MongoDB on Windows quick start in 5 minute then you know how to start MongoDB server. HoweverContinueContinue reading “MongoDB with CSharp”
MongoDB on Windows quick start in 5 minute
In this 5 minute post, we will do quick start for MongoDB on Windows. I will show you the way to connect to MongoDB Server and to start the administrative shell. Very first you need to download 64 bit binaries for Windows 64 bit from here . After downloading unzip downloaded ZIP file at anyContinueContinue reading “MongoDB on Windows quick start in 5 minute”
Creating Hello World Windows Azure Node.js Web Application
Node.js is enjoying much popularity and Glenn Block is helping us to bring it on Windows Azure. In this tutorial, I will walkthrough step by step to create your first Windows Azure Node.js Web Application. I have divided this tutorial in three parts as installing required SDK, creating Web Application and then publishing to WindowsContinueContinue reading “Creating Hello World Windows Azure Node.js Web Application”
I have been awarded as Telerik MVP
What a morning it is! I am super excited to share that; I have been awarded as Telerik MVP I got a mail from Holly Bertoncini community Relation Manager that I have been awarded as Telerik MVP. I am very excited to add one more MVP Title along with my name. This was never possibleContinueContinue reading “I have been awarded as Telerik MVP”
Code to Share Status or Links on Social Media sites in Windows Phone
While creating application for Windows Phone you may come across requirement to share certain message from your application on social media sites configured on user device. You can do it using ShareStaus Task. ShareStausTask class is defined as below. It is inherited from ShareTaskBase class. ShareStatus Task Launcher allows an application to launch aContinueContinue reading “Code to Share Status or Links on Social Media sites in Windows Phone”
How to Use the ConnectionSettings Task for Windows Phone
ConnectionSettings Task allows user to set and adjust device network settings. ConnectionSettings task is defined in Microsoft.Phone.Tasks namespace as below, User can set device network setting to any of the following If you want to set Network connection setting to WiFi, you can set it as below, If you want to set Network connection settingContinueContinue reading “How to Use the ConnectionSettings Task for Windows Phone”
Learn and Win Windows Phone: A great event by Pune User Group and I Unlock Joy Program
Pune user group along with Microsoft I unlock joy program brings a Learn and Win Windows Phone event in Pune. Read about Pune User Group here and I Unlock Joy Program here This is a great opportunity for developers to learn development of Windows Phone from veterans like Mayur Tendulkar and Amol Vaidya. This programContinueContinue reading “Learn and Win Windows Phone: A great event by Pune User Group and I Unlock Joy Program”
Creating Alarm and Reminder in Windows Phone
In this post we will see the way to create Alarm and Reminder in Windows Phone. Creating Alarm Alarm can be created using the Alarm class. Alarm class is part of Microsoft.Phone.Scheduler namespace. Alarm class takes name of the alarm as the input parameter of the constructor. Name of the alarm must be unique withinContinueContinue reading “Creating Alarm and Reminder in Windows Phone”