CodeSteps

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

Outlook – Manage Quick Steps

Outlook allows managing Quick Steps to delete, edit or re-arrange Quick Steps. So, that you can keep your favorite Quick Steps in the Quick Steps group for quick access. This article applies to: Microsoft Outlook 2010 Step 1. Open Microsoft Outlook application. Step 2. Click on the Home tab and look for the “Quick Steps” […]

Delegates – Why and how we use them in C#?

Delegates in C# are the references to the methods, to call the methods indirectly. Delegates holds the address of the method(s); so, it will be easy to call methods through Delegates. But, why we use Delegates in C# and why can’t we always call methods directly? Good question. But, the answer is simple. As mentioned […]

COM – Creating a COM Component using C++ – IUnknown interface

COM – An introduction COM (Component Object Model) is a platform-independent, distributed, and object-oriented technology developed by Microsoft to create re-usable software components and enables software components to communicate. COM enables interaction between objects through interfaces. Interfaces are core concepts to build COM components. An interface contains function prototypes only not the function implementations. COM […]

Firefox – Enable or disable Add-ons or Plugins

Add-ons or Plugins are used to extend Firefox’s functionality. Firefox allows to enable or disable installed plugins through its “Add-ons Manager”. This article explains the steps to Enable or Disable Add-ons. Step 1. Open Mozilla Firefox browser application. Step 2. Click on the Firefox icon which is on the top left corner of the window. […]

PHP – Arrays

PHP is a popular server-side scripting language mostly used for web-development. PHP does not need to be embedded in HTML tags. PHP code will be in <?php and ?> delimiters (short form <? and ?>). PHP Arrays PHP Arrays are ordered maps contains key, value pairs. Keys can be either integers or strings. String keys are […]

C++ – Pure Virtual functions

C++ Pure Virtual functions are used to create an abstract classes or interfaces. Pure Virtual functions have no function definition; just the function will be declared and the definition left to the derived classes. In C++, like Java, there is no interface keyword to create an interface. To create an interface in C++, the option […]

WinZip: Creating Self-Extracting ZIP files

WinZip is the world’s leading shareware for file compression, encryption, sharing, and data backup. WinZip archives the files and folders into .ZIP file format. WinZip provides a simple and easy-to-use interface to quickly zip and unzip the files. WinZip also provides a Self-Extractor file (.EXE format) to independently unzip the zip file. With the help […]

Google Analytics – Setup Goals

In Google Analytics, Goals are used to measure your target objectives on your website. The completed activity of a Goal is a conversion that contributes to the success of your business and it is logged into your Google Analytics account. We define goals to allow Google Analytics to record the activities and provide important information, […]

Scroll to top