CodeSteps

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

Skype – How to change Skype password?

Skype allows changing the password, once you logged into your Skype account. Through this article, we are going to discuss this, with step-by-step instructions. Step (1). Open Skype application. Assuming you have installed Skype on your System. You can double-click on the Desktop icon to open the Skype application. Step (2). Sign-in into Skype, by entering […]

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

Scroll to top