Network Programming in Java - #7 - Chat System #2 - Client Handler

Submitted by GeePee on
Introduction: This tutorial is the seventh in my Java Network Programming using KryoNet series, or second in creating a chat client and server system, in which we are going to be setting up a way to handle clients on our server. Previous: In the previous tutorial we altered snippets of code to convert them from our test server and clients to our beginning point of chat server and clients. The System: We are going to give the user a GUI to interact with the system - to send messages and see the currently connected members of the chat. When a

Network Programming in Java - #6 - Chat System #1 - Cleaning Test Files and Sending Usernames

Submitted by GeePee on
Introduction: This tutorial is the sixth in my Java Network Programming using KryoNet series in which we are going to be beginning our multi-client chat system. We are going to be running off the test server and client so make sure you have followed and understood the previous tutorials of this series. Previous: In the previous tutorial we created an Package of Packets involving Packet and Packet1Connect.

School Management System

Submitted by Somad on
This a simple School Management System which has many features. Each user has a username to login with user level. This system can also print transaction reports. Feel free to explore and learn on this project. Hope you learn from this. I'm SOMAD YESSOUFOU from SMU GHANA. You may contact me on: (+233)270866025 or [email protected]

Patient_Records System

Submitted by Somad on
This is a small application using MSSQL 2012 and VB.NET 2012 designed for a friend of mine for his final year project. It has many features and i would like to submit it to the whole world to get a feedback. Please i need your support and don't forget to vote for me. The best is yet to come. I'm SOMAD YESSOUFOU from SMU GHANA. You may contact me on: (+233)270866025 or [email protected] In case

Geographic Information System (GIS) in Flood Prone and Disease Affected Areas

Submitted by donbermoy on
This Geographic Information System (GIS) in Flood Prone and Disease Affected Areas is a capstone project/thesis system that I've made for a particular school. Features of the system are: - GIS - Map Viewing - Flood Monitoring - Disease Affected Areas Monitoring such as Dengue, Malaria, and Measles - Has Zoom, Panning Mode, and Quick Toolbar for the Map - Search Baranggay - User Settinga - Report -

Network Programming in Java - #5 - Packets & KryoNet Registering

Submitted by GeePee on
Introduction: This tutorial is the fifth in my Java Network Programming using KryoNet series in which we are going to be starting on Packets. Previous: In the previous tutorial we created a listener on our server, and sending a test TCP data-stream from our client. What Are Packets? Packets are essentially temporary files of data which are used to transmit the data from one location to another - our server to client, or vice versa. Our Packets: First create a new Package in our Src folder of our Client Java Project named "P

Network Programming in Java - #4 - Receiving and Sending Data - Server Listener & Client sendTCP Method

Submitted by GeePee on
Introduction: This tutorial is the fourth in my Java Network Programming using KryoNet series in which we are going to be adding a listener to our server and sending test data over TCP from the client to the server. Previous: In the previous tutorial we created a test client to connect to our test server. TCP vs. UDP: TCP and UDP are both Protocols which transmit data from one point to another through data streams.

Determine Country Currency and Symbol in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that will first display all the countries in the world and will determine the currency of the country inputted 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.

Display All Countries in the World using Globalization in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that displays all countries in the world using globalization in 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 ListBox named ListBox1 to display the countries.

Network Programming in Java - #3 - Creating a Test Client

Submitted by GeePee on
Introduction: This tutorial is the third in my Java Network Programming using KryoNet series in which we are creating a test client to connect to our test server. Previous: In the previous tutorial we created a test server. IMPORTANT: A) Your server and client can not be running at the same time, in Eclipse, in the same Java Project.