Visual Basic .NET

How to Call .exe Files Using Visual Basic .NET

Submitted by ClydeTiu on
Hi guys, In this tutorial you will learn on how to call .exe files. Source code is downloadable below. Step 1 First Create a new Project Step 2 Create User Interface Step 3 In Every button put this code Source Code Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try System.Diagnostics.Process.Start("Calc.exe") Catch ex As Exception

Computer Equipment Monitoring System Using Visual Basic 2015 and MySQL Database

Submitted by janobe on
It’s very important to monitor your equipment most especially if you have a computer laboratory at school. So, this computer monitoring system is surely a big help in doing the task. This is a user friendly system and its features can be easily learned. The main purpose of this system is to accurately manage all of the computer equipment and to determine in what place or laboratory it belongs. And

How to Create a Simple Addition Using Console Application in VB.net

Submitted by janobe on
In writing a program, there are times that you have to deal with the input and output process. The question is what kind of method you have to use to work it. So, in this tutorial I will teach you how to create a simple addition using console application in VB.net. This simple method will help you process the command line itself to find out what kind of output the user wants to prompt.

How to Calculate Water Tank Capacity Using VB.Net

Submitted by janobe on
In this tutorial I will teach you how to calculate the capacity of a water tank using vb.net. You maybe have water tanks at home or in any infrastructure; it is a large chamber used for storing water and it comes in variety styles. And you might need to calculate the water tank to make sure that your water source provides enough water. Take a look at the procedure below to find out how.

Encrypt - Decrypt Multiple Files

Submitted by fkonstas on
Encrypt - Decrypt multiply files with one click. You do not have to worry about your personal files any more than they mistakenly mislead the wrong people. With one click you can encrypt your files and decrypt them when you need them in the future. You can also lock the folder (hide only and user permissions - it's not 100% secure - other applications beyond window file manager can access). Be

How to Make Slide Show in VB.Net

Submitted by janobe on
In this tutorial, I will teach you how to make slide show in VB.Net. Slide show is a presentation of a series of pictures that is usually displayed in an electronic device like a projection screen to present clearly the text or images to an audience. Now, if you what to know how to make a program of it? It’s just simple if you only follow the steps that are shown below.

How to Export Data to Excel Using VB.net and MS Access Database

Submitted by ClydeTiu on
Hi guys.. In this tutorial you will learn on how to export data to Microsoft Excel step by step. Create U.I Step 1 Create a database using Microsoft access Step 2 Connect Database to VB.net Step 3 Add References right Click then select properties shown on number 13 Here is the source code Imports Excel = Microsoft.Office.Interop.Excel Imports System.Data.OleDb Public Class frmgenerate Dim rdr As

Statement of Deduction System of Rural Bank Carrascal Sugirao Del Sur Using VB.net

Submitted by ClydeTiu on
Features - Register Client Information - View Client Information - Print Client Information - Create Statement of Deduction of Client - View and Print Statement of Deduction(S.O.D) - Can Generate Overall Statement Of Deductions of Client`s - Can Sign Up - Can Log-in - Back-up Database Tnt Number : 09096510899 Globe : 09454339345 gmail : [email protected] Facebook : Clyde Chectopher A. Tiu

Simple Automatic Search Box Tutorial Using Binding Source - Visual Basic 2010 embedded Database MS access

Submitted by ClydeTiu on
In this tutorial you will learn on how to create a simple "Automatic" search box . Using Binding Source. Step 1 Open Visual Basic 2010 and create a blank form. Step 2 Connect the database that you created. Step 3 Drag the table in to the form. Here is the code for the TextBox. Me.Data202BindingSource.Filter = "fDescript LIKE '" & TextBox5.Text & "%'" Hope you learn basic coding guys .... if you

Login Form Using Visual Basic 2010 with Embbeded database Microsoft Access Tutorial

Submitted by ClydeTiu on
In this source code you will learn on how to create a login form and connect VB.net to Microsoft Access. Creating Database - First you create a database in microsoft access - copy what is on the image shown above. Step 1 Open Microsoft Visual Studio 2010 and create a new windows form application for vb. Step 2 Create your User Interface. Step 3 Connect VB to MS ACCESS Step 4 Code for Log in Button