-
How to implement and use Extension Methods in C#
Do you wish to extend the built-in types with new methods? Want to extend custom types with new methods? In C#, we can use the Extension Methods to extend both built-in types and custom types. These extension methods are introduced in C# 3.0 What are Extension Methods? Extension methods are special kind of static methods…
-
Wireless Ad-Hoc distribution for iOS apps
Creating Ad-Hoc is an important part of iOS app development because it helps us in testing the app during development phase. Here is distribution process through dropbox in which just need to click on a link of html and you are done with installation. In this process need to share that same link(public link of…
-
iOS qrcode generator
Have you heard of QR Codes yet? Here is a quick introduction:- QR is short for Quick Response . It is used to take a piece of information from a transitory media and put it in to your cell phone.It is more useful because it can store much more data, including url links, geo coordinates,…
-
Mobile Operating Systems And Cross Platforms
Current Popular mobile operating systems are: Android from Google Inc.(Open source) initial release :2005 Current Version: Android 4.2 “Jelly Bean” prior versions: 2.0 (1.0, 1.5, 1.6) Programmed in: Java,c(native apps) OS family: Linux App build file extension:‘.apk’ IDE:Eclipse Developed by: Android Inc ,which was purchased by Google Inc. Android 3.0 was a tablet-oriented release and…
-
How to setup Module to Module communication in DotnetNuke
Are you building modules in DotnetNuke? Is one module depends on another module? Want to exchange data between modules? Here we can discuss how to set up Inter Module Communication in DotnetNuke. In DNN, with the help of IModuleCommunicator and IModuleListener interfaces we can setup the communication between the modules. Here I would like to…
-
How to download YouTube Videos using .NET
Are you interested in downloading YouTube Videos? Want to download YouTube Videos in device specific formats? Need to have some fun while coding on interesting Stuff? Yes, then you are at the right place! In this blog I am going to show you how we can download the Videos from YouTube URL in different formats.…
-
Building Xamarin.Android application in C#
Overview In this article we’ll look at how to create, deploy, and run a Xamarin.Android application. We’ll create a hello world application, showing how to build the user interface both in code and by using Android XML. Creating a Xamarin.Android Application Let’s begin by creating a new Xamarin.Android solution. Xamarin.Android includes several templates for creating…
-
3 Layered Architecture
Introduction Here in this article, I would like to cover the typical three layer architecture in C# .NET. It is a very useful approach for coding due to easy code maintenance. Overview First let me give you a small overview about the topic I would like to cover in this article. Tier vs. Layer Three…
-
Pivoting and Unpivoting Data In SQL Server 2008
In this blog, I would like to explain about PIVOT and UNPIVOT operator in SQL Server. The PIVOT operator allows you to rotate data between columns and rows, performing aggregations along the way. UNPIVOT is the inverse of PIVOT, rotating data from columns to rows. Open Schema: I’ll use open schema as the scenario for…
-
Deploying an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010
How to deploy an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010 In the previous blog, we walked through the steps to build an outlook 2010 add-in, how to create a custom task pane, add a custom context menu item and add a ribbon in the Outlook 2010. In this post, I’ll take you…