Sales and Inventory System (Food's Shop)
This Sales and Inventory System is developed using VB.NET and using MS Access 2010 database in the back end. Main Features are: 1. Customers and Suppliers Management 2. Orders Processing 3. Inventory Management 4. Sales Management 5. Invoice Management 6. Low Stock Indicator 7. Advance Records Searching 8. Advance Reports Login Information : Username - admin Password - 12345 Requirements - Visual
Function Templates in C++
Function Templates in C++
In this tutorial you will learn: 1. What are templates? 2. Why to use function templates? 3. How to use template functions in a program? 4. Basic C++ syntax What are templates? Sometime we have a function in which we need to have different data types of input on which we have to perform some operations, this function would obviously return some value.Converting Numbers Dec. Hex. Bin.
I m new on VB6 so this is a small program to convert numbers. I only have programming in Basic so i hope you like this.
How to Fill and Get the Value Member of a ListBox in Visual Basic 2008 and MS Access Database
This time, I’m going to teach you how to fill and get the value member of a ListBox by using Visual Basic 2008 and MS Access Database. With this tutorial, you can fill the data to the ListBox that came from the Database and get its Id by clicking the name that shows in the ListBox.
Let’s begin:
Open the Visual Basic 2008 and create a new Windows Form Application. Drag a button and a ListBox in the Form.
How to set your TextBox to Show and Hide Password in the User Registration Form.
In this turtorial, I will teach you how to set your Textbox to "show" and "hide" Password in the User Rgistration Form by using Visual Basic 2008. This will help you determined the password that you have input in the Textbox when registering in the User Registration Form.
So let’s begin:
Open the Visual Basic 2008 and create a new Windows Form Application.
How to create a TextBox Programmatically in Visual Basic 2008
In this turtorial, I will teach you how to create a TextBox programmatically by using Visual Basic 2008. With this, you don’t have to drag any TextBoxes in Form and set the location of it. It will create and set automatically.
So let’s begin:
First open Visual Basic 2008 and create a new Windows Form Application.
Friend Functions in C++
Friend functions in C++
In this tutorial you will learn: 1. What are friend functions? 2. Why to use friend functions? 3. How to use friend function in a program? 4. Basic C++ syntax What are friend functions? Friend functions are those functions which can access the private as well as the protected data members of the classes. We can make a function friend of two classes so that this function can use the private and protected member of those classes to produce a specific result.Basic Notepad in Visual Basic .NET
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.
Simple Phone Book in C++
Today, we will create a simple C++ console application to handle a simple phone book. This phone book will only store people’s name and phone numbers.