vb

Text Editor in Visual Basic

Introduction: This tutorial is on how to create a basic text editor in Visual Basic. Design: The design for this program is; Button, button1, Save the document. Button, button2, Open a document. Textbox, textbox1, Contain the document text. Imports: The only thing we need to import is System.IO which allows us to access files from the computers FileSystem...
  1. Imports System.IO
Button1 Click: To save a

Config Creator in Visual Basic

Introduction: This tutorial is on how to create a config creator in Visual Basic. Imports: We need to import the System.IO namespace in order to access files within the computers filesystem for saving later on...
  1. Imports System.IO
Design: Our design will simple consist of; Textbox, textbox1, Hold the property name. Textbox, textbox2, Hold the property value. Button, button1, Add property. Button, button2, Save config.

Read Config Files in Visual Basic

Introduction: This tutorial is on how to use config files in your own Visual Basic applications. Design: There is no specific design required for this tutorial, however if you want a button to begin the process, feel free. Imports: Before we begin, we must import System.IO to read files from our computers filesystem...
  1. Imports System.IO
Config Path: For the config path we first want to create a Strin

Even or Odd in Visual Basic

Introduction: This tutorial is on how to create a simple tool in Visual Basic to check whether the entered number is even or odd. Design: For this program, we need a couple of components; Button, button1, Begin the checking process. NumericUpDown, numericUpDown1, Hold the number value. Button Click: Once the button is clicked, we first want to create a new integer variable and set it equal to the value of the numericupdown control...
  1. Dim num As

Hospital Management System (Ali Xihuny & Aishath Areesha) - 2K14

This is a simple Hospital Management System created for our final year project. I have used Visual Studio 2010 Ultimate, MS Access 2013, Telerik UI for Winforms 2014 to create this system. So, make sure you have all the required software before opening the VB file. Note: Telerik UI for Winforms is a must You can download it from here: Telerik UI for Winforms

Secure Password Generator in Visual Basic

Introduction: This tutorial is on how to create a simple tool in Visual Basic to generate a secure password. Design: For this we are simply going to add a button to begin the process and a numericupdown to specify the amount of characters needed for the password. Button Click: Variables: First we want to create a Random object because this will choose which character to select next.

Unicode to HTML Converter in Visual Basic

Introduction: This tutorial is on how to create a unicode to HTML equivilient characters. Design: This design requires two components; Textbox, textbox1, User entries Button, button1, Begins process. Variables: The way this system will work is it will search one array or list of information for the entry from the user, get the inex and return the element at the same index but in a different list, the information's equivilient partner.

Random Number/Line Selector in Visual Basic

Introduction: This tutorial is on how to create a 'Random Choice' tool which will randomly select either a line from a text file, or a random number. Design: For this we want; -Random Number- Numericupdown, numericupdown1, hold the minimum possible random number value. Numericupdown, numericupdown2, hold the maximum possible random number value. Button, button1, Select a random number. -Text File Line Selector- Button, button2, Select the file and choose a random number, converted to line. Imports: The first thing we need to do is import th