MyTicket POS ( Point of Sale)

Submitted by logimat2000 on
Hi, I'm :logimat2000atyahoo.fr Sorry for my bad english language. I speak arabic,kabyle and french. Can someone please help me to continue my project. Please reply here if you're welling to do so or you can revised it directly. 1. To select and print ticket large(80mm) with crystalReport 2. To make a real saving of the in/out quantity in stock Advanced Thanks!

MySQL Add,Delete Using VB.Net

Submitted by arjunaraneta on
Attached is a simple program that accepts your first name, and last name. Data is then saved to a mySQL database. Below is the SQL query for the database, tables, and fields. -- -- Database: `dbperson` -- CREATE DATABASE `dbperson` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `dbperson`; -- -------------------------------------------------------- -- -- Table structure for table

Animation - Blinking and Changing Color Effects of Text (VB.NET)

Submitted by donbermoy on
This tutorial will teach you how to create a program that has a blinking and changing color of the texts 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. Next, add only one label named DspLabel1 and one timer named Timer1. 3.

Print Screen Application in VB.NET

Submitted by donbermoy on
This is a simple tutorial but also a very useful one as it gets the print screen effect and will put it on the picturebox. 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 a picturebox and a timer on the form. 3. Now, we will do the coding. First, we will just code for the ticking event of our timer.

Using Primitive Data Type Variables as Parameters

Submitted by GeePee on
The following java program application is about Primitive Data Type Variables as Parameters. When a method is called, the value of the actual parameter is copied into the corresponding formal Parameter. If a formal parameter is a variable of a primitive data type, then after copying the value of the actual parameter, there is no connection between the formal parameter and the actual parameter. I will be using the JCreator IDE in developing the program.

How to use Counter Controlled While Loop

Submitted by GeePee on
The following Java program uses Counter Controlled While Loops. Suppose you know exactly how many times certain statements need to be executed. In such cases, while loops assumes the form of a counter-controlled while loops. Suppose that a set of statements need to be executed N times. You can set up a counter to track how many items have been read. .

Zoom Application - Lock The Zoom Area (VB.NET)

Submitted by donbermoy on
This tutorial is a continuation of my other tutorial entitled http://www.sourcecodester.com/tutorials/visual-basic-net/9375/creating-zoom-application-vbnet.html. But this time, I added some twist such as locking the selected zoom area after zooming it using the hovering of the mouse. Now, let's start this tutorial! 1.