IT Students, Do you need IT Project Proposals If you don't have any idea, here are some project titles to choose from Desktop Based Applications (VB6, VB.Net, Java, C, C++, C#, C#.Net, WPF Application) PRMS: Patient Record Management System CLASS: Computerized Library Administration and Support System Library Attendance and Transactions Recording System Payroll System for [Company Name] Products
Sample Patient Record Management System that is capable of storing records of patient of a certain hospital. This application is created using visual basic 6.0 and the database is created using Microsoft Access 2007. Splash Screen is in simple design using Progress bar for animated loading of preferences (not actual loading) Login screen is connected to database records of users. Main Screen is in
Introduction:
In this tutorial I will be showing you how to create a webpage scraper in Visual Basic. This can be used to gather information from certain websites through an automated process.
Steps of Creation:Step 1:
First we want to create a form with a simple button (set the name to scrapeButton), a Text Box (set the name to linkURL), a Rich Text Box (set the name to srcBox) and a Web Browser (set the name to srcBrowser).
Educational Application Made in VB.Net for more info, contact me, Ranielle Canlas ([email protected]) or Search Peter's Programs on facebook Facebook: http://www.facebook.com/renielcanlas Mobile: 09358571433
Shows String manipulation on Encryption and Decryption of Text. Shows basic file input and output using Common Dialog Control Encryption is done by replacing every single character into a new one. this is used to have a secured information to negate illegal access. File encryption is done by opening the file and encrypting it, then the encrypted text of file is printed into a new file
Simple VB6 Application that enables to swap 2 pictures on a period of time automatically. I recommend to use 2 pictures that shows your movement to create a Frame by Frame animated effect. This shows the usage of Timer and Picture Uploading Just upload 2 pictures by clicking on the thumbnails on the upper left part of the screen
Here is a Java program I made in Java that counts the number of words and number of lines in of an inputted String. Check this out! import java.util.Scanner; public class PrintPerWord { public static void main(String[] args) { Scanner read = new Scanner(System.in); String myString = new String(); System.out.print("Please enter any string: "); myString = read.nextLine(); int line = 0, let = 0, size
In creating a modular program using Visual Basic.Net we always used Procedures and Functions. A procedure and function is a piece of code in larger program. They perform a specific task.