Online Catering Reservation Using PHP/MySQL

Submitted by jery on
This complete system will help you to create a online catering reservation using PHP PDO query. the feature of this system is it allows you to backup and restore database without using phpmyadmin windows. Others feature of this products includes, it can generate reservation details report, can assign a catering team in each reservation, secure login, filter user based on their rules and manage

Encrypting a Text in VB.NET

Submitted by donbermoy on
Encrypting is the translation of data into a secret code. Encryption is the most effective way to achieve data security. And for now we will create a program that can encrypt an inputted text. 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.

Animation in VB.NET

Submitted by donbermoy on
Animation is a simulation of movement created by displaying a series of pictures, or frames. Cartoons on television is one example of animation. Animation on computers is one of the chief ingredients of multimedia presentations. There are many software applications that enable you to create animations that you can display on a computer monitor. And for now, we will create an animation using vb.net. Now, let's start this tutorial! 1.

How to Read and Write To/From Files in Python

Submitted by Yorkiebar on
Introduction: In this tutorial, we are going to be covering handling files in Python. Generic: To read or write from/to a file, we first need to create a stream. To do this we use the Python function 'open' which takes two parameters, the file, and the mode. The file should a file name (including directory location if it is not in the same directory as the current program) as a string, while the mode should also be a string. Don't forget to replace any backslashes in the directory with two backslashes to avoid Python escape character problems.

Word Count Program in VB,NET

Submitted by donbermoy on
For this article, we will create a program that will count the number of words in a TextBox. But we will just use the RichTextBox instead of TextBox :) 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.

Play Computer System Sound using VB.NET

Submitted by donbermoy on
We always prompted to hear any computer sound when we got notifications, errors, or any information in our computer. In this article we will create this tutorial using vb.net! :) 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.

Computer vs Human Player in a Rock-Paper Scissor Game

Submitted by donbermoy on
A rock-paper-scissor game is one of the most popular kiddie games here in Surigao City. It is a simple game played around the world with many names and variations. It's a good way to decide whose turn it is to do something, and it's also played competitively. And today we will make this game and compete with a computer player. Now, let's start this tutorial! 1.

Get List of Words in a TextBox

Submitted by donbermoy on
Hi! I'm back! :) For now, we will make a program that can get a list of words in a textbox or I mean retrieving each word one by one. strong>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 one textbox named TextBox1, button named Button1, and a lisview named ListView1.

Creating a Simple GUI in Python

Submitted by Yorkiebar on
Introduction: This tutorial is going to be on how to create a GUI in Python using Tkinter. Tkinter: Tkinter is a basic package to give your projects a simple GUI with the essential GUI elements such as textboxes, checkboxes, buttons and more. Our Program: Our program is going to be a simple program where the user enters text in to a textbox, then clicks a button to get it output to the console.

Count The Number Of Rows In The Database Table Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how to count the number of rows in your database table using PHP PDO query. to start with, follow the steps bellow.

Creating Our Database

First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2. Then create database and name it as "tutorial". 3.