Author: Andy
Download and install the NSIS (Nullsoft Scriptable Install System) packageFrom here.
Starting from today, any useful Windows-related tips I encounter. I anticpate this post will grow as and when I come across any other Windows-related stuff… First off:
The Windows methodWindows can help you protect your folders in so much that only selected users (such as you) can see its contents. You can place restrictions on who can …
This post is essentially a blatant lifting of Omar Gamil’s CodeProject article on the same subject. I have been using the project as means of getting into C# programming and …
Some notes on how to create a simple Windows Presentation Foundation (WPF) application and get familiar with the Visual C# integrated development environment (IDE). Like Windows Forms applications, WPF applications …
This post assumes that you are working on an existing MFC project and wish to add a tabbed dialog to your application. This example was created in Visual Studio 2008. …
Reading and analyzing data from a text file:My gentle introduction to writing a Python script. A script I needed to read in a log file and extract all inkjet printhead …
Note: for configuring FLTK in Linux environments, please refer to this post.1. Download and extract FLTKFor this particular install I used an old Visual Studio 2003 .NET version. Get the …
For setting up OpenGL in Ubuntu Linux, please see this post, otherwise for Windows / Visual Studio environments, please use these following instructions:1. Download the latest Windows driversAs stated on …
Constructor, destructors and assignment operatorsThere is a rule of thumb in C++ that if a class defines a destructor, constructor and copy assignment operator – then it should explicitly define …