Always remain updated about current software development trends

Articles having tag: CODING

A simple example of adding movable label controls at runtime

I created a simple form with a button to add a label controls at run time sequentially numbered, labels are movable and lines are drawn between labels

Factory Pattern in C++

Using the Factory pattern in C++ to expose only an object's abstract type--hiding the implementation class detail.

Using jQuery Mobile with MVC and Netduino for Home Automation

This article is great for anybody learning jQuery Mobile or building mobile applications with MVC3. I built a remote control for my phone to control a squirt gun for my pool, open my garage door, water the garden and control for my gas fireplace using jQuery...

Special Character # in URL Query String

Special Character # in URL Query String creates problem

A Study on Corruption

Do you believe that memory corruption will generate an immediate, repeatable crash? Some programmers actually do...

To check string is palindrome or not in .NET (C#)

public bool isPalindrome(String str){ if (String.IsNullOrEmpty(str)) return false; int length = str.Length; str = str.ToLower(); for (int i = 0; i < (length / 2); i++) { if (str[i] != str[length - 1 - i]) return false;...