Dictionary

Submitted by reckless on
This is a dictionay program using vb and msaccess, I would like to make more user friendly like oxford dictionary thing where the word list can be view on one side and its explanation on the other side. If you people have any idea for its modification kindly share.

Good News to College Students

Submitted by admin on
I have a good news to all college students who needs a free source code in support for their thesis requirements. I know how hard for a student to create a program they are not familiar with. The following are the list of computer program I created for paid services two to three years ago. Automated Tutorial in C++ Educational Computer Game Thesis Student Guidance System All of these are made in

How to Bind Data to the Windows Forms DataGridView Control

Submitted by admin on
[inline:DataGridView Control.jpg=How to Bind Data to the Windows Forms Datagridview Control] The DataGridView control provides a customizable table for displaying data. The DataGridView class allows customization of cells, rows, columns, and borders through the use of properties such as DefaultCellStyle, ColumnHeadersDefaultCellStyle, CellBorderStyle, and GridColor. (Source: MSDN)

VB.NET Introduction

Submitted by planetsourcecode on
Some times back the visual basic was the mostly widely used for developing applications. The VB is most popular for its graphical environment. The Visual Basic .Net is the extension of visual basic programming language. The new language provides many new features. If we compare the VB with VB.NET, there are huge changes in all areas. The VB.NET is designed to take advantage of the .NET framework classes. New features (in comparison with VB) 1).

Hotel Reservation System Report Update

Submitted by admin on
Just to let you know that the update of Hotel Reservation System (VB.NET) version is on the way. This update includes an important features and bug fixes. I focus more on the reports of this program so you will understand how crystal reports works on Visual Basic .NET. These reports includes but not limited to the following: Accounts Receivable Check In Guest Check Out Due Reservation Folio Guest

How to Create Installation File

Submitted by admin on
I received a lot of question through email and comments system so I decided to include this in my FAQ section.

If you are familiar with the language you are using most probably you already know the built in packages. In Visual Basic 6.0 there is an add-in that you can use to create an installer. This can be found under the Add-ins menu >> Add-In Manager then loading the Package and Deployment Wizard.

Using Stored Procedures with ASP.NET

Submitted by planetsourcecode on
Stored procedures are series of SQL statements grouped into a single unit, we can pass parameters to the stored procedures same like the passing parameters to the functions Simple stored procedure USE [databasename] GO /****** Object: StoredProcedure [dbo].[user_insert_mycomment] Script Date: 11/19/2008 22:45:11 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO

Datasource control with MySQL Datasource control with MySQL

Submitted by planetsourcecode on
We can use the Datasource control with MySQL, for this we have to require two things. This can be done without writing any codes,simpy we have to assign the ConnectionsString in the SQLDataSource control. the string will be like that DS1.ConnectionString="Driver={MySQL ODBC 3.51 Driver};server=YourServerIP;database=" & _ "YourDB;user=YourUID;pwd=YourPWD;option=3;"