-
How to make your software demos effective.
I have been involved in Software demonstrations for the last 15+ years. I have done a lot of software demonstrations, some good ones (where we have earned the trust of the customer, and the project or product got sold) and some not so good ones, when the customer was not very convinced and wanted to…
-
Excel Keyboard Shortcuts
-
Entity Framework Code First
Code First development with Entity Framework New approaches to modeling for Entity Framework 4.1. Code First Model First Database first Let's go through Code First implementation in this blog. Introduction In Code First approach, you avoid working with visual model designer (EDMX) completely. You write your POCO classes first and then create database from…
-
Memory Management in iOS
Memory Management iOS In this blog we will walk through very important thing which all iOS developer should always need to take care while developing apps for same. We will see few topics related to this thing which is below :- What is the term memory management? What may happen if we don’t do memory…
-
TFS Build for .Net 2.0 Projects
Clients have strange requirements. The other day I had been to a client for a discussion. These guys are using .Net 2.0 framework for their application. What’s strange is that new development is also happening in 2.0 framework. The problem arose when these guys wanted to use TFS Team build for building their legacy apps…
-
Telerik RAD (Rapid Application Development) Controls for ASP.NET AJAX
Introduction: Telerik provides a ultimate toolbox for developers which includes Web UI Controls, Desktop UI Controls, Mobile UI Controls, VisualStudio Productivity Tools HTML5/JavaScript widgets, Data tools, Functional testing and Unit Testing. In this blog I am explaining about one of the WEB UI Control Toolkit i.e ASP.NET AJAX. ASP.NET AJAX development toolset supports ASP.NET 3.5…
-
Data Mining for Supply Chain Management
Introduction Market turbulence arising from factors such as rapid introduction and customization of products, difficult design specification, and customer shifts make continuous contact with customers and suppliers through supply chain integration most important. In this global competitive environment, an organization’s supply chain agility directly impacts its ability to produce, and deliver innovative products to their…
-
MIGRATION OF ACTIVE DIRECTORY USERS TO FORMS BASED AUTHENTICATION USERS
This document explains step by step information on configuring Form Based Authentication (FBA) in SharePoint 2010. This document resolves authentication issues by configuring a SharePoint 2010 site with form based authentication. There are two instances involved in Migration of AD Users to Database users. 1. Why we require Database users: Active Directory users are limited…
-
Displaying Postscript text and Vector images on PDF in C#.net using Imageglue
Postscript is a language used for creating vector Images,Vector images are made up of many scalable objects and they are defined by mathematical equations rather than the pixels ,so they always renders higher quality images. The Advantages of Vector Images over Bitmap images 1.Vector images are resolution independent, how much ever we resize the image…
-
How to Save Photos to Custom Album in iPhone/iPad Photo Library
Here is a way through which you can create your custom Album and can save captured images within that. You can implement this feature using ALAssetsLibrary Class. First of all please add AssetsLibrary.framework into your project then create two class file which is below :- ALAssetsLibrary+CustomPhotoAlbum.h and ALAssetsLibrary+CustomPhotoAlbum.m ALAssetsLibrary+CustomPhotoAlbum.h AlAssets #import #import typedef void(^SaveImageCompletion)(NSError* error);…