Posts

Showing posts with the label Vb.net

Car Wash System vb.net

Image
This software consists of a database that save the registration number of every vehicle being wash along side with the date, type of wash made and price Screen Shot Source Code To view records in the database: Dim conn As OleDbConnection = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\washRcd.accdb;Persist Security Info=False") Dim sql As String sql = " SELECT * FROM tblwash" conn.Open() Dim dt As New DataTable Dim cmd2 As New OleDb.OleDbDataAdapter(sql, conn) cmd2.Fill(dt) DataGridView1.DataSource = dt DataGridView1.Refresh() conn.Close() To insert new record in the database: Private Sub insert() Dim conn As OleDbConnection = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\washRcd.accdb;Persist Security Info=False") Dim updateSql As String = String.Format("

VB.net Deployment using installShield in visual studio 2013

Image
The following steps will illustrate how to deploy applications using intallShield software in Visual Studio 2013. First you need to download the installShield software and install it. Click here  to register and download installShield at Flexera software company. Step 1 Open you application and on the solution explorer panel right click on solution name to bring the context menu select ADD and then select NEW PROJECT Step 2 After selecting NEW PROJECT a windows will appear on the left panel select SETUP AND DEPLOYMENT under other project types. Add an appropriate name and select the location Step 3 The project assistant start up page will open, follow the instruction and click next then on the application information page select  GENERAL INFORMATION on the left panel. Change the user software identification tag to no Return to the previous screen and change company name, application name, website of the company and you can also select an icon

VB.net 2010 slot machine game

Image
Here are some screen shots of my slot machine game developed in visual studio 2010 ultimate edition. I will also upload the finish product in Dropbox and I will share the link with you. Credit also goes to Miss keshinee Vencatasamy Screenshots The splash screen of the game The game also include a database which store details of the player as well as score a level There are two level of difficulty in the game one is easy and the other is hard Download Click on the link below to download the game or source code: Source code Program