visual basic

How To Build a Stub in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a stub in Visual Basic .NET. Builder: This is a follow on tutorial from my previous tutorial on how to create a builder in Visual Basic .NET which allows a user to input custom settings to their liking in to an application (the builder) which will then put those settings via the controls (textbox and checkbox in that example) in to the generated stub.

Basic Notepad in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to make a simple Notepad text editor in Visual Basic .NET. Controls: The controls we will need are; Button, button1, Save File Button, button2, Open File Textbox, textbox1, File Contents Imports: Before we begin, you need to import System.IO to allow our program to read and write to/from files.

Call Function by String Name in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to run a function using it's reference name as a string in Visual Basic .NET. Built In: Luckily enough, the .NET framework has a built in function which allows an object, string function name, invoke type, and parameters to be called - this function is named 'CallByName'.

Using Base64 Encryption for PHP APIs

Submitted by Yorkiebar on
Introduction: This tutorial is on how to use encryption to transfer data securely, or at least more seucrely than plain text, from a Visual Basic application (or other source) to a PHP API. Why Cryptography? Cryptography should be used for all sensitive information being used in public release applications, or if the data is sent cross-networks.

Uploading POST Data to PHP in Visual Basic.NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to upload POST data to a PHP file on a web server or localhost through Visual Basic .NET. Why POST? POST is the method used to upload sensitive data such as passwords, as opposed to using the PHP GET method which will simply show all data in the URL bar; GET - http://www.website.com/page.php?password=ThisIsMyGETPassword POST - http://www.website.com/page.php Both example sites would receive the same information, but the POST one is undercover and therefore slightly more secure. Why Only Slightly More Secure?

Child_Care Information system

Submitted by Loty4u on
This is a child care management information system I created using VB.NET and Microsoft Access at back end. Feature includes: Add a Motherless baby to the database Search for a particular baby using his/her ID Number Edit/Update information of a baby For more information or additional features, send me mail on [email protected]. Username: Loty Password: lot Enjoy.

Create XML File in VB.NET

Submitted by donbermoy on
Today in VB.NET, I’m going to teach you how to create a program that also creates an XML file using VB.NET. We all know that XML (Extensible Markup Language) is an easy way to create common information formats and share both the format and the data on the World Wide Web or elsewhere. Now, let's start this tutorial! 1.

Resort Management System

Submitted by donbermoy on
This is one of the thesis/capstone projects that I have made for a particular school entitled Resort Management System for Seafarer's Inn. This is programmed thru Visual Basic and SQL Server 2000 as backend. Features of the system: 1. Room, pool, and cottage reservation 2. Room check-in, pool and cottage rental 3. Accepts and cancels reservation 4. Generate refunds 5. Add, edit, delete, and search

Product Information System using VB.NET/MS Access

Submitted by donbermoy on
Hi guys! I want to share with you this Product Information System created by 2nd year ITP students using Visual Basic.NET and MS Access as database. This system was programmed through Visual Studio 2010 and have your crystal reports installed. This system features: - add, edit, delete, search product information - product records - login/logout - user registration - inquiry - stockin for having

Get All Files under a Directory in VB.NET

Submitted by donbermoy on
Today in VB.NET, I will teach you how to create a program that gets all files under its corresponding directory not all the folders that are inside on it. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.