CodeSteps

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

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

MFC – CObject class – An Introduction – Enable Run-time class information

CObject is the base class for almost all classes in Microsoft Foundation Class (MFC) library. A class is qualified as a MFC based class by deriving its from MFC’s base class CObject. Once the normal class is derived from CObject class; it inherits the following services offered by CObject class. Run-time class information Serialization support […]

Scroll to top