Quick Access to Applications in Visual Basic .NET

Submitted by abo_rimas on
This system can access all the applications on your computer. You must add all the applications you constantly used and it will appear on the system. Once application has been added, you have now an easy access on those applications and no need to find it on your computer. Hope you learn from this.

How To Use Function checkdate() Using PHP

Submitted by alpha_luna on

Good Day!!!

In this tutorial, we are going to learn PHP function, and it's called "checkdate()". The checkdate() function returns true if the specified date is valid, and false otherwise.
A date is valid if:
  • month - is between 1 and 12 inclusive
  • day - is within the allowed number of days for the particular month
  • year - is between 1 and 32767 inclusive
This function has this form:

Online Library Management System in ASP.NET

Submitted by Bhaumik Mistry on
This project is online library system using ASP.NET. The user has an option to register and create their own account. The user has limited access on the system. They can only check for books available. Only the admin can access the full system. He/she can check for books available, add books, view records and other transactions. Hope you learn from this. Happy coding.

How To Make Simple SideBar Menu Using HTML JavaScript

Submitted by alpha_luna on
This sidebar menu not only handles your every menu that you have, with the help of CSS animation techniques you can absolutely arrange it, or you can combined it. Compress your sidebar menu with the flat designed that we have. If you have a lot of menus in your site, you can use this sidebar menu to minimize it all. In this work, it's only one sub-menu but you can customize it. You can make it

Online Virtual Assistant

Submitted by rdpantino on
Library - Search Engine for thesis and capstone records. A search engine system for capstone/thesis of the students in the school. It allows administrator to manage accounts of students that are able to use the system. Manage Course and Category courses that is offered in the school. Records Projects of the students who submitted or passed their thesis and capstone. Allow searching of thesis

Codeigniter - Technical Support System

Submitted by rdpantino on
This is a full system called Technical Support System. The system function as a support to those who have problems using the computer as they can report to the administrator what is wrong on it, and for the administrator to monitor the computers and hardwares Modules -accounts -computer profile -home -inbox -inboxadmin -login -logout -purchase -request -solution This system is made on Codeigniter

Keywords

Submitted by GeePee on
Introduction: This page will talk about Java keywords including Return, Public, Private, Static and Case. What are keywords? The keywords in Java are used to serve a certain purpose (depending on which keyword is used). Not all keywords are used in the same places and some are bound to certain statements. Consistencies The only thing these keywords have in common is that when they are used, they must be in complete lower case.

Date and Time

Submitted by GeePee on
Introduction: This page will teach you about using the Date import in Java to output or get the current Time and/or Date. When is this needed? Adding a simple clock or date counter to an application adds a slightly more professional look to the overall appeal of the program, as well as having the time handy is always a good thing. What imports are needed? The imports we need to get the current Date and Time are;

Reading Text Files

Submitted by GeePee on
Introduction: This page will teach you about reading from text files in Java. What is used for reading from text files? There are many ways to read from text files in Java but the way I will talk about is using BufferedReader with FileReaders.