Creating a Sliding Panel in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a sliding panel 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 four LinkLabel name LinkLabel1 and LinkLabel2 that holds the Panel1 and Panel2, respectively, and linkPanel1 and linkPanel2 to show the Panels.

Hide Folder in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that can hide folder 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 Button named Button1 and labeled it as "Browse Folder to Hide" and FolderBrowserDialog named as FolderBrowserDialog1 for browsing a folder.

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.

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