Python

Python Source Code

Free Python Source Code. Download from a vast collections of free Python source code below. Games are also available like Rock Paper Scissors Game and a lot more.

TTJ- Inventory System

Submitted by joken on
This TTJ- Inventory System is created using Visual Basic 2008 and supported with Microsoft access for database and I use crystal report for reporting and barcode generator as a third party for this system. And this system can monitor all kinds of assets registered on the system, the system can track all the transactions especially the In and Out of stocks, generate reports such as: List of all

School Management System

Submitted by Mum Vannak on
A school management system that records the information of faculty, students, and a subject taught my the teachers. It also has a score system that records the test given to the students. This is the first PHP code from my assignment. Like and share it and you can contact me by email: [email protected] and facebook acount: Monm Vannak. database name: assignment user: admin pass: admin

How to Create a Text Editor in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a text editor in Visual Basic. Steps of Creation: Step 1: First we need a form. Mine will consist of; - Richtextbox1 - Contain text contents - Button1 - Load File - Button2 - Save File - Button3 - Save File As New Name Step 2: Now lets import System.IO so we can read and write files. We also want to create a path String variable to contain our opened

How to Create a Syntax Checker in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple tool to check the amount of opening and closing braces in your script syntax. Steps of Creation: Step 1: First we want to create a form with: - Button1 - To begin the checking process - RichTextBox1 - To contain the source code Step 2: Next we want to go to the button1 click event and create two new integers, one to count the amount of

How to Create a Clock in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a clock in Visual Basic. Steps of Creation: Step 1: I will just be loading the current time in to a simple, plain label. You can customize yours or set it as a filewriter etc. So first we want to set checking for illegal crossThread calls to false on the form load. This is because we will be using a new thread to run the loop of updating the

How to Create a Question and Answer (QA) Revision Program in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a revision tool in Visual Basic. It will load a list of Questions and Answers (separated by a ":") and test you on the questions. Steps of Creation: Step 1: First we want to do a couple of things: Create a form with... Label4 - Current Question Button1 - Load QA List Button2 - Start Questions Button3 - Check Answer Textbox1 - Enter Answer Create