Open Source Tutorials & Articles
-
Using PHP and IIS to Create a Discussion Forum
by Jayesh JainLearn how to use PHP on windows and IIS to create a basic discussion forum that makes use of a powerful database.
-
API Programming Series #1
by Sreejath S. WarrierThis is the first part of a series of articles explaining how to access and use the Win32 API from within VB.
-
Getting Started with Kinect Development
by Chris AlexanderBuilding apps on top of the Kinect device
-
C# Threading in .NET
by Randy Charles MorinThe first in a two part series on C# threads, introducing how to create and manipulate threads with the .NET framework, including creating a thread, thread pools, syncronization, race conditions and timers.
-
Introduction to Microsoft's .NET Platform
by Nakul GoyalASP.NET is not just another upgrade or the next version of ASP. It is a unified web development platform that provides necessary services for developers to build Enterprise Web based Applications. ASP.NET allows you to use a full featured programming language such as C# or VB.NET to build web applications easily.
-
Implementing a template based website
by James CrowleyHow to implement your own template based web site using php
-
How to POP3 in C#
by Randy Charles MorinAn introduction to retrieving email from a POP3 server using the .NET socket classes.
-
An Introduction to PHP
by Gez LemonA complete introduction to the basics of PHP, including operators, control flow to forms, server variables, cookies and HTTP headers.
-
Circular Referencing to COM Objects
by Jose Pablo Ramirez VargasThis tutorial shows you how to fool Visual Basic in a way it will permit the programmer use circular references, like a Parent property without locking the parent object in memory.
-
SQL In Simple English
by Kiran PaiKiran Pai introduces the basics of Structured Query Language in an Q & A session
-
Using Components and Objects in ASP
by Talal Ahmed SiddiquiAn introduction to COM objects, and their use in ASP
-
The Quick & Dirty .NET Guide to C#/VB OOP
by Dimitrios MarkatosAlthough this article won't be an exhaustive OOP treatise, its objective nevertheless is to present in a quick and dirty manner C#/VB Object-Oriented Programming. Moreover, even though this article may be slightly geared more towards C#, all important VB assessments or similarities are addressed and demonstrated. By the way, keep in mind C# is very case sensitive. Incidentally, don't be put off at the length of this article, a lot of it is simply repeated code examples for both languages.
-
A Twisted Look at Object Oriented Programming in C#
by Jeff LouieAn extensive examination of OO programming in C#, covering inheritance, constructors, interfaces, virtual and static methods, and much more.
-
Handling Errors in VB/VBA/VBS/ASP
by Mike JThis article will discuss some of the more basic and practical ways to solve general error handling in your Visual Basic applications and MS Office VBA modules. It is in many ways applicable to VBA, VBScript and ASP, in much based on the same syntax and practical solutions in your code.
-
Avoiding Multiple Instances of an Application
by Joseph M. NewcomerIn Win16 it was easy: you looked at the hPrevInstance parameter to WinMain and if it was nonzero, you were the second instance. Done. In Win32 it isn't as easy. And there are several wrong ways, and some that don't work at all. This essay explores the techniques and tells you what the pitfalls are,
-
Valid XHTML within .NET
by Kevin BrownAt present none of Microsoft's ASP.NET controls intrinsically support the strict W3C XHTML standards. This can cause problems when using ASP.NET controls on pages that need to conform to one of the XHTML standards. In order to use Microsoft's supplied controls some modifications will be required. This series of articles intends to focus on the more widely used controls and the steps required to make them output valid code.
-
Introduction to Class Programming Part II
by Dante SalvadorIn this series articles, we are going to discuss about: Enumeration, Properties that return an Object and other semi-advance topic pertain to in creating a class base program
-
Programming in C++
by Mike WareC++ tutorial covering comp sci background, syntax, data types, operators, type conversion, logical expressions, control structures, formatting output, functions, pointers, arrays, array-type problems, user-defined types, header files, structures, enum types, graphics, classes, function/operator overloading, static variables, and much more. A must read for anyone learning C++.
-
AI 1 - Problem Solving (Artificial intelligence)
by Chris StonesA console C++ tutorial covering the basics of problem solving using different AI techniques.
-
Uploading files in PHP
by S.S. AhmedThis article shows how to upload files in PHP. Uploading files in PHP is very easy.