Visual Basic Time Converter

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on a time conversion program in Visual Basic. Steps of Creation: Step 1: First lets make a new form with four textboxes and a button: - Textbox1 : Hours - Textbox2 : Minutes - Textbox3 : Seconds - Textbox4 : Milliseconds - Button1 : Convert Step 2: Now lets make a way to check which textbox was last edited (What to convert from)...

Hospital Management

Submitted by helpinghand199… on
Our project Hospital Management system includes registration of patients, storing their details into the system, and also computerized billing in the pharmacy, and labs. Our software has the facility to give a unique id for every patient and stores the details of every patient and the staff automatically. It includes a search facility to know the current status of each room. User can search

Visual Basic Valid Email Checker

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple email checker in Visual Basic. Steps of Creation: Step 1: First we will need a new form with a textbox1 for the email file path, a file full of emails ready for checking, a textbox2 to define the path to save the valid emails and a button to start checking the emails. We will also require the following imports...

Simple Calculator

Submitted by agriel_101 on
This is a simple calculator written in Visual Basic 6.0. Public a1 As Double, a2 As Double, result As Double, degri As Double Public a As String, tem As Integer Dim countertitle, countertitle1 As Integer Dim title, title1 As String Dim titledance, titledance1 As String Private Sub cmd0_Click() txt = txt & 0 End Sub Private Sub cmd1_Click() txt = txt & 1 End Sub Private Sub cmd2_Click() txt = txt &

Visual Basic Auto Update Script

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create an auto update function for a program in Visual Basic. Notes: - You will need a website for the latest version to be hosted for download and checking. Or, for testing you can use localhost like I am (I'm using XAMPP). - If you're using a localhost, only people on your network can use this auto update function. Steps of Creation: Before we start we want to create a new form with one button for the update process to begin.

Name Generator in Java

Submitted by Sherwin14 on
This is a simple java program that will generate the letter or a word that you have been inputted into a bigger letter or word using asterisk (*) symbol. Sample source code: import java.util.*; /** * @title Name generator :D *@version 1.0 * @author Sherwin Pitao * */ public class Name { public static void main(String[] args) { System.out.print("Enter your Name[Small Caps Only]:"); Scanner in = new

Book Finder Using Quick Search in Visual Basic.Net

Submitted by joken on
This tutorial is a continuation of “Book Finder Using Visual Basic.Net and MS Access 2007”. At this time, we’re going to learn how to put a Quick search. By using a quick search, we can save more time by specifying the title of a specific book, author, Dewey number and subject. To start with this tutorial, add a new textbox and name it as “txtquick” and a label, and change the text property to “Quick Search”.