Wednesday, August 20, 2014

PRODUCT EQUIPEMENT AND REQUISITION SYSTEM

Below are the features of the product equipment and requisition system
There are three types of user
  1. Encoder
    • Able to process request orders.
    • Able to add multiple orders
    • Able to assign orders request per department 
    • Able to create, update and delete department
    • Able to generate list of request orders
  2. Personnel
    • Able to process request orders.
    • Able to estimate price and quantity of the requested orders .
    • Can also able to manage departments.
    • Able to generate reports for estimated request orders.
    • Able to create user accounts.
  3. President
    • Able to approve or reject the requested items
    • Able to generate reports.

If you like to get the source code, download it here for FREE.


Encoder
username: encoder
password: 1234

Personnel
username: personnel
password: 1234

President
username: president
password: 1234

Rar password: hahaha

Sunday, August 17, 2014

EVALUATION SYSTEM



 Below are the features of evaluation system

  • Evaluation Module. 
    • This module allows the user to evaluate subjects of the students.
    • Filter subject pre-requisite
    • Accept re-enroll subject
  • Grade Entry Module.
    • This module allows the user input student grades
    • Able to update grades.
    • Evaluate grade either pass of fail.
  • Drawer Module
    • This module allows to display records of the students
    • Able to search student records
    • Able to retrieve student grades.
  • Subject List Module
    • This module allows to display list of subjects.
    • Able to add new, update and delete subjects
    • Assign subject by curriculum
  • Student Information Module. 
    • This module allows the user to manage student information.
    • Filter duplicate entry.
  • Subject Information Module
    • This module allows the user to manage subject information. 
    • Assign subject to curriculum
  • Curriculum Module
    • This module allows the user to manage curriculum.
    • Able to add new curriculum
  • Backup Database
    • This module allows to back-up database.

If you like to get the source code, download it here for FREE.

Click Here to Download Source Code

Rar password evaluationpaopao

Friday, November 22, 2013

Visual Basic Form



  • Form is window style screen that Visual Basic program displays.
  • It is where controls and codes are added.
  • Acts as containers for controls
  • It is where controls are drawn and viewed.
  • The layout of the form on a screen be previewed through the Form Layout Window command on the View menu
  • Has a Maximize, Minimize, and close buttons.
Form Properties
  • Name
    • An object’s Name property must start with a letter and can be a maximum of 40 characters
    • It can include numbers and underline(_) characters but can’t include punctuation or spaces
  • Appearance
    • Specifies the paint style of controls on a MDIForm or Form object at design time.
  • Caption
    • Determines the text displayed in the Form or MDIForm object’s title bar
    • Except for the label control, form and all other controls that have captions, the limit is 255 characters
    • Long caption for the form’s title bar is clipped
  • Enabled
    • Determines whether a form or control can respond to user-generated events.
  • Control Box
    • Indicates whether a Control-menu box is displayed on a form at run time.
  • MaxButton
    • Specifies a value indicating whether a form has a Maximize button.
  • MinButton
    • Specifies a value indicating whether a form has a Minimize button
  • Movable
    • Specifies if the object can be moved or not.
  • Visible
    • Specifies a value indicating whether an object is visible or hidden
  • WindowState
    • Specifies a value indicating the visual state of a form window at run times.