Tutorials

How to Create Database in SQL Server 2005 Express Edition

Submitted by admin on

In this tutorial you will learn how to create a Database in SQL Server 2005 Express Edition. The name of the database that we are going to create is “LibSys” which stands for Library System.

Note that I am using SQL Server Management Studio that is bundled with SQL Server 2008 R2. Regardless of version that you are using the environment still looks the same.

Please follow the steps below to create a database.

Visual Basic .NET 2008 Tutorial

Submitted by admin on

In this tutorial I will teach you on how to create a Windows Application using Visual Basic .NET 2008. For the sake of this tutorial I will be using Library System as the system model.

I came up with this idea in the hope to help beginner who wish to learn Visual Basic .NET the EASY WAY. I know there are a lot of tutorials out there but they focus on different things. Unlike this tutorial I will create an actual application which will guide you up to the end of this article.

Populating Elements

Submitted by kevern010101 on
  1. Option Explicit
  2.     Dim conn As ADODB.Connection
  3.     Dim rs As ADODB.Recordset
  4.    
  5.    
  6.    
  7.    
  8. ' pupulate element
  9. ' @author: Kevern
  10. ' @date: checkDate 07/28/2009
  11. Public Sub init()
  12.     Set conn = New ADODB.Connection
  13.     Set rs = New ADODB.Recordset
  14.         conn.connectionString = ConnectionStringModule.connectionString
  15.             With conn

Google Map For Your Web Applications

Submitted by ravenr1 on
Hey , its so simple. Where am I? [inline:whereamid.jpg=Where Am I] The current location of the map is where I am situated. Copy and paste the code to you web projects making it NEAT. You can also use the ff. link to get the coordinates of the location you want to appear. http://www.gorissen.info/Pierre/maps/googleMapLocation.php

c# Array Part 2 (Using reference types)

Submitted by jin29neci on
Using arrays in c#, you can also declare arrays of custom types. In our example let’s start with a Customer class, having two constructors, 3 properties (FirstName, LastName, ContactNumber), and an override of ToString() method of the Object class.
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ArraysPart2cs
  7. {

c# Array Part I

Submitted by jin29neci on
This is my first post, this is intended for beginners, I just hope someone will benefit from this. I'll be posting more tutorials on C#
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ArraysPartOne
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             /*