CodeSteps

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

C Programming – Dealing with files – How to read from a file?

C library provides a good number of file handling functions to deal with files and directories/folders. Generally, we can classify these functions as: Buffered functions and Un-buffered functions. Un-buffered functions are the raw functions that deal directly with storage devices. Whereas, buffered functions maintain memory buffers to improve the performance and reduce the number of […]

Drupal 7 – Creating a module (Part – 5)

We have successfully created a configuration settings form for our Example module. In our previous article we have instructed Drupal to create a form for us. Most of the form functionality is prepared for us by Drupal. Now when we submit our form, Drupal will call “example_admin_settings_submit” function. In this article, we are going to […]

Visual Studio 2012 – Enable / Disable IntelliSense for “Visual C#”

One of the great features of Visual Studio IDE (Integrated Development Environment) is its IntelliSense feature. IntelliSense provides code elements that you can select when you are coding; which indirectly increases productivity. IntelliSense enables to show members list, parameter info, quick info and completes the word. This article explains how to enable or disable IntelliSense. […]

WordPress 3 – Enable or Disable Revisions

Revisions feature is one of the great features in WordPress Content Management System. Revisions allow maintaining different versions of the post into the database. Whenever required we can restore the post from its revisions. When the Revisions feature is enabled, WordPress maintains all the revisions and their information into the database tables; which increases the […]

Joomla 3 – Adding and Modifying Users

In Joomla 3, user management is handled through “User Manager”. A user is a person; authorized to access Joomla components. Through this article, we are going to discuss how we can add/modify users through “User Manager”. Step 1. Log in to the website’s Control Panel as an administrator. Joomla will display the “Control Panel” page. […]

C++ – Operator Overloading

One of the beautiful features of ‘C++’ is its ability to support Operator Overloading. ‘C++’ Operator Overloading allows changing the behavior of operators when using them with ‘C++’ class objects. One of the best examples of Operator Overloading is the ‘+’ operator. Usually, the ‘+’ operator will add two integer operands and produce an integer […]

Drupal 7 – Creating a module (Part – 4)

As of now, we have created a node on the Configuration page to place the link to change the example module’s configuration settings. Now we have to implement the functionality to run when the user clicks on the Example node from the Configuration page. That means, we have to tell Drupal to display the Example […]

Scroll to top