CodeSteps

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

Windows 8 – How to open an Application?

Windows 8 is different than its earlier Operating Systems. If you are familiar with using earlier Windows Operating System (OS); while using Windows 8, you will come to know how different it is from its earlier OSs. To start an application in earlier Windows Operating Systems is just click on the Start button; go to […]

Drupal 7 – How to set file system paths?

Drupal’s File module allows to upload and attach the files to content. The file module will use default locations to store and manage the files. Drupal allows you to set the locations where Drupal will store the files. Most of the time we can go with the default locations (file system paths) which are defined […]

Drupal 7 – Creating a module (Part – 1)

Drupal is the famous Content Management System used to build websites. Drupal allows extending its functionality by creating modules. Drupal has its own Core modules and allows users to develop their own modules; say Contributed modules and link with them with Drupal. In this series of articles, we are going to discuss creating modules in […]

Windows 8 – How to “Shut down” the system?

Windows 8 Operating System is different compared to earlier Windows Operating Systems. The usability is different, look and feel are different; it will take time for us to understand this Operating System. Usually, we start from the Start button in earlier Windows Operating Systems. But in Windows 8 OS, doesn’t have the usual Start button. […]

Windows 7 – How to change TCP/IP settings?

TCP/IP settings are used to allow to communication with other computers. We can automatically assign IP addresses to the computer with the help of Dynamic Host Configuration Protocol (DHCP). If we use DHCP, no need to change the IP addresses; because it automatically assigns them. This article explains the steps to assign TCP/IP settings. Step […]

C++ – Inheritance – to extend class

Inheritance allows reusing the functionality. Inheritance inherits base class members to its derived class. We can use base class members within the derived class without rewriting the base class code. C++ allows single inheritance as well as multiple inheritances. In single inheritance, the derived class is inherited from a single base class. In multiple inheritances, […]

Scroll to top