Show Label Specific Icons Below Post Titles
In this Blogger tutorial, you will learn to display icons or any text/image specific for any label/category under the post titles in your blog.For example, if these are the four main topics/categories...
View ArticleHow to create XML Node using XPath?
In general, we use XPath expression to read data from XMLDocument in .Net and process the data as per the need. Recently i got an requirement like creation of XML Node from XPath expression.Using the...
View ArticleHow to get full XPath of node?
In general, we use XPath expression to read data from XMLDocument in .Net and process the data as per the need. But not vice-versa. So, here we will see how to get complete XPath of any XML node from...
View ArticleFast Bitmap comparison - C#
Recently i have done bitmap comparison usingBitmap.GetPixel() method to check pixel by pixel using the following code snippet and it works functionality wise pretty well. private bool...
View ArticleHeader Customization - Remove extra space on Blogger header
I also often see bloggers unhappy with the header spacing. Either there's too much empty space, the header doesn't line up how they'd like or something else is bothersome. In this article I explain...
View ArticleRemove(Customize) spacing between Columns on blogger
New Blogger templates contain a large amount of spacing, far too much for some designers. The source of the spacing isn't seen while editing a templates HTML. Instead a hidden style sheet included at...
View ArticleDisable close button on form - C#
In one of my projects, I had to implement a form with Close[X] button Hide, so that the user cannot leave the form until it finishes the data processing. From the form designer window in VS.Net 2005,...
View ArticleHow to make .Net Programs Run as Administrator on Vista ?
User Account Control (UAC) protects Vista by preventing malware from executing various tasks that modify the operating system, its files or configuration. If you develop software that requires this...
View ArticleHow to start a Process in administrator mode - C#
Previosuly I wrote an article on how to create UAC Compatible applications in .NET. In that UAC will be applicable for the whole application. Today I got a scenario like to install a Windows service...
View ArticleCreate Drive combo box in C#
While browsing at some places on internet we may seen the Drive combo box as shown below,How to create/populate combo box like this in WinForms using C#.Net?The drive information can be retrieved using...
View ArticleHow to return NULL from a generic method?
Generally we can’t return a null from a generic method, if you try to return a null it will throw a compile time error. – Cannot convert null to type parameter ‘T’. Because it could be a non-nullable...
View ArticleHow to display any Application on top of other Windows using C#
Normally in dot net we have seen by setting property Form.TopMost = true, we can display that particular form on top of other.But how to achieve same thing for any non-form application? For example to...
View ArticleGet Laptop battery status using C#
In this article, I will show you how to show battery status of laptop battery like is discharging, charging, full etc. We will do this using WMI because WMI have power to answer questions about battery...
View ArticleHow to change operating system language in windows XP?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleHow to detect USB insert or remove in .Net?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleHow to Prevent Application Downgrade in WIX?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleHow to ignore the key(ESC) combination in C#?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleHow to redirect output from a console application?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleArgumentException – This row already belongs to another table
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View ArticleHow to get XML nodes using XPath expression?
If you feel this is helpful or you like it, Please share this using share buttons available on page.
View Article