CodeSteps

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

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

How to display list of modules used in EXEs?

Windows-based applications are usually developed based on the DLLs (Dynamic Link Libraries). These libraries will load into the memory when we run the EXE (Executable) file. Sometimes it is required to know the list of modules/DLLs loaded by the running executable. The following steps explain how we can see the list of modules used in EXEs. This […]

How to create cron jobs in cPanel?

Cron jobs are useful to automate certain commands or scripts to run at a specific time. This article explains how to create a cron job in cPanel. This article applies to: HostGator Control Panel. Step (1). Go to your cPanel. Click on Cron Jobs. It will open cron jobs page to allow the users to […]

How to enable IIS on Windows?

Internet Information Services (IIS) is a Microsoft Web Server application that allows running Web Application on Windows Operating System. The following steps explain how to enable IIS on Windows. This article applies to: Microsoft Windows 7 Step (1). Open Programs and Features window. See the post “How to open Programs and Features (OR) Add Remove Programs […]

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