CodeSteps

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

Ubuntu 14.x – How to open Terminal window?

The terminal window is helpful to execute Ubuntu commands, scripts, or execute the applications. A terminal window opens the command-line tool to allow the user(s) to enter the commands, to do some operations. Usually, the user(s) use the Terminal window, to perform maintenance operations. In this article, we are going to discuss the steps to […]

Win32 Programming – How to create a simple GUI based application?

By adding Graphical User Interface (GUI) to the applications we can change the whole look and feel of the applications and users will feel more comfortable accessing the GUI-based applications than the text-based or console-based applications. Win32 API provides a vast number of API functions to create and deal with Graphical User Interface (GUI) applications. […]

JSP – Implicit Objects

We know that every JSP page turned into an equivalent Servlet. Every JSP equivalent Servlet must be extended from HttpJspBase class. HttpJspBase class is an abstract class with all implicit objects are defined. Those implicit objects are called JSP implicit objects. Because objects’ names are already defined, we have to use them as it is. In […]

Ruby Programming: An Introduction

Ruby is a popular open source, cross-platform, object-oriented, dynamic, scripting, interpreted programming language. It was invented in the year 1993 by Yukihiro Matsumoto (Matz). Ruby is cross-platform, that means if we develop a Ruby program based on one machine; it’s likely to run the same program without any changes on different machines. In order to develop or run […]

Apache Tomcat 8.x: How to install and configure?

Apache Tomcat is a pretty famous open-source web server, developed by the Apache Software Foundation. It provides an environment to run Java code within. In this article, I am going to explain the steps to install and configure Apache Tomcat on “Windows 7” based system. We need Java to run Apache Tomcat web-server; I am assuming […]

Visual C++: Exporting functions from a DLL using “.DEF” file.

As we discussed in our previous article, the functions in the DLL can export using the “__declspec(dllexport)” keyword or “.DEF” file. We have already discussed exporting the functions using the “__declspec(dllexport)” keyword in our previous article. In this article I am going to discuss exporting functions in the DLL using “.DEF” file. Let’s start this […]

Drupal 7 – Adding and deleting Users

Drupal provides a simple user interface to create or delete the users from the Drupal system. User accounts are required to login into the Drupal system to access Drupal functionality. In this article, we are going to discuss the steps required to create or delete the users. Step 1. Sign in to your Drupal-based website […]

JSP – Directive Elements

There are three types of elements in JSP; Directive elements, Scripting elements, and Action elements. In this article, we are going to discuss the Directive elements in JSP and their attributes. JSP directives are used to add or remove some behavior; like making the current page an error page, setting the content type, adding buffering […]

MFC – CObject class – Enable Object Diagnostic support

In our previous articles we have discussed about CObject‘s “run-time class information”, “serialization support” and “dynamic object creation” features. In this articles I am going to discuss about CObject‘s “object diagnostic support” feature. Object diagnostic feature is useful to provide additional information about the objects; usually this information will be displayed in the output window in the integrated […]

Win32 Programming – How to create a simple Console based application?

Microsoft Windows’s Win32 API (Application Programming Interface) is mainly for developing applications on 32-bit Windows platforms. As we have 64-bit systems, Win32 also introduced API functions for 64-bit applications. So, using Win32 API we can develop both 32-bit and 64-bit applications. Programming using Win32 API is a bit difficult compared to programming using MFC (Microsoft […]

Scroll to top