Why do you need to understand object oriented programming ? If you don’t have a grasp of OOP, or at least a three thousand foot view of this subject. Then you will be at a disadvantage communicating with software developers.Also the projects that you write yourself will be less effective and more difficult to write than they need be. If you aim to write some code in any … [Read more...] about Object Oriented Programming Explained – High Level
All Articles
VBA Programming Tutorial – Using Functions and Subroutines
So you have started to write vba code but you are not quite sure if you are doing it correctly, or if you are "on track" to write professional quality macros.Why even bother to write pro quality code? Well mainly because it makes your job easier and you deliver a better quality product to your client for probably no more time invested than it takes to write a poor program. If … [Read more...] about VBA Programming Tutorial – Using Functions and Subroutines
Data Hiding
Data hiding is part of the process of removing complexity from programs. Any program in a business environment that does anything useful, can easily have 500 lines to 20 thousand lines of code. This means things can get complex real fast. Without using sound engineering principles most programs would become unmanageable. Data hiding is the term used for one of the … [Read more...] about Data Hiding
C # for VBA Programmers
So you know VBA but for some unknow reason you need a cut to the case guide to understand C# quickly. First thing to understand is the VBA has both subroutines and functions, most other programming languages just have functions. In VBA the subtle difference between a subroutine and a function is … [Read more...] about C # for VBA Programmers
How to create a website from scratch
This article will cover the basics of website creation because it is a huge concept which largely can be broken into two parts depending on your objectives The technical aspects of website building this includes coding html, css, hosting, dns, wordpress. The business aspects such as getting traffic (viewers) and converting that traffic into sales or enquires or getting an … [Read more...] about How to create a website from scratch