ALIS Ordering System

Submitted by luis.cornea on
Ordering System throughout the world relied on pens and papers. Problems such as missing orders and information sent to the wrong place arise furthermore; some could not be able to handle the massive volume of orders. Under the old manual ordering systems, it takes up too much time to process. Real time ordering and improved efficiency has been the focus of entrepreneurs. As with many business

How to Create a Simple Calculator in Python

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple calculator in Python. The Theory: Here's how the program will be structured: Get the users first number Get the users second number Get the users action Use if statements to perform the calculation Print out the result Getting The Users Numbers: First we want to get the users two numbers to calculate together somehow.

Simple CRUD File Handling System

Submitted by ronard on
Hi sourcecodesterian, I try to make a simple CRUD in File Handling System that will store data using files in txt format. The main feature of this program that will Create, Read, Update and Delete. The process of this program will add fullname and address. In fullname field, the system will auto create a txt files and get the current date with the random number for the file naming and save the

Get the Pressed Key using VB.NET

Submitted by donbermoy on
Hi! :) In this article, i will discuss a tutorial that will capture, obtain, or get a key pressed by the user. 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. We don't need to design an interface because we have to get only the pressed key by the user. 2. Now put this code for your code module.

Backspace Button in VB.NET

Submitted by donbermoy on
We often click a backspace button in which this button is a keyboard key that display cursor one position backwards and deletes the character at that position, and shifts back the text after that position by one position. In this tutorial we will create this button. So 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.

Application Launcher using VB.NET

Submitted by donbermoy on
This is a tutorial in which we will going to have a program that can launch any applications, program, and websites. Now, let's start this Font Dialog 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.

FreePHP: Simple Web-Based Inventory & POS System [UPDATED: FIXED]

Submitted by DavaoCloudStudio on
AC POS system is a online web based point of sale system build in PHP language. It uses MySQL as the data storage back-end and has a friendly UI. Features: Very easy to use & friendly UI Centralized database for top management Mass Import / Export feature Shop-wise Transaction details Inventory status and availability Individual Account for user - Added MISSING Database name Goto phpmyadmin, then

How to Create a Rock Paper Scissors Game in Python

Submitted by Yorkiebar on
Introduction: This tutorial will be covering how to make a simple rock, paper, scissors game in Python. How It Works: First we get the user choice through input. Then we generate a random number 1 through 3. Convert the random number to rock, paper or scissors. Output the comparison result. Imports: To generate a random computer choice we need to import the random module...