Follow us on X (Twitter)  Like us on Facebook  Connect with us on LinkedIn  Subscribe to our YouTube Channel  Subscribe to our WhatsApp Group

DZone

Showing posts with label DZone. Show all posts

Here comes our “Monthly Summary” post. During November 2011, I have submitted 12 blog posts here and this is the summary post of those blog threads categorized item wise. Find all the posts that I have published. In case you missed any one of them, this will help you.

 

As a quick note, stay tuned to our (KolkataGeeks) weekly webcast. All details are available in this page. Follow us and stay tuned on the cutting edge technologies.

Published by on under Archives | DZone

Behaviors are most demanded feature to include in Silverlight, Windows Phone 7 and/or WPF applications to implement proper MVVM pattern to do some UI level actions. These are pluggable on demand and don’t need any other extra code to integrate. Just a simple XAML change and you are done.

 

In this article, we will learn how to use the inbuilt “PlaySoundAction” behavior to add sound effect on button click. We will demonstrate it using Windows Phone 7 application. Read more to learn. Complete demonstration with images for each steps available.

Published by on under DZone | ExpressionBlend

During October 2011, I have submitted 19 blog posts, among them 5 articles are there. I also received two awards from communities. In this post, I am going to share all the posts submitted here in my blog as separate category. This will help you to find out the proper post that you are searching in my blog.

 

As a short note, we (KolkataGeeks team) are proud to announce the Kolkata Developer Conference 2011 event. If you are in Kolkata, come and join the event; learn; discuss and win lots of goodies including Telerik Ultimate Collection license. Registration is going on.

Published by on under Archives | DevCon

imageSometime we want to show the System Information to the user, whether it is an Application or a simple Game. We need to show those system specific information to the Windows Phone 7 user by using an System page. So, in such case, how will you fetch those information and show them to the user?

 

Well, this post will help you to understand it and let you know about this data in Windows Phone 7 device. Read to learn more about this topic.

Published by on under CodeProject | DZone

During September 2011, we have seen a no. of product releases by Microsoft including Silverlight 5 RC, Expression Blend 5 Preview, Windows 8 Developer Preview, Visual Studio 11 Developer Preview and Windows Phone 7.1 SDK Final. It was a busy month, no doubt. I also did a no. of posts (26) in my blog which has 15 articles.

 

In this post, I am going to share all the posts submitted here in my blog as separate category. This will help you to find out the proper post that you are searching in my blog.

Published by on under Archives | CodeProject

In Windows Phone 7, the System Tray is the small bar across the top of the screen in Portrait mode. It displays the Signal strength, Current time and Wi-Fi connection strength.

 

In this post, we will learn more about Windows Phone 7 System Tray. It is easy to write code to show or hide the tray. We will use a small demo to demonstrate it.

Published by on under CodeProject | DZone

Microsoft released Visual Studio 11 Developer Preview to the developer community. First they released it for the MSDN subscriber that means, it was available only for MSDN subscribers till the date it was announced. Now it is available for general public. You can now download it and start exploring the features. You can also start developing Windows 8 applications using this IDE.

 

In this post, I am going to share you the links for both MSDN and general public download. Grab it and start exploring.

Published by on under .Net | CodeProject

Silverlight 5 Release Candidate is now available from Microsoft. They just released the RC build to public. You will be able to download it freely from Microsoft Download Center.

 

In this post, I am going to share the link of the Silverlight 5 RC Tools for Visual Studio 2010. Download it and start building your application. Make sure that, it's not in "Go-Live" license, so you can't deploy the Silverlight applications build with this release to production. This build is just for the developers to give the developers a chance to test their applications before they release the final version.

Published by on under CodeProject | DZone

image

The SQL developer needs to be able to create processes for the working database by using one of the many programming objects (like functions, stored procedures, constrains, or triggers). By creating objects that talk with SQL you simply the way other programs (like applications or web pages) can interconnect. These eternal programs only need to call on the names of your programming objects by name rather than needing to submit large pieces of advance code.

 

With SQL Programming Development (Volume 4 of 5) in the SQL Server Joes 2 Pros development series, you learn how programming objects work in SQL Server. This book has been authored by Rick A. Morelan, Pinal Dave and Jessica Brown. If you are a SQL Developer, you may like the series of the book.

 

Published by on under Book | DZone

Today Microsoft showcased Ribbon UI support in Windows Explorer of Windows 8. This features a nice look and feel to the User Interface by providing all the recommended tasks in one place using the Ribbon bar. We are all familiar with Ribbon bar which is currently present in Microsoft Office but this is the first time when they integrated it to the Windows OS by default.

 

I am really very excited to see this in Windows 8 and thought to share it with you. Hope you will also like it. Read the post to know more about it and also find the useful links and video at the end of the post.

Published by on under DZone | News

Few days ago, I published a XAML Tips "How to Convert a Rectangle to a Path Control using Expression Blend?". Today in this post, we will discuss on another tips similar to that post. In this post, we will discuss on the steps to crop an element to give a desired output.

 

This post will help a beginner who just started designing XAML using Expression Blend. Hope, this small tip will help you to understand it in better way. Read to know more on this topic.

Published by on under CodeProject | DZone

Windows Phone 7.1 SDK Release Candidate (RC) is now available for download. Microsoft released this version with “Go Live” license, that means, you can now build production applications and submit them to the Marketplace. This build also empowers the developer to build applications and games both for WP7.0 and WP7.1 devices.

 

In this post, find the link to the web installer and standalone/offline installer. Download, install and start building your games or applications.

Published by on under CodeProject | DZone

This will be a short tip of the day where I will show you the way to convert a Rectangle or a Ellipse control to a Path control. If you are not familiar with Expression Blend and currently working with it to design your UI, this tip will definitely help you in various scenarios.

 

Let’s start with a small demonstration using Rectangle control. You can do the same for Ellipse too. Read to know more.

Published by on under CodeProject | DZone

Sometime we need to bind the same data in different properties of the same control. For example, in some cases we need to show text in a TextBlock and also want to show the same text as a Tooltip to that TextBlock control.

 

How to do it? It's very easy to bind the same value twice in the control. But is there any other way to implement the same? Let us discuss this today in this blog post. If you are not aware of it till date, you will definitely like.

Published by on under CodeProject | DZone

Sometime we need to detect the browser information of the user's computer where our Silverlight application is running. We can do this using the JavaScript but sometime it is useful to detect it from our Silverlight application. So, how to do it? Let us discuss this with a small simple example.

 

Read this post to know how to detect the browser information using the HtmlPage.BrowserInformation property.

Published by on under CodeProject | DZone

All most all secured sites like bank websites asks you to close your browser window after you signed out from the web application. This is due to high security which actually removes all session details from the browser cache.

 

If you want to develop the same behavior in your Silverlight application, how will you do this? This post covers the code to implement the functionality of the same. Read to know more.

Published by on under CodeProject | DZone

Few weeks ago Mr. Jim Moscater, Community Leader of DZone, contacted me saying that he really liked my WP7 & Silverlight related blog contents and wanted to invite me to join DZone's MVB (Most Valuable Blogger) program.

 

I am very proud to say that, I am now a MVB of DZone. So, what is this MVB Program? Read to know more about this.

Published by on under Achievements | Awards

Recently I had started exploring Windows Phone 7 with first Mango update and accumulated a no. of beginners tutorial in my blog. In this post, I am going to share all the chapters of the series as "31 days with WP7" - a must needed guide for a beginner who wants to learn about Windows Phone 7 programming.

 

Hope, this will be helpful to you to understand the basics before jump start to the application development. This post is on popular demand and I am dedicating this to all my blog readers. Thank you everyone for your support.

Published by on under CodeProject | DZone