Visual Basic Tutorial
VISUAL BASIC is a high level programming language evolved from the earlier DOS version called BASIC. BASIC means Beginners’ Allpurpose Symbolic Instruction Code. It is a fairly easy programming language to learn. The codes look a bit like English Language. Different software companies produced different version of BASIC, such as Microsoft QBASIC, QUICKBASIC, GWBASIC ,IBM BASICA and so on.
Read more
Introduction to C# Programming
The first section of this tutorial will get you started with C# (pronounced ’see-sharp’). I will not use an IDE like Visual Studio .NET for this. I have chosen to use a simple text editor (I will use ConTEXT, but you can use any text editor you like, but I recommend one with syntax highlighting and auto indent), because it is important that you learn how to write code, and not drag and drop components. This will give you a better understanding of programming, and the code will be written in a much more structured way than you would write it in if you started with an IDE. Later, when you know how to write code, I encourage you to use an IDE such as Visual Studio .NET. It will speed up the code writing, but I do not recommend using it until you are working on “real” projects.
Read more