Simple Notepad Application using C# - Part 2

Submitted by pavel7_7_7 on
This is the second part of the article about C# Notepad. In the first part of this tutorial we already created a simple Notepad with possibilities to open, save, save as and print file. Also, you can change now the font and it's size from the menu. The next step is to implement the basic operations in the text redactor: copy, paste and cut. This actions can be performed in a very simple way by using functions of the textBox class.

Flappy Fly - VB6 version of Flappy Bird

Submitted by raffyapurillo on
Flappy Fly - VB6 version of Flappy Bird I used butterfly instead of bird... Credits to the Original Author: Flappy Bird is a side-scrolling mobile game featuring 2D retro style graphics. The objective is to direct a flying bird, which moves continuously to the right, between each oncoming set of pipes without colliding with them, which otherwise ends the game. The bird briefly flaps upward each

Keeping Data in the Form after Refreshing the Page Using PHP

Submitted by ronard on
Hi to All, Have a nice day..this script is just a simple that will teach you on how to keep your data in the form by refreshing the page. Just copy the script below in your web server and run to your web browser, Hope this will help you guys..happy codings.. Thanks for reading, please comment below.

Project Title for Your Thesis/Project!

Submitted by katrinako on
Hopefully this may help you creating you project or thesis title. Project Help Desk Here... Credit to the link below: http://www.collegelib.com/t-499-project-topics-for-computer-science-and-engineering-cse-list-1.html?utm_campaign=top&utm_medium=collegelib&utm_source=popular A Flexible Privacy-Enhanced Location-Based Services System Framework and Practice A Modified Model for Private Data Security

Calculate Or Auto Sum the Value Using Checkbox with JavaScript and PHP/MySQL

Submitted by argie on
In this tutorial I will teach you on how to calculate or auto sum the total value of the product's price using checkbox with javascript and PHP/MySQL. To understand this, 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.

Simple Notepad Application using C# - Part 1

Submitted by pavel7_7_7 on
In this article you fill find information about how to implement the basic functions of the Notepad using c# Visual Studio provides a good interface for creating different Windows Form Applications. One of the most popular application that is created during the studying is Notepad. In this article I will not pay a lot of attention on the process of building GUI, because it's a simple task. I just give you one important tip on this step: Always give proper names to your GUI elements.