CodeSteps

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

Author : venkat

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 […]

How to create inner class objects in Java?

In Java, to create an object for a class we use new keyword. The new keyword creates an object of a class and initializes the object by calling it’s constructor. It is a strait forward thing to create an object for a class. But, if we have another class within the class, then how we […]

Use of CLASSPATH environment variable in Java!

CLASSPATH is the environment variable where Java compilers look for class files. Both javac & java programs will look into CLASSPATH environment variable to search for class files. For example, if your class files are located under c:\workspace folder, you need to add this folder path to CLASSPATH environment variable in-order to avoid using -cp […]

Scroll to top