.NETPublished August 6, 2010 at 9:38 pm No Comments
It is required that windows app should have same layout at different resolutions means there should be no effect on layout of app on changing resolution. Here are the steps to do this.
1. Use table layout panel
2. Drag control in cell of tablelayoutpanel and set anchor and dock property.
3. Set rowspan and colspan properties of
read more..
Oracle E-Business SuitePublished July 25, 2010 at 8:10 pm No Comments
In this article I will explain the concepts of Boxing and UnBoxing. C# provides us with Value types and Reference Types. Value Types are stored on the stack and Reference types are stored on the heap. The conversion of value type to reference type is known as boxing and converting reference type back to the
read more..
.NET DevelopmentPublished September 18, 2009 at 11:10 am No Comments
Performance of computers and most of all software is becoming more and more important. If you are a programmer and your program responds slow you always get the blame. it is never the fault of the system, network, etc. Anyway we all know the drill so i have written a simple piece of code to
read more..
.NET DevelopmentPublished April 22, 2009 at 3:09 am No Comments
Previous i have told a little bit about my search for a suitable installer software for my needs. I ended up with NSIS which is a reasonable installer but handling other software is a pain. For example my software needs to have sql server or sql server express installed before the software is installed. The
read more..
.NET DevelopmentPublished April 8, 2009 at 12:56 am No Comments
Cascading Style Sheet (CSS) is a familiar name to all web developers. Using CSS, you can make a consistent look and feel for all the web pages, and more importantly, it provides a centralized control location which enables you to set or modify the look and feel (color, font, font size, …) of all the
read more..