CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Finding files in a folder / directory using MFC!

There are a couple of ways to find/search files in a folder/directory. Usually, Win32 programmers use FindFirstFile & FindNextFile functions to find the files in a particular folder. MFC provides a simplified way of finding the files using CFileFind class. The following example shows how to find files in a particular folder. This example is […]

How to upgrade to Pligg 2.0.x from Pligg 1.2.x?

Pligg is a famous Open Source Content Management System used to develop variety of websites like help desks, social networking sites etc.,. This article explains the steps to upgrade from Pligg 1.2.2 to Pligg 2.0.0. Step (1). Download Pligg v2.0.x from Pligg site. Step (2). Upload the latest files into your website. Make sure that […]

Getting count of objects of a class in Java!

The following article explains how to maintain reference count of objects whenever instance of a class is created. Some times it will be useful to get to know the number of instances are created for a class; this article will be useful. Step (1). Create your own class and make sure add the following private […]

Scroll to top