CodeSteps

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

C++ – Calling Virtual functions from class Destructors

C++ allows virtual functions to resolve function calls at run-time. This is called late-binding. Like virtual functions, C++ allows virtual destructors to delete the objects properly in an inheritance hierarchy. C++ allows calling virtual functions from class destructors. But what will happen when it calls these virtual functions from class destructors? Let’s take an example, […]

Microsoft Project: Creating a Project Plan

Usually, each project is developed in multiple phases. Commonly the phases are: Initiation Planning Execution Monitoring & Controlling and Closing Project plans created with Microsoft Project contain tasks and each task can be entered into the different phases mentioned above. This article explains how to create a project plan using Microsoft Project. This article applies […]

Skype – Adding Contacts

We can add contacts into Skype accounts in two ways. One is by adding a phone number and another one is by searching the Skype directory to find existing contacts and add them to the account. This article explains different ways to add contacts to Skype contacts list: This article applies to: Skype 6.11 Step […]

FireFox – Responsive Design View

Mozilla’s Firefox allows installing of developer tools to extend Firefox functionality and is also useful to develop Plug-ins or Add-ons. One of the developer tools is “Responsive Design View” which is useful to provide a presentation that is suitable for different kinds of devices; such as mobile phones or tablets. To test this feature, first, […]

Blend – Creating a border-less Window

It is easy to create a borderless window using the WPF application by simply selecting relevant properties for the Window object. Blend provides a rich user interface to alter the selected object’s properties. This article explains the steps to create a simple borderless Window using Blend. This article applies to: Blend (Version 5.0) for Visual […]

C++ – Calling Virtual functions from class Constructors

Virtual keyword in C++ is used for polymorphic behavior. C++ allows the creation of virtual functions, virtual destructors, and virtual inheritance. Virtual functions will resolve exact function calls in the inheritance hierarchy, at run-time. This is called late-binding. That means, what function to call will come to know at run-time instead of compile time. // […]

ASP.Net – Simple webpage

ASP.Net is a web framework for building websites. ASP.Net has been designed to be fully integrated with the .Net framework. ASP.Net works with Internet Information Services (IIS) to deliver the content. ASP.Net pages are with .aspx extension. ASP.Net files can contain server-side controls, client-side controls, and validation controls. Other than these, it supports placing HTML objects […]

C++ – Multiple Inheritance – Virtual inheritance to overcome inheritance ambiguity

Another interesting feature of Object Oriented Programming is its inheritance. Inheritance inherits the behavior or attributes from its parent or base classes to the derived classes. C++ uses virtual inheritance to overcome the inheritance ambiguity in multiple inheritance. Multiple inheritance means, derived classes inherit from multiple base classes. Inheritance ambiguity will occur when a derived class […]

Scroll to top