Skip to main content

Posts

2 'Why's

1. Why Microsoft is still using Flash when its own baby- Silverlight light is out there? 2. As shown above, having popup menu open on IE8, why Windows Start menu does not appear when windows key (on keyboard) is pressed? (Windows Vista with SP2 Operating system ) Grr...

DotNet: Generic Sorting Class

Recently, I was searching for a generic sorting approach on dotnet List. Many articles (Like one , two ..etc) were suggesting standard way of creating IComparer implementer class and using that with generic list (List <T>) in our application. Writing IComparer class for every business object not only take huge time also create challenges in code management when it grow considerably. So, here is simple and effective generic sorting class which can be used with any custom business object and can be sorted on any one of its properties. All you have to do is, copy paste the complete code in to a new .cs file. using System; using System.Collections.Generic; using System.Text; using System.Reflection; namespace Srushti.Business { public class GenericComparer<T> : IComparer<T> { string _propName = string.Empty; bool _sortDirection = true; public GenericComparer(string propertyName, bool SortAscending) { _propName = propertyName; _sortDirection = S...

Quick Quest - A Step Ahead

With a history of serving Kuvempu University for question paper generation, Quick Quest is now serving Scholar’s private college in Nigeria and receiving good feedback. The teacher using this software sent his experiences and I am very happy to publish his 'as is' words on main page of Quick Quest section . This is a great encouragement to the development effort of Quick Quest. Thanks to “The Scholar’s Private Collage, Akure, Nigeria” for choosing Quick Quest.

LINQ Quick Start

If you are a new bee to LINQ (Language Integrated Query), stunned by looking at big books and longer web pages on it, here is the relaxing news. Read “ LINQ: The Future of Data Access in C# 3.0 ” by Joe Hummel. He presented LINQ in a simple and effective manner. This book with 60 pages quickly give you pragmatic understanding of LINQ and push you to start using it in next hour. This i s a good quick starter book in spades . I personally prefer reading such quick start books to get glimpse of technology and later pick thicker book or detailed tech web links to dig deeper.

Present

The saxophone playing in lavish and lazy mood on my home theater audio system. Half filled crystal clear mocktail glass is standing still on the table. It served me 12 times. Ice cubes in the container melting slowly. Few small pieces of pizza left out in the take-away box. Ceiling fan is blowing cool air. With aesthetic gratification, I am sleeping in my bed. Not fully slipped in dream world. My senses are still enjoying the atmosphere. My right leg big and second toe shaking unnoticeably. Laptop silently downloading recent updates and also scanning for Conficker warm which recently attracted much of attention all over the world. Television is in mute, “DOA: Dead or Alive” action was on. Washing machine is busy cleaning dirty cloths. My salary credit message is sitting unread in my mobile message inbox. The alarm is down counting to wake me up in next 2 minutes… I felt I needed this lazy day after my busy project work schedule at office. I spent restless week. I am lying in my bed li...

Why I Am Not Ready for IE8?

Microsoft’s free web browser Internet Explorer 8 is out for public use and it started appearing on windows update programs list as well. This time IE8 is offering a tight competition to its rivalry browsers by putting up noticeable features like accelerators, web slices, common color tab groups, security filters and better performance in comparison with its previous flavors. It was impressive in the beginning when I started using IE8 with all its new features; on my aggressive usage below points came to notice. Still few web sites are breaking Tabs are not responsive if one of the tabs is struggling Page rendering sometimes takes more processing time and Browser speed is not always faster Let me admit, I got addicted to Firefox though it’s a memory hogging browser. But it just doesn’t toddle when I am doing too many things on it. IE8 is an obtrusive update for IE7/IE6 users. Users like me have slim to none chances to migrate to IE8 yet.