.NET

How To Create a Builder in Visual Basic .NET

Introduction: Welcome to my tutorial on how to create a builder application in Visual Basic (VB.NET). What is a Builder? A builder application is an application which allows a user to select certain settings before generating a sub application (named a 'stub') which is uniquely created to the users settings entered within the builder. Theory: So for the theory of a builder application, we want to perform the following steps in order; Gain original source code of the original exe application. Get user settings through a CLI/GUI. Write the new

Config Creator in C#

Today in C#, i will teach you how to create a program that has a config creator in C#. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add two Textboxes named textbox1 that holds the property name and textbox2 for the property value. Insert two buttons named Button1 that adds property and Button2 for saving config. 3.

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.