Student Management System for final year student

Student Management System , this project is developed using C#.Net and Microsoft Access Driver. In this project user can add and view student records. Student Management System is a software application to manage an educational facility of teachers and students.
Front End : C#. NET 2005
Back End : Microsoft Access Driver 2003

Project Title : Student Management System

A student information system  is a software application for institutes, colleges, schools to manage student data. Student Management System deals with all kind of student details, academic related reports, college details, course details, curriculum, batch details and other resource related details too. It tracks all the details of a student from the day one to the end of his course which can be used for all reporting purpose, tracking of attendance, progress in the course, completed semesters years, coming semester year curriculum details, exam details, project or any other assignment details, final exam result; and all these will be available for future references too.

Read more...

Bank management system VB project download

Bank Management System in VB  IN this project manage a customer. Detail about Transaction.
also manage employee detail.
by Hardik H. Kothadia
     R.K.University Rajkot.....

Read more...

Write a Console Application to create shape class & derive circle & rectangle from it to demonstrate the method over-riding concept


Module Module1
    Class Shape
        Public area As Double
        Public color As String
        Public Overridable Sub calcArea()
            Console.WriteLine("inside the get area method of Shape class")
            Console.WriteLine()
        End Sub
        Public Sub printArea()
            Console.WriteLine("the area of the Shape is: " + area.ToString())
        End Sub
    End Class
    Class Circle
        Inherits Shape
        Public radius As Double
        Public Overrides Sub calcArea()
            area = 3.1415 * radius * radius
        End Sub
    End Class
    Class Rectangle
        Inherits Shape
        Public width As Double
        Public height As Double
        Public Overrides Sub calcArea()
            area = width * height
        End Sub
    End Class
    Sub Main()
        Dim sap As New Shape
        sap.calcArea()
        Dim cir As New Circle
        Console.Write("Enter the radius of circle :")
        cir.radius = Convert.ToDouble(Console.ReadLine())
        cir.calcArea()
        cir.printArea()
        Dim rect As New Rectangle
        Console.Write("please enter the height of rectangle :")
        rect.height = Convert.ToDouble(Console.ReadLine())
        Console.Write("please enter the widht of rectangle :")
        rect.width = Convert.ToDouble(Console.ReadLine())
        rect.calcArea()
        rect.printArea()
        Console.ReadLine()
    End Sub
End Module


Read more...
Related Posts Plugin for WordPress, Blogger...

Engineering material

GTU IDP/ UDP PROJECT

GTU IDP/ UDP PROJECT

Patel free software download

  © Blogger templates The Professional Template by Ourblogtemplates.com 2008

Back to TOP