Creating A Windows Forms Project From scratch

This is our internal check list to create a new Windows Forms Project… Create a ‘Visual C#’ > ‘Windows’ > ‘Windows Forms Application’. Once created:- Re-name the created form to frmMain.h by right clicking it in the solution explorer and selecting ‘Rename’  Click Yes to updating all references. Things To Add To The Default Form […]

Read More

C# for C++ programmers

Good Resources C# FAQ for C++ programmers Some Key Differences Classes and structs Classes and structs are almost the same in C++ – this is not true for C#.  In C#, structs are value types (instances stored directly on the stack, or inline within heap-based objects), whereas classes are reference types (instances stored on the […]

Read More